blob: 397f7e20dde086af6cbe418be186d67fe9921cf7 [file] [log] [blame]
Chris Lattner27aa7d22009-06-21 20:16:42 +00001//===- AsmParser.cpp - Parser for Assembly Files --------------------------===//
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 class implements the parser for assembly files.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbar7c0a3342009-08-26 22:49:51 +000014#include "llvm/ADT/SmallString.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000015#include "llvm/ADT/StringMap.h"
Matt Fleming924c5e52010-05-21 11:36:59 +000016#include "llvm/ADT/StringSwitch.h"
Daniel Dunbarf9507ff2009-07-27 23:20:52 +000017#include "llvm/ADT/Twine.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000018#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000019#include "llvm/MC/MCContext.h"
Daniel Dunbar28c251b2009-08-31 08:06:59 +000020#include "llvm/MC/MCExpr.h"
Chris Lattner29dfe7c2009-06-23 18:41:30 +000021#include "llvm/MC/MCInst.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000022#include "llvm/MC/MCParser/AsmCond.h"
23#include "llvm/MC/MCParser/AsmLexer.h"
24#include "llvm/MC/MCParser/MCAsmParser.h"
25#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
26#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000027#include "llvm/MC/MCStreamer.h"
Daniel Dunbardce0f3c2009-06-29 23:43:14 +000028#include "llvm/MC/MCSymbol.h"
Bill Wendling9bc0af82009-12-28 01:34:57 +000029#include "llvm/Support/Compiler.h"
Kevin Enderbyf187ac52010-06-28 21:45:58 +000030#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000031#include "llvm/Support/SourceMgr.h"
Chris Lattnerb0789ed2009-06-21 20:54:55 +000032#include "llvm/Support/raw_ostream.h"
Daniel Dunbara3af3702009-07-20 18:55:04 +000033#include "llvm/Target/TargetAsmParser.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000034#include <vector>
Chris Lattner27aa7d22009-06-21 20:16:42 +000035using namespace llvm;
36
Daniel Dunbar81ea00f2010-07-12 17:54:38 +000037namespace {
38
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000039/// \brief Helper class for tracking macro definitions.
40struct Macro {
41 StringRef Name;
42 StringRef Body;
43
44public:
45 Macro(StringRef N, StringRef B) : Name(N), Body(B) {}
46};
47
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000048/// \brief Helper class for storing information about an active macro
49/// instantiation.
50struct MacroInstantiation {
51 /// The macro being instantiated.
52 const Macro *TheMacro;
53
54 /// The macro instantiation with substitutions.
55 MemoryBuffer *Instantiation;
56
57 /// The location of the instantiation.
58 SMLoc InstantiationLoc;
59
60 /// The location where parsing should resume upon instantiation completion.
61 SMLoc ExitLoc;
62
63public:
Daniel Dunbar7a570d02010-07-18 19:00:10 +000064 MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
65 const std::vector<std::vector<AsmToken> > &A);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000066};
67
Daniel Dunbaraef87e32010-07-18 18:31:38 +000068/// \brief The concrete assembly parser instance.
69class AsmParser : public MCAsmParser {
Daniel Dunbar3c802de2010-07-18 18:38:02 +000070 friend class GenericAsmParser;
71
Daniel Dunbaraef87e32010-07-18 18:31:38 +000072 AsmParser(const AsmParser &); // DO NOT IMPLEMENT
73 void operator=(const AsmParser &); // DO NOT IMPLEMENT
74private:
75 AsmLexer Lexer;
76 MCContext &Ctx;
77 MCStreamer &Out;
78 SourceMgr &SrcMgr;
79 MCAsmParserExtension *GenericParser;
80 MCAsmParserExtension *PlatformParser;
Daniel Dunbar3c802de2010-07-18 18:38:02 +000081
Daniel Dunbaraef87e32010-07-18 18:31:38 +000082 /// This is the current buffer index we're lexing from as managed by the
83 /// SourceMgr object.
84 int CurBuffer;
85
86 AsmCond TheCondState;
87 std::vector<AsmCond> TheCondStack;
88
89 /// DirectiveMap - This is a table handlers for directives. Each handler is
90 /// invoked after the directive identifier is read and is responsible for
91 /// parsing and validating the rest of the directive. The handler is passed
92 /// in the directive name and the location of the directive keyword.
93 StringMap<std::pair<MCAsmParserExtension*, DirectiveHandler> > DirectiveMap;
Daniel Dunbar3c802de2010-07-18 18:38:02 +000094
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000095 /// MacroMap - Map of currently defined macros.
96 StringMap<Macro*> MacroMap;
97
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000098 /// ActiveMacros - Stack of active macro instantiations.
99 std::vector<MacroInstantiation*> ActiveMacros;
100
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000101 /// Boolean tracking whether macro substitution is enabled.
102 unsigned MacrosEnabled : 1;
103
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000104public:
105 AsmParser(const Target &T, SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
106 const MCAsmInfo &MAI);
107 ~AsmParser();
108
109 virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
110
111 void AddDirectiveHandler(MCAsmParserExtension *Object,
112 StringRef Directive,
113 DirectiveHandler Handler) {
114 DirectiveMap[Directive] = std::make_pair(Object, Handler);
115 }
116
117public:
118 /// @name MCAsmParser Interface
119 /// {
120
121 virtual SourceMgr &getSourceManager() { return SrcMgr; }
122 virtual MCAsmLexer &getLexer() { return Lexer; }
123 virtual MCContext &getContext() { return Ctx; }
124 virtual MCStreamer &getStreamer() { return Out; }
125
126 virtual void Warning(SMLoc L, const Twine &Meg);
127 virtual bool Error(SMLoc L, const Twine &Msg);
128
129 const AsmToken &Lex();
130
131 bool ParseExpression(const MCExpr *&Res);
132 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
133 virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
134 virtual bool ParseAbsoluteExpression(int64_t &Res);
135
136 /// }
137
138private:
139 bool ParseStatement();
140
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000141 bool HandleMacroEntry(StringRef Name, SMLoc NameLoc, const Macro *M);
142 void HandleMacroExit();
143
144 void PrintMacroInstantiations();
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000145 void PrintMessage(SMLoc Loc, const std::string &Msg, const char *Type) const;
146
147 /// EnterIncludeFile - Enter the specified file. This returns true on failure.
148 bool EnterIncludeFile(const std::string &Filename);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000149
150 /// \brief Reset the current lexer position to that given by \arg Loc. The
151 /// current token is not set; clients should ensure Lex() is called
152 /// subsequently.
153 void JumpToLoc(SMLoc Loc);
154
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000155 void EatToEndOfStatement();
156
157 bool ParseAssignment(StringRef Name);
158
159 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
160 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
161 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
162
163 /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
164 /// and set \arg Res to the identifier contents.
165 bool ParseIdentifier(StringRef &Res);
166
167 // Directive Parsing.
168 bool ParseDirectiveAscii(bool ZeroTerminated); // ".ascii", ".asciiz"
169 bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
170 bool ParseDirectiveFill(); // ".fill"
171 bool ParseDirectiveSpace(); // ".space"
172 bool ParseDirectiveSet(); // ".set"
173 bool ParseDirectiveOrg(); // ".org"
174 // ".align{,32}", ".p2align{,w,l}"
175 bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
176
177 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
178 /// accepts a single symbol (which should be a label or an external).
179 bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
180 bool ParseDirectiveELFType(); // ELF specific ".type"
181
182 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
183
184 bool ParseDirectiveAbort(); // ".abort"
185 bool ParseDirectiveInclude(); // ".include"
186
187 bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
188 bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
189 bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
190 bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
191
192 /// ParseEscapedString - Parse the current token as a string which may include
193 /// escaped characters and return the string contents.
194 bool ParseEscapedString(std::string &Data);
195};
196
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000197/// \brief Generic implementations of directive handling, etc. which is shared
198/// (or the default, at least) for all assembler parser.
199class GenericAsmParser : public MCAsmParserExtension {
200public:
201 GenericAsmParser() {}
202
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000203 AsmParser &getParser() {
204 return (AsmParser&) this->MCAsmParserExtension::getParser();
205 }
206
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000207 virtual void Initialize(MCAsmParser &Parser) {
208 // Call the base implementation.
209 this->MCAsmParserExtension::Initialize(Parser);
210
211 // Debugging directives.
212 Parser.AddDirectiveHandler(this, ".file", MCAsmParser::DirectiveHandler(
213 &GenericAsmParser::ParseDirectiveFile));
214 Parser.AddDirectiveHandler(this, ".line", MCAsmParser::DirectiveHandler(
215 &GenericAsmParser::ParseDirectiveLine));
216 Parser.AddDirectiveHandler(this, ".loc", MCAsmParser::DirectiveHandler(
217 &GenericAsmParser::ParseDirectiveLoc));
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000218
219 // Macro directives.
220 Parser.AddDirectiveHandler(this, ".macros_on",
221 MCAsmParser::DirectiveHandler(
222 &GenericAsmParser::ParseDirectiveMacrosOnOff));
223 Parser.AddDirectiveHandler(this, ".macros_off",
224 MCAsmParser::DirectiveHandler(
225 &GenericAsmParser::ParseDirectiveMacrosOnOff));
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000226 Parser.AddDirectiveHandler(this, ".macro", MCAsmParser::DirectiveHandler(
227 &GenericAsmParser::ParseDirectiveMacro));
228 Parser.AddDirectiveHandler(this, ".endm", MCAsmParser::DirectiveHandler(
229 &GenericAsmParser::ParseDirectiveEndMacro));
230 Parser.AddDirectiveHandler(this, ".endmacro", MCAsmParser::DirectiveHandler(
231 &GenericAsmParser::ParseDirectiveEndMacro));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000232 }
233
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000234 bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
235 bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
236 bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000237
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000238 bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000239 bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
240 bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000241};
242
243}
244
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000245namespace llvm {
246
247extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000248extern MCAsmParserExtension *createELFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000249
250}
251
Chris Lattneraaec2052010-01-19 19:46:13 +0000252enum { DEFAULT_ADDRSPACE = 0 };
253
Daniel Dunbar9186fa62010-07-01 20:41:56 +0000254AsmParser::AsmParser(const Target &T, SourceMgr &_SM, MCContext &_Ctx,
255 MCStreamer &_Out, const MCAsmInfo &_MAI)
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000256 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM),
Daniel Dunbare4749702010-07-12 18:12:02 +0000257 GenericParser(new GenericAsmParser), PlatformParser(0),
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000258 CurBuffer(0), MacrosEnabled(true) {
Sean Callananfd0b0282010-01-21 00:19:58 +0000259 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000260
261 // Initialize the generic parser.
262 GenericParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000263
264 // Initialize the platform / file format parser.
265 //
266 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
267 // created.
268 if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000269 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000270 PlatformParser->Initialize(*this);
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000271 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000272 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000273 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000274 }
Chris Lattnerebb89b42009-09-27 21:16:52 +0000275}
276
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000277AsmParser::~AsmParser() {
Daniel Dunbare4749702010-07-12 18:12:02 +0000278 delete PlatformParser;
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000279 delete GenericParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000280}
281
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000282void AsmParser::PrintMacroInstantiations() {
283 // Print the active macro instantiation stack.
284 for (std::vector<MacroInstantiation*>::const_reverse_iterator
285 it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
286 PrintMessage((*it)->InstantiationLoc, "while in macro instantiation",
287 "note");
288}
289
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000290void AsmParser::Warning(SMLoc L, const Twine &Msg) {
Sean Callananbf2013e2010-01-20 23:19:55 +0000291 PrintMessage(L, Msg.str(), "warning");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000292 PrintMacroInstantiations();
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000293}
294
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000295bool AsmParser::Error(SMLoc L, const Twine &Msg) {
Sean Callananbf2013e2010-01-20 23:19:55 +0000296 PrintMessage(L, Msg.str(), "error");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000297 PrintMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000298 return true;
299}
300
Sean Callananbf2013e2010-01-20 23:19:55 +0000301void AsmParser::PrintMessage(SMLoc Loc, const std::string &Msg,
302 const char *Type) const {
303 SrcMgr.PrintMessage(Loc, Msg, Type);
304}
Sean Callananfd0b0282010-01-21 00:19:58 +0000305
306bool AsmParser::EnterIncludeFile(const std::string &Filename) {
307 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc());
308 if (NewBuf == -1)
309 return true;
Sean Callanan79036e42010-01-20 22:18:24 +0000310
Sean Callananfd0b0282010-01-21 00:19:58 +0000311 CurBuffer = NewBuf;
312
313 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
314
315 return false;
316}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000317
318void AsmParser::JumpToLoc(SMLoc Loc) {
319 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
320 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
321}
322
Sean Callananfd0b0282010-01-21 00:19:58 +0000323const AsmToken &AsmParser::Lex() {
324 const AsmToken *tok = &Lexer.Lex();
325
326 if (tok->is(AsmToken::Eof)) {
327 // If this is the end of an included file, pop the parent file off the
328 // include stack.
329 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
330 if (ParentIncludeLoc != SMLoc()) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000331 JumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000332 tok = &Lexer.Lex();
333 }
334 }
335
336 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000337 Error(Lexer.getErrLoc(), Lexer.getErr());
Sean Callanan79036e42010-01-20 22:18:24 +0000338
Sean Callananfd0b0282010-01-21 00:19:58 +0000339 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000340}
341
Chris Lattner79180e22010-04-05 23:15:42 +0000342bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000343 // Create the initial section, if requested.
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000344 //
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000345 // FIXME: Target hook & command line option for initial section.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000346 if (!NoInitialTextSection)
Chris Lattnerf0559e42010-04-08 20:30:37 +0000347 Out.SwitchSection(Ctx.getMachOSection("__TEXT", "__text",
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000348 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
349 0, SectionKind::getText()));
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000350
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000351 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000352 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000353
Chris Lattnerb717fb02009-07-02 21:53:43 +0000354 bool HadError = false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000355
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000356 AsmCond StartingCondState = TheCondState;
357
Chris Lattnerb717fb02009-07-02 21:53:43 +0000358 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000359 while (Lexer.isNot(AsmToken::Eof)) {
Chris Lattnerb717fb02009-07-02 21:53:43 +0000360 if (!ParseStatement()) continue;
361
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000362 // We had an error, remember it and recover by skipping to the next line.
Chris Lattnerb717fb02009-07-02 21:53:43 +0000363 HadError = true;
364 EatToEndOfStatement();
365 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000366
367 if (TheCondState.TheCond != StartingCondState.TheCond ||
368 TheCondState.Ignore != StartingCondState.Ignore)
369 return TokError("unmatched .ifs or .elses");
Chris Lattnerb717fb02009-07-02 21:53:43 +0000370
Chris Lattner79180e22010-04-05 23:15:42 +0000371 // Finalize the output stream if there are no errors and if the client wants
372 // us to.
373 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000374 Out.Finish();
375
Chris Lattnerb717fb02009-07-02 21:53:43 +0000376 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000377}
378
Chris Lattner2cf5f142009-06-22 01:29:09 +0000379/// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
380void AsmParser::EatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000381 while (Lexer.isNot(AsmToken::EndOfStatement) &&
382 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000383 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000384
385 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000386 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000387 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000388}
389
Chris Lattnerc4193832009-06-22 05:51:26 +0000390
Chris Lattner74ec1a32009-06-22 06:32:03 +0000391/// ParseParenExpr - Parse a paren expression and return it.
392/// NOTE: This assumes the leading '(' has already been consumed.
393///
394/// parenexpr ::= expr)
395///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000396bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner74ec1a32009-06-22 06:32:03 +0000397 if (ParseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000398 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000399 return TokError("expected ')' in parentheses expression");
Chris Lattnerb4307b32010-01-15 19:28:38 +0000400 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000401 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000402 return false;
403}
Chris Lattnerc4193832009-06-22 05:51:26 +0000404
Chris Lattner74ec1a32009-06-22 06:32:03 +0000405/// ParsePrimaryExpr - Parse a primary expression and return it.
406/// primaryexpr ::= (parenexpr
407/// primaryexpr ::= symbol
408/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000409/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000410/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000411bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000412 switch (Lexer.getKind()) {
413 default:
414 return TokError("unknown token in expression");
Daniel Dunbar3f872332009-07-28 16:08:33 +0000415 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000416 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000417 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000418 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000419 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000420 return false;
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000421 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000422 case AsmToken::Identifier: {
423 // This is a symbol reference.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000424 std::pair<StringRef, StringRef> Split = getTok().getIdentifier().split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000425 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000426
Daniel Dunbar525a3a62010-05-17 17:46:23 +0000427 // Mark the symbol as used in an expression.
428 Sym->setUsedInExpr(true);
429
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000430 // Lookup the symbol variant if used.
431 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
432 if (Split.first.size() != getTok().getIdentifier().size())
433 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
434
Chris Lattnerb4307b32010-01-15 19:28:38 +0000435 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000436 Lex(); // Eat identifier.
Daniel Dunbarfffff912009-10-16 01:34:54 +0000437
438 // If this is an absolute variable reference, substitute it now to preserve
439 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000440 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000441 if (Variant)
442 return Error(EndLoc, "unexpected modified on variable reference");
443
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000444 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000445 return false;
446 }
447
448 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000449 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000450 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000451 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000452 case AsmToken::Integer: {
453 SMLoc Loc = getTok().getLoc();
454 int64_t IntVal = getTok().getIntVal();
455 Res = MCConstantExpr::Create(IntVal, getContext());
Chris Lattnerb4307b32010-01-15 19:28:38 +0000456 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000457 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000458 // Look for 'b' or 'f' following an Integer as a directional label
459 if (Lexer.getKind() == AsmToken::Identifier) {
460 StringRef IDVal = getTok().getString();
461 if (IDVal == "f" || IDVal == "b"){
462 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
463 IDVal == "f" ? 1 : 0);
464 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
465 getContext());
466 if(IDVal == "b" && Sym->isUndefined())
467 return Error(Loc, "invalid reference to undefined symbol");
468 EndLoc = Lexer.getLoc();
469 Lex(); // Eat identifier.
470 }
471 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000472 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000473 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000474 case AsmToken::Dot: {
475 // This is a '.' reference, which references the current PC. Emit a
476 // temporary label to the streamer and refer to it.
477 MCSymbol *Sym = Ctx.CreateTempSymbol();
478 Out.EmitLabel(Sym);
479 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
480 EndLoc = Lexer.getLoc();
481 Lex(); // Eat identifier.
482 return false;
483 }
484
Daniel Dunbar3f872332009-07-28 16:08:33 +0000485 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000486 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000487 return ParseParenExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000488 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000489 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000490 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000491 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000492 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000493 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000494 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000495 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000496 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000497 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000498 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000499 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000500 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000501 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000502 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000503 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000504 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000505 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000506 }
507}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000508
Chris Lattnerb4307b32010-01-15 19:28:38 +0000509bool AsmParser::ParseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000510 SMLoc EndLoc;
511 return ParseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000512}
513
Chris Lattner74ec1a32009-06-22 06:32:03 +0000514/// ParseExpression - Parse an expression and return it.
515///
516/// expr ::= expr +,- expr -> lowest.
517/// expr ::= expr |,^,&,! expr -> middle.
518/// expr ::= expr *,/,%,<<,>> expr -> highest.
519/// expr ::= primaryexpr
520///
Chris Lattner54482b42010-01-15 19:39:23 +0000521bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000522 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000523 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000524 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
525 return true;
526
527 // Try to constant fold it up front, if possible.
528 int64_t Value;
529 if (Res->EvaluateAsAbsolute(Value))
530 Res = MCConstantExpr::Create(Value, getContext());
531
532 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000533}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000534
Chris Lattnerb4307b32010-01-15 19:28:38 +0000535bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000536 Res = 0;
537 return ParseParenExpr(Res, EndLoc) ||
538 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000539}
540
Daniel Dunbar475839e2009-06-29 20:37:27 +0000541bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000542 const MCExpr *Expr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000543
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000544 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar475839e2009-06-29 20:37:27 +0000545 if (ParseExpression(Expr))
546 return true;
547
Daniel Dunbare00b0112009-10-16 01:57:52 +0000548 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000549 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +0000550
551 return false;
552}
553
Daniel Dunbar3f872332009-07-28 16:08:33 +0000554static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000555 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000556 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000557 default:
558 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000559
560 // Lowest Precedence: &&, ||
Daniel Dunbar3f872332009-07-28 16:08:33 +0000561 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000562 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000563 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000564 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000565 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000566 return 1;
567
568 // Low Precedence: +, -, ==, !=, <>, <, <=, >, >=
Daniel Dunbar3f872332009-07-28 16:08:33 +0000569 case AsmToken::Plus:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000570 Kind = MCBinaryExpr::Add;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000571 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000572 case AsmToken::Minus:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000573 Kind = MCBinaryExpr::Sub;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000574 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000575 case AsmToken::EqualEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000576 Kind = MCBinaryExpr::EQ;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000577 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000578 case AsmToken::ExclaimEqual:
579 case AsmToken::LessGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000580 Kind = MCBinaryExpr::NE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000581 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000582 case AsmToken::Less:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000583 Kind = MCBinaryExpr::LT;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000584 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000585 case AsmToken::LessEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000586 Kind = MCBinaryExpr::LTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000587 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000588 case AsmToken::Greater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000589 Kind = MCBinaryExpr::GT;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000590 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000591 case AsmToken::GreaterEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000592 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000593 return 2;
594
595 // Intermediate Precedence: |, &, ^
596 //
597 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +0000598 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000599 Kind = MCBinaryExpr::Or;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000600 return 3;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000601 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000602 Kind = MCBinaryExpr::Xor;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000603 return 3;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000604 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000605 Kind = MCBinaryExpr::And;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000606 return 3;
607
608 // Highest Precedence: *, /, %, <<, >>
Daniel Dunbar3f872332009-07-28 16:08:33 +0000609 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000610 Kind = MCBinaryExpr::Mul;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000611 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000612 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000613 Kind = MCBinaryExpr::Div;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000614 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000615 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000616 Kind = MCBinaryExpr::Mod;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000617 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000618 case AsmToken::LessLess:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000619 Kind = MCBinaryExpr::Shl;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000620 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000621 case AsmToken::GreaterGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000622 Kind = MCBinaryExpr::Shr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000623 return 4;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000624 }
625}
626
627
628/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
629/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000630bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
631 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000632 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000633 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000634 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000635
636 // If the next token is lower precedence than we are allowed to eat, return
637 // successfully with what we ate already.
638 if (TokPrec < Precedence)
639 return false;
640
Sean Callanan79ed1a82010-01-19 20:22:31 +0000641 Lex();
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000642
643 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000644 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000645 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000646
647 // If BinOp binds less tightly with RHS than the operator after RHS, let
648 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000649 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000650 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000651 if (TokPrec < NextTokPrec) {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000652 if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000653 }
654
Daniel Dunbar475839e2009-06-29 20:37:27 +0000655 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000656 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000657 }
658}
659
Chris Lattnerc4193832009-06-22 05:51:26 +0000660
661
662
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000663/// ParseStatement:
664/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +0000665/// ::= Label* Directive ...Operands... EndOfStatement
666/// ::= Label* Identifier OperandList* EndOfStatement
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000667bool AsmParser::ParseStatement() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000668 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000669 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000670 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000671 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000672 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000673
674 // Statements always start with an identifier.
Sean Callanan18b83232010-01-19 21:44:56 +0000675 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +0000676 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000677 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000678 int64_t LocalLabelVal = -1;
679 // GUESS allow an integer followed by a ':' as a directional local label
680 if (Lexer.is(AsmToken::Integer)) {
681 LocalLabelVal = getTok().getIntVal();
682 if (LocalLabelVal < 0) {
683 if (!TheCondState.Ignore)
684 return TokError("unexpected token at start of statement");
685 IDVal = "";
686 }
687 else {
688 IDVal = getTok().getString();
689 Lex(); // Consume the integer token to be used as an identifier token.
690 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +0000691 if (!TheCondState.Ignore)
692 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000693 }
694 }
695 }
696 else if (ParseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +0000697 if (!TheCondState.Ignore)
698 return TokError("unexpected token at start of statement");
699 IDVal = "";
700 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000701
Chris Lattner7834fac2010-04-17 18:14:27 +0000702 // Handle conditional assembly here before checking for skipping. We
703 // have to do this so that .endif isn't skipped in a ".if 0" block for
704 // example.
705 if (IDVal == ".if")
706 return ParseDirectiveIf(IDLoc);
707 if (IDVal == ".elseif")
708 return ParseDirectiveElseIf(IDLoc);
709 if (IDVal == ".else")
710 return ParseDirectiveElse(IDLoc);
711 if (IDVal == ".endif")
712 return ParseDirectiveEndIf(IDLoc);
713
714 // If we are in a ".if 0" block, ignore this statement.
715 if (TheCondState.Ignore) {
716 EatToEndOfStatement();
717 return false;
718 }
719
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000720 // FIXME: Recurse on local labels?
721
722 // See what kind of statement we have.
723 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000724 case AsmToken::Colon: {
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000725 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000726 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000727
728 // Diagnose attempt to use a variable as a label.
729 //
730 // FIXME: Diagnostics. Note the location of the definition as a label.
731 // FIXME: This doesn't diagnose assignment to a symbol which has been
732 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000733 MCSymbol *Sym;
734 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000735 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000736 else
737 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +0000738 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000739 return Error(IDLoc, "invalid symbol redefinition");
Chris Lattnerc69485e2009-06-24 04:31:49 +0000740
Daniel Dunbar959fd882009-08-26 22:13:22 +0000741 // Emit the label.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000742 Out.EmitLabel(Sym);
743
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000744 // Consume any end of statement token, if present, to avoid spurious
745 // AddBlankLine calls().
746 if (Lexer.is(AsmToken::EndOfStatement)) {
747 Lex();
748 if (Lexer.is(AsmToken::Eof))
749 return false;
750 }
751
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000752 return ParseStatement();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000753 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000754
Daniel Dunbar3f872332009-07-28 16:08:33 +0000755 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000756 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +0000757 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000758
Daniel Dunbare2ace502009-08-31 08:09:09 +0000759 return ParseAssignment(IDVal);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000760
761 default: // Normal instruction or directive.
762 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000763 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000764
765 // If macros are enabled, check to see if this is a macro instantiation.
766 if (MacrosEnabled)
767 if (const Macro *M = MacroMap.lookup(IDVal))
768 return HandleMacroEntry(IDVal, IDLoc, M);
769
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000770 // Otherwise, we have a normal instruction or directive.
Chris Lattner2cf5f142009-06-22 01:29:09 +0000771 if (IDVal[0] == '.') {
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000772 // Assembler features
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000773 if (IDVal == ".set")
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000774 return ParseDirectiveSet();
775
Daniel Dunbara0d14262009-06-24 23:30:00 +0000776 // Data directives
777
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000778 if (IDVal == ".ascii")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000779 return ParseDirectiveAscii(false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000780 if (IDVal == ".asciz")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000781 return ParseDirectiveAscii(true);
782
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000783 if (IDVal == ".byte")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000784 return ParseDirectiveValue(1);
Kevin Enderby9c656452009-09-10 20:51:44 +0000785 if (IDVal == ".short")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000786 return ParseDirectiveValue(2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000787 if (IDVal == ".long")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000788 return ParseDirectiveValue(4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000789 if (IDVal == ".quad")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000790 return ParseDirectiveValue(8);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000791
792 // FIXME: Target hooks for IsPow2.
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000793 if (IDVal == ".align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000794 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000795 if (IDVal == ".align32")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000796 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000797 if (IDVal == ".balign")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000798 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000799 if (IDVal == ".balignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000800 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000801 if (IDVal == ".balignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000802 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000803 if (IDVal == ".p2align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000804 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000805 if (IDVal == ".p2alignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000806 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000807 if (IDVal == ".p2alignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000808 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
809
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000810 if (IDVal == ".org")
Daniel Dunbarc238b582009-06-25 22:44:51 +0000811 return ParseDirectiveOrg();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000812
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000813 if (IDVal == ".fill")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000814 return ParseDirectiveFill();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000815 if (IDVal == ".space")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000816 return ParseDirectiveSpace();
817
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000818 // Symbol attribute directives
Daniel Dunbard0c14d62009-08-11 04:24:50 +0000819
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000820 if (IDVal == ".globl" || IDVal == ".global")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000821 return ParseDirectiveSymbolAttribute(MCSA_Global);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000822 if (IDVal == ".hidden")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000823 return ParseDirectiveSymbolAttribute(MCSA_Hidden);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000824 if (IDVal == ".indirect_symbol")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000825 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000826 if (IDVal == ".internal")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000827 return ParseDirectiveSymbolAttribute(MCSA_Internal);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000828 if (IDVal == ".lazy_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000829 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000830 if (IDVal == ".no_dead_strip")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000831 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000832 if (IDVal == ".private_extern")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000833 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000834 if (IDVal == ".protected")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000835 return ParseDirectiveSymbolAttribute(MCSA_Protected);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000836 if (IDVal == ".reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000837 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Matt Fleming924c5e52010-05-21 11:36:59 +0000838 if (IDVal == ".type")
839 return ParseDirectiveELFType();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000840 if (IDVal == ".weak")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000841 return ParseDirectiveSymbolAttribute(MCSA_Weak);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000842 if (IDVal == ".weak_definition")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000843 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000844 if (IDVal == ".weak_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000845 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000846 if (IDVal == ".weak_def_can_be_hidden")
847 return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000848
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000849 if (IDVal == ".comm")
Chris Lattner1fc3d752009-07-09 17:25:12 +0000850 return ParseDirectiveComm(/*IsLocal=*/false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000851 if (IDVal == ".lcomm")
Chris Lattner1fc3d752009-07-09 17:25:12 +0000852 return ParseDirectiveComm(/*IsLocal=*/true);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000853
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000854 if (IDVal == ".abort")
Kevin Enderby5f1f0b82009-07-13 23:15:14 +0000855 return ParseDirectiveAbort();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000856 if (IDVal == ".include")
Kevin Enderby1f049b22009-07-14 23:21:55 +0000857 return ParseDirectiveInclude();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000858
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000859 // Look up the handler in the handler table.
860 std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
861 DirectiveMap.lookup(IDVal);
862 if (Handler.first)
863 return (Handler.first->*Handler.second)(IDVal, IDLoc);
864
Kevin Enderby9c656452009-09-10 20:51:44 +0000865 // Target hook for parsing target specific directives.
866 if (!getTargetParser().ParseDirective(ID))
867 return false;
868
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000869 Warning(IDLoc, "ignoring directive for now");
Chris Lattner2cf5f142009-06-22 01:29:09 +0000870 EatToEndOfStatement();
871 return false;
872 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000873
Chris Lattnera7f13542010-05-19 23:34:33 +0000874 // Canonicalize the opcode to lower case.
875 SmallString<128> Opcode;
876 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
877 Opcode.push_back(tolower(IDVal[i]));
878
Chris Lattner98986712010-01-14 22:21:20 +0000879 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
Chris Lattnera7f13542010-05-19 23:34:33 +0000880 bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc,
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000881 ParsedOperands);
882 if (!HadError && Lexer.isNot(AsmToken::EndOfStatement))
883 HadError = TokError("unexpected token in argument list");
Chris Lattner2cf5f142009-06-22 01:29:09 +0000884
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000885 // If parsing succeeded, match the instruction.
886 if (!HadError) {
887 MCInst Inst;
888 if (!getTargetParser().MatchInstruction(ParsedOperands, Inst)) {
889 // Emit the instruction on success.
890 Out.EmitInstruction(Inst);
891 } else {
892 // Otherwise emit a diagnostic about the match failure and set the error
893 // flag.
894 //
895 // FIXME: We should give nicer diagnostics about the exact failure.
896 Error(IDLoc, "unrecognized instruction");
897 HadError = true;
898 }
899 }
Chris Lattner98986712010-01-14 22:21:20 +0000900
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000901 // If there was no error, consume the end-of-statement token. Otherwise this
902 // will be done by our caller.
903 if (!HadError)
904 Lex();
Chris Lattner98986712010-01-14 22:21:20 +0000905
906 // Free any parsed operands.
907 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
908 delete ParsedOperands[i];
909
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000910 return HadError;
Chris Lattner27aa7d22009-06-21 20:16:42 +0000911}
Chris Lattner9a023f72009-06-24 04:43:34 +0000912
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000913MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
914 const std::vector<std::vector<AsmToken> > &A)
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000915 : TheMacro(M), InstantiationLoc(IL), ExitLoc(EL)
916{
917 // Macro instantiation is lexical, unfortunately. We construct a new buffer
918 // to hold the macro body with substitutions.
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000919 SmallString<256> Buf;
920 raw_svector_ostream OS(Buf);
921
922 StringRef Body = M->Body;
923 while (!Body.empty()) {
924 // Scan for the next substitution.
925 std::size_t End = Body.size(), Pos = 0;
926 for (; Pos != End; ++Pos) {
927 // Check for a substitution or escape.
928 if (Body[Pos] != '$' || Pos + 1 == End)
929 continue;
930
931 char Next = Body[Pos + 1];
932 if (Next == '$' || Next == 'n' || isdigit(Next))
933 break;
934 }
935
936 // Add the prefix.
937 OS << Body.slice(0, Pos);
938
939 // Check if we reached the end.
940 if (Pos == End)
941 break;
942
943 switch (Body[Pos+1]) {
944 // $$ => $
945 case '$':
946 OS << '$';
947 break;
948
949 // $n => number of arguments
950 case 'n':
951 OS << A.size();
952 break;
953
954 // $[0-9] => argument
955 default: {
956 // Missing arguments are ignored.
957 unsigned Index = Body[Pos+1] - '0';
958 if (Index >= A.size())
959 break;
960
961 // Otherwise substitute with the token values, with spaces eliminated.
962 for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
963 ie = A[Index].end(); it != ie; ++it)
964 OS << it->getString();
965 break;
966 }
967 }
968
969 // Update the scan point.
970 Body = Body.substr(Pos + 2);
971 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000972
973 // We include the .endmacro in the buffer as our queue to exit the macro
974 // instantiation.
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000975 OS << ".endmacro\n";
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000976
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000977 Instantiation = MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000978}
979
980bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
981 const Macro *M) {
982 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
983 // this, although we should protect against infinite loops.
984 if (ActiveMacros.size() == 20)
985 return TokError("macros cannot be nested more than 20 levels deep");
986
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000987 // Parse the macro instantiation arguments.
988 std::vector<std::vector<AsmToken> > MacroArguments;
989 MacroArguments.push_back(std::vector<AsmToken>());
990 unsigned ParenLevel = 0;
991 for (;;) {
992 if (Lexer.is(AsmToken::Eof))
993 return TokError("unexpected token in macro instantiation");
994 if (Lexer.is(AsmToken::EndOfStatement))
995 break;
996
997 // If we aren't inside parentheses and this is a comma, start a new token
998 // list.
999 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1000 MacroArguments.push_back(std::vector<AsmToken>());
1001 } else if (Lexer.is(AsmToken::LParen)) {
1002 ++ParenLevel;
1003 } else if (Lexer.is(AsmToken::RParen)) {
1004 if (ParenLevel)
1005 --ParenLevel;
1006 } else {
1007 MacroArguments.back().push_back(getTok());
1008 }
1009 Lex();
1010 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001011
1012 // Create the macro instantiation object and add to the current macro
1013 // instantiation stack.
1014 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001015 getTok().getLoc(),
1016 MacroArguments);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001017 ActiveMacros.push_back(MI);
1018
1019 // Jump to the macro instantiation and prime the lexer.
1020 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1021 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1022 Lex();
1023
1024 return false;
1025}
1026
1027void AsmParser::HandleMacroExit() {
1028 // Jump to the EndOfStatement we should return to, and consume it.
1029 JumpToLoc(ActiveMacros.back()->ExitLoc);
1030 Lex();
1031
1032 // Pop the instantiation entry.
1033 delete ActiveMacros.back();
1034 ActiveMacros.pop_back();
1035}
1036
Benjamin Kramer38e59892010-07-14 22:38:02 +00001037bool AsmParser::ParseAssignment(StringRef Name) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001038 // FIXME: Use better location, we should use proper tokens.
1039 SMLoc EqualLoc = Lexer.getLoc();
1040
Daniel Dunbar821e3332009-08-31 08:09:28 +00001041 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001042 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001043 return true;
1044
Daniel Dunbar3f872332009-07-28 16:08:33 +00001045 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001046 return TokError("unexpected token in assignment");
1047
1048 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001049 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001050
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001051 // Validate that the LHS is allowed to be a variable (either it has not been
1052 // used as a symbol, or it is an absolute symbol).
1053 MCSymbol *Sym = getContext().LookupSymbol(Name);
1054 if (Sym) {
1055 // Diagnose assignment to a label.
1056 //
1057 // FIXME: Diagnostics. Note the location of the definition as a label.
1058 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001059 if (Sym->isUndefined() && !Sym->isUsedInExpr())
1060 ; // Allow redefinitions of undefined symbols only used in directives.
1061 else if (!Sym->isUndefined() && !Sym->isAbsolute())
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001062 return Error(EqualLoc, "redefinition of '" + Name + "'");
1063 else if (!Sym->isVariable())
1064 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00001065 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001066 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1067 Name + "'");
1068 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001069 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001070
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001071 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001072
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001073 Sym->setUsedInExpr(true);
1074
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001075 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00001076 Out.EmitAssignment(Sym, Value);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001077
1078 return false;
1079}
1080
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001081/// ParseIdentifier:
1082/// ::= identifier
1083/// ::= string
1084bool AsmParser::ParseIdentifier(StringRef &Res) {
1085 if (Lexer.isNot(AsmToken::Identifier) &&
1086 Lexer.isNot(AsmToken::String))
1087 return true;
1088
Sean Callanan18b83232010-01-19 21:44:56 +00001089 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001090
Sean Callanan79ed1a82010-01-19 20:22:31 +00001091 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001092
1093 return false;
1094}
1095
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001096/// ParseDirectiveSet:
1097/// ::= .set identifier ',' expression
1098bool AsmParser::ParseDirectiveSet() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001099 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001100
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001101 if (ParseIdentifier(Name))
1102 return TokError("expected identifier after '.set' directive");
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001103
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001104 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001105 return TokError("unexpected token in '.set'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001106 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001107
Daniel Dunbare2ace502009-08-31 08:09:09 +00001108 return ParseAssignment(Name);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001109}
1110
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001111bool AsmParser::ParseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001112 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001113
1114 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00001115 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001116 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1117 if (Str[i] != '\\') {
1118 Data += Str[i];
1119 continue;
1120 }
1121
1122 // Recognize escaped characters. Note that this escape semantics currently
1123 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1124 ++i;
1125 if (i == e)
1126 return TokError("unexpected backslash at end of string");
1127
1128 // Recognize octal sequences.
1129 if ((unsigned) (Str[i] - '0') <= 7) {
1130 // Consume up to three octal characters.
1131 unsigned Value = Str[i] - '0';
1132
1133 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1134 ++i;
1135 Value = Value * 8 + (Str[i] - '0');
1136
1137 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1138 ++i;
1139 Value = Value * 8 + (Str[i] - '0');
1140 }
1141 }
1142
1143 if (Value > 255)
1144 return TokError("invalid octal escape sequence (out of range)");
1145
1146 Data += (unsigned char) Value;
1147 continue;
1148 }
1149
1150 // Otherwise recognize individual escapes.
1151 switch (Str[i]) {
1152 default:
1153 // Just reject invalid escape sequences for now.
1154 return TokError("invalid escape sequence (unrecognized character)");
1155
1156 case 'b': Data += '\b'; break;
1157 case 'f': Data += '\f'; break;
1158 case 'n': Data += '\n'; break;
1159 case 'r': Data += '\r'; break;
1160 case 't': Data += '\t'; break;
1161 case '"': Data += '"'; break;
1162 case '\\': Data += '\\'; break;
1163 }
1164 }
1165
1166 return false;
1167}
1168
Daniel Dunbara0d14262009-06-24 23:30:00 +00001169/// ParseDirectiveAscii:
Daniel Dunbar475839e2009-06-29 20:37:27 +00001170/// ::= ( .ascii | .asciz ) [ "string" ( , "string" )* ]
Daniel Dunbara0d14262009-06-24 23:30:00 +00001171bool AsmParser::ParseDirectiveAscii(bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001172 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbara0d14262009-06-24 23:30:00 +00001173 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001174 if (getLexer().isNot(AsmToken::String))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001175 return TokError("expected string in '.ascii' or '.asciz' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001176
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001177 std::string Data;
1178 if (ParseEscapedString(Data))
1179 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001180
1181 getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001182 if (ZeroTerminated)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001183 getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
1184
Sean Callanan79ed1a82010-01-19 20:22:31 +00001185 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001186
1187 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001188 break;
1189
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001190 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001191 return TokError("unexpected token in '.ascii' or '.asciz' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001192 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001193 }
1194 }
1195
Sean Callanan79ed1a82010-01-19 20:22:31 +00001196 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001197 return false;
1198}
1199
1200/// ParseDirectiveValue
1201/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
1202bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001203 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbara0d14262009-06-24 23:30:00 +00001204 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001205 const MCExpr *Value;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001206 SMLoc ATTRIBUTE_UNUSED StartLoc = getLexer().getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00001207 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001208 return true;
1209
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001210 // Special case constant expressions to match code generator.
1211 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value))
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001212 getStreamer().EmitIntValue(MCE->getValue(), Size, DEFAULT_ADDRSPACE);
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001213 else
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001214 getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001215
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001216 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001217 break;
1218
1219 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001220 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001221 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001222 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001223 }
1224 }
1225
Sean Callanan79ed1a82010-01-19 20:22:31 +00001226 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001227 return false;
1228}
1229
1230/// ParseDirectiveSpace
1231/// ::= .space expression [ , expression ]
1232bool AsmParser::ParseDirectiveSpace() {
1233 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001234 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001235 return true;
1236
1237 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001238 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1239 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001240 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001241 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001242
Daniel Dunbar475839e2009-06-29 20:37:27 +00001243 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001244 return true;
1245
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001246 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001247 return TokError("unexpected token in '.space' directive");
1248 }
1249
Sean Callanan79ed1a82010-01-19 20:22:31 +00001250 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001251
1252 if (NumBytes <= 0)
1253 return TokError("invalid number of bytes in '.space' directive");
1254
1255 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001256 getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001257
1258 return false;
1259}
1260
1261/// ParseDirectiveFill
1262/// ::= .fill expression , expression , expression
1263bool AsmParser::ParseDirectiveFill() {
1264 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001265 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001266 return true;
1267
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001268 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001269 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001270 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001271
1272 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001273 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001274 return true;
1275
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001276 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001277 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001278 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001279
1280 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001281 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001282 return true;
1283
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001284 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001285 return TokError("unexpected token in '.fill' directive");
1286
Sean Callanan79ed1a82010-01-19 20:22:31 +00001287 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001288
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00001289 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
1290 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00001291
1292 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001293 getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001294
1295 return false;
1296}
Daniel Dunbarc238b582009-06-25 22:44:51 +00001297
1298/// ParseDirectiveOrg
1299/// ::= .org expression [ , expression ]
1300bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001301 const MCExpr *Offset;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001302 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001303 return true;
1304
1305 // Parse optional fill expression.
1306 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001307 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1308 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001309 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001310 Lex();
Daniel Dunbarc238b582009-06-25 22:44:51 +00001311
Daniel Dunbar475839e2009-06-29 20:37:27 +00001312 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001313 return true;
1314
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001315 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001316 return TokError("unexpected token in '.org' directive");
1317 }
1318
Sean Callanan79ed1a82010-01-19 20:22:31 +00001319 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001320
1321 // FIXME: Only limited forms of relocatable expressions are accepted here, it
1322 // has to be relative to the current section.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001323 getStreamer().EmitValueToOffset(Offset, FillExpr);
Daniel Dunbarc238b582009-06-25 22:44:51 +00001324
1325 return false;
1326}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001327
1328/// ParseDirectiveAlign
1329/// ::= {.align, ...} expression [ , expression [ , expression ]]
1330bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001331 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001332 int64_t Alignment;
1333 if (ParseAbsoluteExpression(Alignment))
1334 return true;
1335
1336 SMLoc MaxBytesLoc;
1337 bool HasFillExpr = false;
1338 int64_t FillExpr = 0;
1339 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001340 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1341 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001342 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001343 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001344
1345 // The fill expression can be omitted while specifying a maximum number of
1346 // alignment bytes, e.g:
1347 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001348 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001349 HasFillExpr = true;
1350 if (ParseAbsoluteExpression(FillExpr))
1351 return true;
1352 }
1353
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001354 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1355 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001356 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001357 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001358
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001359 MaxBytesLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001360 if (ParseAbsoluteExpression(MaxBytesToFill))
1361 return true;
1362
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001363 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001364 return TokError("unexpected token in directive");
1365 }
1366 }
1367
Sean Callanan79ed1a82010-01-19 20:22:31 +00001368 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001369
Daniel Dunbar648ac512010-05-17 21:54:30 +00001370 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001371 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001372
1373 // Compute alignment in bytes.
1374 if (IsPow2) {
1375 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001376 if (Alignment >= 32) {
1377 Error(AlignmentLoc, "invalid alignment value");
1378 Alignment = 31;
1379 }
1380
Benjamin Kramer12fd7672009-09-06 09:35:10 +00001381 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001382 }
1383
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001384 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001385 if (MaxBytesLoc.isValid()) {
1386 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001387 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
1388 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00001389 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001390 }
1391
1392 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001393 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
1394 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001395 MaxBytesToFill = 0;
1396 }
1397 }
1398
Daniel Dunbar648ac512010-05-17 21:54:30 +00001399 // Check whether we should use optimal code alignment for this .align
1400 // directive.
1401 //
1402 // FIXME: This should be using a target hook.
1403 bool UseCodeAlign = false;
1404 if (const MCSectionMachO *S = dyn_cast<MCSectionMachO>(
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001405 getStreamer().getCurrentSection()))
Chris Lattnera9558532010-07-15 21:19:31 +00001406 UseCodeAlign = S->hasAttribute(MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001407 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
1408 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001409 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001410 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00001411 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00001412 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
1413 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001414 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001415
1416 return false;
1417}
1418
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001419/// ParseDirectiveSymbolAttribute
1420/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001421bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001422 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001423 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001424 StringRef Name;
1425
1426 if (ParseIdentifier(Name))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001427 return TokError("expected identifier in directive");
1428
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001429 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001430
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001431 getStreamer().EmitSymbolAttribute(Sym, Attr);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001432
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001433 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001434 break;
1435
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001436 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001437 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001438 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001439 }
1440 }
1441
Sean Callanan79ed1a82010-01-19 20:22:31 +00001442 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001443 return false;
1444}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001445
Matt Fleming924c5e52010-05-21 11:36:59 +00001446/// ParseDirectiveELFType
1447/// ::= .type identifier , @attribute
1448bool AsmParser::ParseDirectiveELFType() {
1449 StringRef Name;
1450 if (ParseIdentifier(Name))
1451 return TokError("expected identifier in directive");
1452
1453 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001454 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Matt Fleming924c5e52010-05-21 11:36:59 +00001455
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001456 if (getLexer().isNot(AsmToken::Comma))
Matt Fleming924c5e52010-05-21 11:36:59 +00001457 return TokError("unexpected token in '.type' directive");
1458 Lex();
1459
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001460 if (getLexer().isNot(AsmToken::At))
Matt Fleming924c5e52010-05-21 11:36:59 +00001461 return TokError("expected '@' before type");
1462 Lex();
1463
1464 StringRef Type;
1465 SMLoc TypeLoc;
1466
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001467 TypeLoc = getLexer().getLoc();
Matt Fleming924c5e52010-05-21 11:36:59 +00001468 if (ParseIdentifier(Type))
1469 return TokError("expected symbol type in directive");
1470
1471 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Type)
1472 .Case("function", MCSA_ELF_TypeFunction)
1473 .Case("object", MCSA_ELF_TypeObject)
1474 .Case("tls_object", MCSA_ELF_TypeTLS)
1475 .Case("common", MCSA_ELF_TypeCommon)
1476 .Case("notype", MCSA_ELF_TypeNoType)
1477 .Default(MCSA_Invalid);
1478
1479 if (Attr == MCSA_Invalid)
1480 return Error(TypeLoc, "unsupported attribute in '.type' directive");
1481
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001482 if (getLexer().isNot(AsmToken::EndOfStatement))
Matt Fleming924c5e52010-05-21 11:36:59 +00001483 return TokError("unexpected token in '.type' directive");
1484
1485 Lex();
1486
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001487 getStreamer().EmitSymbolAttribute(Sym, Attr);
Matt Fleming924c5e52010-05-21 11:36:59 +00001488
1489 return false;
1490}
1491
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001492/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00001493/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
1494bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001495 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001496 StringRef Name;
1497 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001498 return TokError("expected identifier in directive");
1499
Daniel Dunbar76c4d762009-07-31 21:55:09 +00001500 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001501 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001502
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001503 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001504 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001505 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001506
1507 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001508 SMLoc SizeLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001509 if (ParseAbsoluteExpression(Size))
1510 return true;
1511
1512 int64_t Pow2Alignment = 0;
1513 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001514 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00001515 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001516 Pow2AlignmentLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001517 if (ParseAbsoluteExpression(Pow2Alignment))
1518 return true;
Chris Lattner258281d2010-01-19 06:22:22 +00001519
1520 // If this target takes alignments in bytes (not log) validate and convert.
1521 if (Lexer.getMAI().getAlignmentIsInBytes()) {
1522 if (!isPowerOf2_64(Pow2Alignment))
1523 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
1524 Pow2Alignment = Log2_64(Pow2Alignment);
1525 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001526 }
1527
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001528 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00001529 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001530
Sean Callanan79ed1a82010-01-19 20:22:31 +00001531 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001532
Chris Lattner1fc3d752009-07-09 17:25:12 +00001533 // NOTE: a size of zero for a .comm should create a undefined symbol
1534 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001535 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001536 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
1537 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001538
Eric Christopherc260a3e2010-05-14 01:38:54 +00001539 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001540 // may internally end up wanting an alignment in bytes.
1541 // FIXME: Diagnose overflow.
1542 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001543 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
1544 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001545
Daniel Dunbar8906ff12009-08-22 07:22:36 +00001546 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001547 return Error(IDLoc, "invalid symbol redefinition");
1548
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001549 // '.lcomm' is equivalent to '.zerofill'.
Chris Lattner1fc3d752009-07-09 17:25:12 +00001550 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001551 if (IsLocal) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001552 getStreamer().EmitZerofill(Ctx.getMachOSection(
1553 "__DATA", "__bss", MCSectionMachO::S_ZEROFILL,
1554 0, SectionKind::getBSS()),
1555 Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001556 return false;
1557 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001558
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001559 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001560 return false;
1561}
Chris Lattner9be3fee2009-07-10 22:20:30 +00001562
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001563/// ParseDirectiveAbort
1564/// ::= .abort [ "abort_string" ]
1565bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001566 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001567 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001568
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001569 StringRef Str = "";
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001570 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1571 if (getLexer().isNot(AsmToken::String))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001572 return TokError("expected string in '.abort' directive");
1573
Sean Callanan18b83232010-01-19 21:44:56 +00001574 Str = getTok().getString();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001575
Sean Callanan79ed1a82010-01-19 20:22:31 +00001576 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001577 }
1578
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001579 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001580 return TokError("unexpected token in '.abort' directive");
1581
Sean Callanan79ed1a82010-01-19 20:22:31 +00001582 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001583
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001584 // FIXME: Handle here.
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001585 if (Str.empty())
1586 Error(Loc, ".abort detected. Assembly stopping.");
1587 else
1588 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001589
1590 return false;
1591}
Kevin Enderby71148242009-07-14 21:35:03 +00001592
Kevin Enderby1f049b22009-07-14 23:21:55 +00001593/// ParseDirectiveInclude
1594/// ::= .include "filename"
1595bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001596 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001597 return TokError("expected string in '.include' directive");
1598
Sean Callanan18b83232010-01-19 21:44:56 +00001599 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001600 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001601 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00001602
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001603 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001604 return TokError("unexpected token in '.include' directive");
1605
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001606 // Strip the quotes.
1607 Filename = Filename.substr(1, Filename.size()-2);
1608
1609 // Attempt to switch the lexer to the included file before consuming the end
1610 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00001611 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00001612 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001613 return true;
1614 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00001615
1616 return false;
1617}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001618
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001619/// ParseDirectiveIf
1620/// ::= .if expression
1621bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001622 TheCondStack.push_back(TheCondState);
1623 TheCondState.TheCond = AsmCond::IfCond;
1624 if(TheCondState.Ignore) {
1625 EatToEndOfStatement();
1626 }
1627 else {
1628 int64_t ExprValue;
1629 if (ParseAbsoluteExpression(ExprValue))
1630 return true;
1631
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001632 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001633 return TokError("unexpected token in '.if' directive");
1634
Sean Callanan79ed1a82010-01-19 20:22:31 +00001635 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001636
1637 TheCondState.CondMet = ExprValue;
1638 TheCondState.Ignore = !TheCondState.CondMet;
1639 }
1640
1641 return false;
1642}
1643
1644/// ParseDirectiveElseIf
1645/// ::= .elseif expression
1646bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
1647 if (TheCondState.TheCond != AsmCond::IfCond &&
1648 TheCondState.TheCond != AsmCond::ElseIfCond)
1649 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
1650 " an .elseif");
1651 TheCondState.TheCond = AsmCond::ElseIfCond;
1652
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001653 bool LastIgnoreState = false;
1654 if (!TheCondStack.empty())
1655 LastIgnoreState = TheCondStack.back().Ignore;
1656 if (LastIgnoreState || TheCondState.CondMet) {
1657 TheCondState.Ignore = true;
1658 EatToEndOfStatement();
1659 }
1660 else {
1661 int64_t ExprValue;
1662 if (ParseAbsoluteExpression(ExprValue))
1663 return true;
1664
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001665 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001666 return TokError("unexpected token in '.elseif' directive");
1667
Sean Callanan79ed1a82010-01-19 20:22:31 +00001668 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001669 TheCondState.CondMet = ExprValue;
1670 TheCondState.Ignore = !TheCondState.CondMet;
1671 }
1672
1673 return false;
1674}
1675
1676/// ParseDirectiveElse
1677/// ::= .else
1678bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001679 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001680 return TokError("unexpected token in '.else' directive");
1681
Sean Callanan79ed1a82010-01-19 20:22:31 +00001682 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001683
1684 if (TheCondState.TheCond != AsmCond::IfCond &&
1685 TheCondState.TheCond != AsmCond::ElseIfCond)
1686 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
1687 ".elseif");
1688 TheCondState.TheCond = AsmCond::ElseCond;
1689 bool LastIgnoreState = false;
1690 if (!TheCondStack.empty())
1691 LastIgnoreState = TheCondStack.back().Ignore;
1692 if (LastIgnoreState || TheCondState.CondMet)
1693 TheCondState.Ignore = true;
1694 else
1695 TheCondState.Ignore = false;
1696
1697 return false;
1698}
1699
1700/// ParseDirectiveEndIf
1701/// ::= .endif
1702bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001703 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001704 return TokError("unexpected token in '.endif' directive");
1705
Sean Callanan79ed1a82010-01-19 20:22:31 +00001706 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001707
1708 if ((TheCondState.TheCond == AsmCond::NoCond) ||
1709 TheCondStack.empty())
1710 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
1711 ".else");
1712 if (!TheCondStack.empty()) {
1713 TheCondState = TheCondStack.back();
1714 TheCondStack.pop_back();
1715 }
1716
1717 return false;
1718}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001719
1720/// ParseDirectiveFile
1721/// ::= .file [number] string
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001722bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001723 // FIXME: I'm not sure what this is.
1724 int64_t FileNumber = -1;
Daniel Dunbareceec052010-07-12 17:45:27 +00001725 if (getLexer().is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001726 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001727 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00001728
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001729 if (FileNumber < 1)
1730 return TokError("file number less than one");
1731 }
1732
Daniel Dunbareceec052010-07-12 17:45:27 +00001733 if (getLexer().isNot(AsmToken::String))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001734 return TokError("unexpected token in '.file' directive");
Daniel Dunbareceec052010-07-12 17:45:27 +00001735
Chris Lattnerd32e8032010-01-25 19:02:58 +00001736 StringRef Filename = getTok().getString();
1737 Filename = Filename.substr(1, Filename.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00001738 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001739
Daniel Dunbareceec052010-07-12 17:45:27 +00001740 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001741 return TokError("unexpected token in '.file' directive");
1742
Chris Lattnerd32e8032010-01-25 19:02:58 +00001743 if (FileNumber == -1)
Daniel Dunbareceec052010-07-12 17:45:27 +00001744 getStreamer().EmitFileDirective(Filename);
Chris Lattnerd32e8032010-01-25 19:02:58 +00001745 else
Daniel Dunbareceec052010-07-12 17:45:27 +00001746 getStreamer().EmitDwarfFileDirective(FileNumber, Filename);
1747
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001748 return false;
1749}
1750
1751/// ParseDirectiveLine
1752/// ::= .line [number]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001753bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00001754 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1755 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001756 return TokError("unexpected token in '.line' directive");
1757
Sean Callanan18b83232010-01-19 21:44:56 +00001758 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001759 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001760 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001761
1762 // FIXME: Do something with the .line.
1763 }
1764
Daniel Dunbareceec052010-07-12 17:45:27 +00001765 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbar839348a2010-07-01 20:20:01 +00001766 return TokError("unexpected token in '.line' directive");
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001767
1768 return false;
1769}
1770
1771
1772/// ParseDirectiveLoc
1773/// ::= .loc number [number [number]]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001774bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00001775 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001776 return TokError("unexpected token in '.loc' directive");
1777
1778 // FIXME: What are these fields?
Sean Callanan18b83232010-01-19 21:44:56 +00001779 int64_t FileNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001780 (void) FileNumber;
1781 // FIXME: Validate file.
1782
Sean Callanan79ed1a82010-01-19 20:22:31 +00001783 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00001784 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1785 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001786 return TokError("unexpected token in '.loc' directive");
1787
Sean Callanan18b83232010-01-19 21:44:56 +00001788 int64_t Param2 = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001789 (void) Param2;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001790 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001791
Daniel Dunbareceec052010-07-12 17:45:27 +00001792 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1793 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001794 return TokError("unexpected token in '.loc' directive");
1795
Sean Callanan18b83232010-01-19 21:44:56 +00001796 int64_t Param3 = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001797 (void) Param3;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001798 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001799
1800 // FIXME: Do something with the .loc.
1801 }
1802 }
1803
Daniel Dunbareceec052010-07-12 17:45:27 +00001804 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001805 return TokError("unexpected token in '.file' directive");
1806
1807 return false;
1808}
1809
Daniel Dunbar3c802de2010-07-18 18:38:02 +00001810/// ParseDirectiveMacrosOnOff
1811/// ::= .macros_on
1812/// ::= .macros_off
1813bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
1814 SMLoc DirectiveLoc) {
1815 if (getLexer().isNot(AsmToken::EndOfStatement))
1816 return Error(getLexer().getLoc(),
1817 "unexpected token in '" + Directive + "' directive");
1818
1819 getParser().MacrosEnabled = Directive == ".macros_on";
1820
1821 return false;
1822}
Daniel Dunbard1e3b442010-07-17 02:26:10 +00001823
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00001824/// ParseDirectiveMacro
1825/// ::= .macro name
1826bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
1827 SMLoc DirectiveLoc) {
1828 StringRef Name;
1829 if (getParser().ParseIdentifier(Name))
1830 return TokError("expected identifier in directive");
1831
1832 if (getLexer().isNot(AsmToken::EndOfStatement))
1833 return TokError("unexpected token in '.macro' directive");
1834
1835 // Eat the end of statement.
1836 Lex();
1837
1838 AsmToken EndToken, StartToken = getTok();
1839
1840 // Lex the macro definition.
1841 for (;;) {
1842 // Check whether we have reached the end of the file.
1843 if (getLexer().is(AsmToken::Eof))
1844 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
1845
1846 // Otherwise, check whether we have reach the .endmacro.
1847 if (getLexer().is(AsmToken::Identifier) &&
1848 (getTok().getIdentifier() == ".endm" ||
1849 getTok().getIdentifier() == ".endmacro")) {
1850 EndToken = getTok();
1851 Lex();
1852 if (getLexer().isNot(AsmToken::EndOfStatement))
1853 return TokError("unexpected token in '" + EndToken.getIdentifier() +
1854 "' directive");
1855 break;
1856 }
1857
1858 // Otherwise, scan til the end of the statement.
1859 getParser().EatToEndOfStatement();
1860 }
1861
1862 if (getParser().MacroMap.lookup(Name)) {
1863 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
1864 }
1865
1866 const char *BodyStart = StartToken.getLoc().getPointer();
1867 const char *BodyEnd = EndToken.getLoc().getPointer();
1868 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
1869 getParser().MacroMap[Name] = new Macro(Name, Body);
1870 return false;
1871}
1872
1873/// ParseDirectiveEndMacro
1874/// ::= .endm
1875/// ::= .endmacro
1876bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
1877 SMLoc DirectiveLoc) {
1878 if (getLexer().isNot(AsmToken::EndOfStatement))
1879 return TokError("unexpected token in '" + Directive + "' directive");
1880
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001881 // If we are inside a macro instantiation, terminate the current
1882 // instantiation.
1883 if (!getParser().ActiveMacros.empty()) {
1884 getParser().HandleMacroExit();
1885 return false;
1886 }
1887
1888 // Otherwise, this .endmacro is a stray entry in the file; well formed
1889 // .endmacro directives are handled during the macro definition parsing.
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00001890 return TokError("unexpected '" + Directive + "' in file, "
1891 "no current macro definition");
1892}
1893
Daniel Dunbard1e3b442010-07-17 02:26:10 +00001894/// \brief Create an MCAsmParser instance.
1895MCAsmParser *llvm::createMCAsmParser(const Target &T, SourceMgr &SM,
1896 MCContext &C, MCStreamer &Out,
1897 const MCAsmInfo &MAI) {
1898 return new AsmParser(T, SM, C, Out, MAI);
1899}