blob: 1e8f05f1c24ada62c91956cbf7ae589fdcae8bf3 [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();
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000156
157 /// \brief Parse up to the end of statement and a return the contents from the
158 /// current token until the end of the statement; the current token on exit
159 /// will be either the EndOfStatement or EOF.
160 StringRef ParseStringToEndOfStatement();
161
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000162 bool ParseAssignment(StringRef Name);
163
164 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
165 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
166 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
167
168 /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
169 /// and set \arg Res to the identifier contents.
170 bool ParseIdentifier(StringRef &Res);
171
172 // Directive Parsing.
173 bool ParseDirectiveAscii(bool ZeroTerminated); // ".ascii", ".asciiz"
174 bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
175 bool ParseDirectiveFill(); // ".fill"
176 bool ParseDirectiveSpace(); // ".space"
177 bool ParseDirectiveSet(); // ".set"
178 bool ParseDirectiveOrg(); // ".org"
179 // ".align{,32}", ".p2align{,w,l}"
180 bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
181
182 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
183 /// accepts a single symbol (which should be a label or an external).
184 bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
185 bool ParseDirectiveELFType(); // ELF specific ".type"
186
187 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
188
189 bool ParseDirectiveAbort(); // ".abort"
190 bool ParseDirectiveInclude(); // ".include"
191
192 bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
193 bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
194 bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
195 bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
196
197 /// ParseEscapedString - Parse the current token as a string which may include
198 /// escaped characters and return the string contents.
199 bool ParseEscapedString(std::string &Data);
200};
201
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000202/// \brief Generic implementations of directive handling, etc. which is shared
203/// (or the default, at least) for all assembler parser.
204class GenericAsmParser : public MCAsmParserExtension {
205public:
206 GenericAsmParser() {}
207
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000208 AsmParser &getParser() {
209 return (AsmParser&) this->MCAsmParserExtension::getParser();
210 }
211
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000212 virtual void Initialize(MCAsmParser &Parser) {
213 // Call the base implementation.
214 this->MCAsmParserExtension::Initialize(Parser);
215
216 // Debugging directives.
217 Parser.AddDirectiveHandler(this, ".file", MCAsmParser::DirectiveHandler(
218 &GenericAsmParser::ParseDirectiveFile));
219 Parser.AddDirectiveHandler(this, ".line", MCAsmParser::DirectiveHandler(
220 &GenericAsmParser::ParseDirectiveLine));
221 Parser.AddDirectiveHandler(this, ".loc", MCAsmParser::DirectiveHandler(
222 &GenericAsmParser::ParseDirectiveLoc));
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000223
224 // Macro directives.
225 Parser.AddDirectiveHandler(this, ".macros_on",
226 MCAsmParser::DirectiveHandler(
227 &GenericAsmParser::ParseDirectiveMacrosOnOff));
228 Parser.AddDirectiveHandler(this, ".macros_off",
229 MCAsmParser::DirectiveHandler(
230 &GenericAsmParser::ParseDirectiveMacrosOnOff));
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000231 Parser.AddDirectiveHandler(this, ".macro", MCAsmParser::DirectiveHandler(
232 &GenericAsmParser::ParseDirectiveMacro));
233 Parser.AddDirectiveHandler(this, ".endm", MCAsmParser::DirectiveHandler(
234 &GenericAsmParser::ParseDirectiveEndMacro));
235 Parser.AddDirectiveHandler(this, ".endmacro", MCAsmParser::DirectiveHandler(
236 &GenericAsmParser::ParseDirectiveEndMacro));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000237 }
238
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000239 bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
240 bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
241 bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000242
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000243 bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000244 bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
245 bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000246};
247
248}
249
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000250namespace llvm {
251
252extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000253extern MCAsmParserExtension *createELFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000254
255}
256
Chris Lattneraaec2052010-01-19 19:46:13 +0000257enum { DEFAULT_ADDRSPACE = 0 };
258
Daniel Dunbar9186fa62010-07-01 20:41:56 +0000259AsmParser::AsmParser(const Target &T, SourceMgr &_SM, MCContext &_Ctx,
260 MCStreamer &_Out, const MCAsmInfo &_MAI)
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000261 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM),
Daniel Dunbare4749702010-07-12 18:12:02 +0000262 GenericParser(new GenericAsmParser), PlatformParser(0),
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000263 CurBuffer(0), MacrosEnabled(true) {
Sean Callananfd0b0282010-01-21 00:19:58 +0000264 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000265
266 // Initialize the generic parser.
267 GenericParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000268
269 // Initialize the platform / file format parser.
270 //
271 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
272 // created.
273 if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000274 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000275 PlatformParser->Initialize(*this);
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000276 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000277 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000278 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000279 }
Chris Lattnerebb89b42009-09-27 21:16:52 +0000280}
281
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000282AsmParser::~AsmParser() {
Daniel Dunbare4749702010-07-12 18:12:02 +0000283 delete PlatformParser;
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000284 delete GenericParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000285}
286
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000287void AsmParser::PrintMacroInstantiations() {
288 // Print the active macro instantiation stack.
289 for (std::vector<MacroInstantiation*>::const_reverse_iterator
290 it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
291 PrintMessage((*it)->InstantiationLoc, "while in macro instantiation",
292 "note");
293}
294
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000295void AsmParser::Warning(SMLoc L, const Twine &Msg) {
Sean Callananbf2013e2010-01-20 23:19:55 +0000296 PrintMessage(L, Msg.str(), "warning");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000297 PrintMacroInstantiations();
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000298}
299
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000300bool AsmParser::Error(SMLoc L, const Twine &Msg) {
Sean Callananbf2013e2010-01-20 23:19:55 +0000301 PrintMessage(L, Msg.str(), "error");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000302 PrintMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000303 return true;
304}
305
Sean Callananbf2013e2010-01-20 23:19:55 +0000306void AsmParser::PrintMessage(SMLoc Loc, const std::string &Msg,
307 const char *Type) const {
308 SrcMgr.PrintMessage(Loc, Msg, Type);
309}
Sean Callananfd0b0282010-01-21 00:19:58 +0000310
311bool AsmParser::EnterIncludeFile(const std::string &Filename) {
312 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc());
313 if (NewBuf == -1)
314 return true;
Sean Callanan79036e42010-01-20 22:18:24 +0000315
Sean Callananfd0b0282010-01-21 00:19:58 +0000316 CurBuffer = NewBuf;
317
318 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
319
320 return false;
321}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000322
323void AsmParser::JumpToLoc(SMLoc Loc) {
324 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
325 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
326}
327
Sean Callananfd0b0282010-01-21 00:19:58 +0000328const AsmToken &AsmParser::Lex() {
329 const AsmToken *tok = &Lexer.Lex();
330
331 if (tok->is(AsmToken::Eof)) {
332 // If this is the end of an included file, pop the parent file off the
333 // include stack.
334 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
335 if (ParentIncludeLoc != SMLoc()) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000336 JumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000337 tok = &Lexer.Lex();
338 }
339 }
340
341 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000342 Error(Lexer.getErrLoc(), Lexer.getErr());
Sean Callanan79036e42010-01-20 22:18:24 +0000343
Sean Callananfd0b0282010-01-21 00:19:58 +0000344 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000345}
346
Chris Lattner79180e22010-04-05 23:15:42 +0000347bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000348 // Create the initial section, if requested.
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000349 //
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000350 // FIXME: Target hook & command line option for initial section.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000351 if (!NoInitialTextSection)
Chris Lattnerf0559e42010-04-08 20:30:37 +0000352 Out.SwitchSection(Ctx.getMachOSection("__TEXT", "__text",
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000353 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
354 0, SectionKind::getText()));
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000355
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000356 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000357 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000358
Chris Lattnerb717fb02009-07-02 21:53:43 +0000359 bool HadError = false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000360
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000361 AsmCond StartingCondState = TheCondState;
362
Chris Lattnerb717fb02009-07-02 21:53:43 +0000363 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000364 while (Lexer.isNot(AsmToken::Eof)) {
Chris Lattnerb717fb02009-07-02 21:53:43 +0000365 if (!ParseStatement()) continue;
366
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000367 // We had an error, remember it and recover by skipping to the next line.
Chris Lattnerb717fb02009-07-02 21:53:43 +0000368 HadError = true;
369 EatToEndOfStatement();
370 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000371
372 if (TheCondState.TheCond != StartingCondState.TheCond ||
373 TheCondState.Ignore != StartingCondState.Ignore)
374 return TokError("unmatched .ifs or .elses");
Chris Lattnerb717fb02009-07-02 21:53:43 +0000375
Chris Lattner79180e22010-04-05 23:15:42 +0000376 // Finalize the output stream if there are no errors and if the client wants
377 // us to.
378 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000379 Out.Finish();
380
Chris Lattnerb717fb02009-07-02 21:53:43 +0000381 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000382}
383
Chris Lattner2cf5f142009-06-22 01:29:09 +0000384/// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
385void AsmParser::EatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000386 while (Lexer.isNot(AsmToken::EndOfStatement) &&
387 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000388 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000389
390 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000391 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000392 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000393}
394
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000395StringRef AsmParser::ParseStringToEndOfStatement() {
396 const char *Start = getTok().getLoc().getPointer();
397
398 while (Lexer.isNot(AsmToken::EndOfStatement) &&
399 Lexer.isNot(AsmToken::Eof))
400 Lex();
401
402 const char *End = getTok().getLoc().getPointer();
403 return StringRef(Start, End - Start);
404}
Chris Lattnerc4193832009-06-22 05:51:26 +0000405
Chris Lattner74ec1a32009-06-22 06:32:03 +0000406/// ParseParenExpr - Parse a paren expression and return it.
407/// NOTE: This assumes the leading '(' has already been consumed.
408///
409/// parenexpr ::= expr)
410///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000411bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner74ec1a32009-06-22 06:32:03 +0000412 if (ParseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000413 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000414 return TokError("expected ')' in parentheses expression");
Chris Lattnerb4307b32010-01-15 19:28:38 +0000415 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000416 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000417 return false;
418}
Chris Lattnerc4193832009-06-22 05:51:26 +0000419
Chris Lattner74ec1a32009-06-22 06:32:03 +0000420/// ParsePrimaryExpr - Parse a primary expression and return it.
421/// primaryexpr ::= (parenexpr
422/// primaryexpr ::= symbol
423/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000424/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000425/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000426bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000427 switch (Lexer.getKind()) {
428 default:
429 return TokError("unknown token in expression");
Daniel Dunbar3f872332009-07-28 16:08:33 +0000430 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000431 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000432 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000433 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000434 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000435 return false;
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000436 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000437 case AsmToken::Identifier: {
438 // This is a symbol reference.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000439 std::pair<StringRef, StringRef> Split = getTok().getIdentifier().split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000440 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000441
Daniel Dunbar525a3a62010-05-17 17:46:23 +0000442 // Mark the symbol as used in an expression.
443 Sym->setUsedInExpr(true);
444
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000445 // Lookup the symbol variant if used.
446 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
447 if (Split.first.size() != getTok().getIdentifier().size())
448 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
449
Chris Lattnerb4307b32010-01-15 19:28:38 +0000450 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000451 Lex(); // Eat identifier.
Daniel Dunbarfffff912009-10-16 01:34:54 +0000452
453 // If this is an absolute variable reference, substitute it now to preserve
454 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000455 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000456 if (Variant)
457 return Error(EndLoc, "unexpected modified on variable reference");
458
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000459 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000460 return false;
461 }
462
463 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000464 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000465 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000466 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000467 case AsmToken::Integer: {
468 SMLoc Loc = getTok().getLoc();
469 int64_t IntVal = getTok().getIntVal();
470 Res = MCConstantExpr::Create(IntVal, getContext());
Chris Lattnerb4307b32010-01-15 19:28:38 +0000471 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000472 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000473 // Look for 'b' or 'f' following an Integer as a directional label
474 if (Lexer.getKind() == AsmToken::Identifier) {
475 StringRef IDVal = getTok().getString();
476 if (IDVal == "f" || IDVal == "b"){
477 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
478 IDVal == "f" ? 1 : 0);
479 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
480 getContext());
481 if(IDVal == "b" && Sym->isUndefined())
482 return Error(Loc, "invalid reference to undefined symbol");
483 EndLoc = Lexer.getLoc();
484 Lex(); // Eat identifier.
485 }
486 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000487 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000488 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000489 case AsmToken::Dot: {
490 // This is a '.' reference, which references the current PC. Emit a
491 // temporary label to the streamer and refer to it.
492 MCSymbol *Sym = Ctx.CreateTempSymbol();
493 Out.EmitLabel(Sym);
494 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
495 EndLoc = Lexer.getLoc();
496 Lex(); // Eat identifier.
497 return false;
498 }
499
Daniel Dunbar3f872332009-07-28 16:08:33 +0000500 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000501 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000502 return ParseParenExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000503 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000504 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000505 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000506 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000507 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000508 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000509 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000510 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000511 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000512 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000513 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000514 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000515 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000516 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000517 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000518 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000519 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000520 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000521 }
522}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000523
Chris Lattnerb4307b32010-01-15 19:28:38 +0000524bool AsmParser::ParseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000525 SMLoc EndLoc;
526 return ParseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000527}
528
Chris Lattner74ec1a32009-06-22 06:32:03 +0000529/// ParseExpression - Parse an expression and return it.
530///
531/// expr ::= expr +,- expr -> lowest.
532/// expr ::= expr |,^,&,! expr -> middle.
533/// expr ::= expr *,/,%,<<,>> expr -> highest.
534/// expr ::= primaryexpr
535///
Chris Lattner54482b42010-01-15 19:39:23 +0000536bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000537 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000538 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000539 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
540 return true;
541
542 // Try to constant fold it up front, if possible.
543 int64_t Value;
544 if (Res->EvaluateAsAbsolute(Value))
545 Res = MCConstantExpr::Create(Value, getContext());
546
547 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000548}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000549
Chris Lattnerb4307b32010-01-15 19:28:38 +0000550bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000551 Res = 0;
552 return ParseParenExpr(Res, EndLoc) ||
553 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000554}
555
Daniel Dunbar475839e2009-06-29 20:37:27 +0000556bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000557 const MCExpr *Expr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000558
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000559 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar475839e2009-06-29 20:37:27 +0000560 if (ParseExpression(Expr))
561 return true;
562
Daniel Dunbare00b0112009-10-16 01:57:52 +0000563 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000564 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +0000565
566 return false;
567}
568
Daniel Dunbar3f872332009-07-28 16:08:33 +0000569static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000570 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000571 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000572 default:
573 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000574
575 // Lowest Precedence: &&, ||
Daniel Dunbar3f872332009-07-28 16:08:33 +0000576 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000577 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000578 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000579 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000580 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000581 return 1;
582
583 // Low Precedence: +, -, ==, !=, <>, <, <=, >, >=
Daniel Dunbar3f872332009-07-28 16:08:33 +0000584 case AsmToken::Plus:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000585 Kind = MCBinaryExpr::Add;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000586 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000587 case AsmToken::Minus:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000588 Kind = MCBinaryExpr::Sub;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000589 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000590 case AsmToken::EqualEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000591 Kind = MCBinaryExpr::EQ;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000592 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000593 case AsmToken::ExclaimEqual:
594 case AsmToken::LessGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000595 Kind = MCBinaryExpr::NE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000596 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000597 case AsmToken::Less:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000598 Kind = MCBinaryExpr::LT;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000599 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000600 case AsmToken::LessEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000601 Kind = MCBinaryExpr::LTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000602 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000603 case AsmToken::Greater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000604 Kind = MCBinaryExpr::GT;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000605 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000606 case AsmToken::GreaterEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000607 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000608 return 2;
609
610 // Intermediate Precedence: |, &, ^
611 //
612 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +0000613 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000614 Kind = MCBinaryExpr::Or;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000615 return 3;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000616 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000617 Kind = MCBinaryExpr::Xor;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000618 return 3;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000619 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000620 Kind = MCBinaryExpr::And;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000621 return 3;
622
623 // Highest Precedence: *, /, %, <<, >>
Daniel Dunbar3f872332009-07-28 16:08:33 +0000624 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000625 Kind = MCBinaryExpr::Mul;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000626 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000627 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000628 Kind = MCBinaryExpr::Div;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000629 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000630 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000631 Kind = MCBinaryExpr::Mod;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000632 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000633 case AsmToken::LessLess:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000634 Kind = MCBinaryExpr::Shl;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000635 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000636 case AsmToken::GreaterGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000637 Kind = MCBinaryExpr::Shr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000638 return 4;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000639 }
640}
641
642
643/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
644/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000645bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
646 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000647 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000648 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000649 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000650
651 // If the next token is lower precedence than we are allowed to eat, return
652 // successfully with what we ate already.
653 if (TokPrec < Precedence)
654 return false;
655
Sean Callanan79ed1a82010-01-19 20:22:31 +0000656 Lex();
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000657
658 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000659 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000660 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000661
662 // If BinOp binds less tightly with RHS than the operator after RHS, let
663 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000664 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000665 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000666 if (TokPrec < NextTokPrec) {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000667 if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000668 }
669
Daniel Dunbar475839e2009-06-29 20:37:27 +0000670 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000671 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000672 }
673}
674
Chris Lattnerc4193832009-06-22 05:51:26 +0000675
676
677
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000678/// ParseStatement:
679/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +0000680/// ::= Label* Directive ...Operands... EndOfStatement
681/// ::= Label* Identifier OperandList* EndOfStatement
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000682bool AsmParser::ParseStatement() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000683 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000684 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000685 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000686 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000687 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000688
689 // Statements always start with an identifier.
Sean Callanan18b83232010-01-19 21:44:56 +0000690 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +0000691 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000692 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000693 int64_t LocalLabelVal = -1;
694 // GUESS allow an integer followed by a ':' as a directional local label
695 if (Lexer.is(AsmToken::Integer)) {
696 LocalLabelVal = getTok().getIntVal();
697 if (LocalLabelVal < 0) {
698 if (!TheCondState.Ignore)
699 return TokError("unexpected token at start of statement");
700 IDVal = "";
701 }
702 else {
703 IDVal = getTok().getString();
704 Lex(); // Consume the integer token to be used as an identifier token.
705 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +0000706 if (!TheCondState.Ignore)
707 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000708 }
709 }
710 }
711 else if (ParseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +0000712 if (!TheCondState.Ignore)
713 return TokError("unexpected token at start of statement");
714 IDVal = "";
715 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000716
Chris Lattner7834fac2010-04-17 18:14:27 +0000717 // Handle conditional assembly here before checking for skipping. We
718 // have to do this so that .endif isn't skipped in a ".if 0" block for
719 // example.
720 if (IDVal == ".if")
721 return ParseDirectiveIf(IDLoc);
722 if (IDVal == ".elseif")
723 return ParseDirectiveElseIf(IDLoc);
724 if (IDVal == ".else")
725 return ParseDirectiveElse(IDLoc);
726 if (IDVal == ".endif")
727 return ParseDirectiveEndIf(IDLoc);
728
729 // If we are in a ".if 0" block, ignore this statement.
730 if (TheCondState.Ignore) {
731 EatToEndOfStatement();
732 return false;
733 }
734
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000735 // FIXME: Recurse on local labels?
736
737 // See what kind of statement we have.
738 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000739 case AsmToken::Colon: {
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000740 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000741 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000742
743 // Diagnose attempt to use a variable as a label.
744 //
745 // FIXME: Diagnostics. Note the location of the definition as a label.
746 // FIXME: This doesn't diagnose assignment to a symbol which has been
747 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000748 MCSymbol *Sym;
749 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000750 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000751 else
752 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +0000753 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000754 return Error(IDLoc, "invalid symbol redefinition");
Chris Lattnerc69485e2009-06-24 04:31:49 +0000755
Daniel Dunbar959fd882009-08-26 22:13:22 +0000756 // Emit the label.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000757 Out.EmitLabel(Sym);
758
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000759 // Consume any end of statement token, if present, to avoid spurious
760 // AddBlankLine calls().
761 if (Lexer.is(AsmToken::EndOfStatement)) {
762 Lex();
763 if (Lexer.is(AsmToken::Eof))
764 return false;
765 }
766
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000767 return ParseStatement();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000768 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000769
Daniel Dunbar3f872332009-07-28 16:08:33 +0000770 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000771 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +0000772 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000773
Daniel Dunbare2ace502009-08-31 08:09:09 +0000774 return ParseAssignment(IDVal);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000775
776 default: // Normal instruction or directive.
777 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000778 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000779
780 // If macros are enabled, check to see if this is a macro instantiation.
781 if (MacrosEnabled)
782 if (const Macro *M = MacroMap.lookup(IDVal))
783 return HandleMacroEntry(IDVal, IDLoc, M);
784
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000785 // Otherwise, we have a normal instruction or directive.
Chris Lattner2cf5f142009-06-22 01:29:09 +0000786 if (IDVal[0] == '.') {
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000787 // Assembler features
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000788 if (IDVal == ".set")
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000789 return ParseDirectiveSet();
790
Daniel Dunbara0d14262009-06-24 23:30:00 +0000791 // Data directives
792
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000793 if (IDVal == ".ascii")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000794 return ParseDirectiveAscii(false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000795 if (IDVal == ".asciz")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000796 return ParseDirectiveAscii(true);
797
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000798 if (IDVal == ".byte")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000799 return ParseDirectiveValue(1);
Kevin Enderby9c656452009-09-10 20:51:44 +0000800 if (IDVal == ".short")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000801 return ParseDirectiveValue(2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000802 if (IDVal == ".long")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000803 return ParseDirectiveValue(4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000804 if (IDVal == ".quad")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000805 return ParseDirectiveValue(8);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000806
807 // FIXME: Target hooks for IsPow2.
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000808 if (IDVal == ".align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000809 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000810 if (IDVal == ".align32")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000811 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000812 if (IDVal == ".balign")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000813 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000814 if (IDVal == ".balignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000815 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000816 if (IDVal == ".balignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000817 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000818 if (IDVal == ".p2align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000819 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000820 if (IDVal == ".p2alignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000821 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000822 if (IDVal == ".p2alignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000823 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
824
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000825 if (IDVal == ".org")
Daniel Dunbarc238b582009-06-25 22:44:51 +0000826 return ParseDirectiveOrg();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000827
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000828 if (IDVal == ".fill")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000829 return ParseDirectiveFill();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000830 if (IDVal == ".space")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000831 return ParseDirectiveSpace();
832
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000833 // Symbol attribute directives
Daniel Dunbard0c14d62009-08-11 04:24:50 +0000834
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000835 if (IDVal == ".globl" || IDVal == ".global")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000836 return ParseDirectiveSymbolAttribute(MCSA_Global);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000837 if (IDVal == ".hidden")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000838 return ParseDirectiveSymbolAttribute(MCSA_Hidden);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000839 if (IDVal == ".indirect_symbol")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000840 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000841 if (IDVal == ".internal")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000842 return ParseDirectiveSymbolAttribute(MCSA_Internal);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000843 if (IDVal == ".lazy_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000844 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000845 if (IDVal == ".no_dead_strip")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000846 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000847 if (IDVal == ".private_extern")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000848 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000849 if (IDVal == ".protected")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000850 return ParseDirectiveSymbolAttribute(MCSA_Protected);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000851 if (IDVal == ".reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000852 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Matt Fleming924c5e52010-05-21 11:36:59 +0000853 if (IDVal == ".type")
854 return ParseDirectiveELFType();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000855 if (IDVal == ".weak")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000856 return ParseDirectiveSymbolAttribute(MCSA_Weak);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000857 if (IDVal == ".weak_definition")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000858 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000859 if (IDVal == ".weak_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000860 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000861 if (IDVal == ".weak_def_can_be_hidden")
862 return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000863
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000864 if (IDVal == ".comm")
Chris Lattner1fc3d752009-07-09 17:25:12 +0000865 return ParseDirectiveComm(/*IsLocal=*/false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000866 if (IDVal == ".lcomm")
Chris Lattner1fc3d752009-07-09 17:25:12 +0000867 return ParseDirectiveComm(/*IsLocal=*/true);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000868
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000869 if (IDVal == ".abort")
Kevin Enderby5f1f0b82009-07-13 23:15:14 +0000870 return ParseDirectiveAbort();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000871 if (IDVal == ".include")
Kevin Enderby1f049b22009-07-14 23:21:55 +0000872 return ParseDirectiveInclude();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000873
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000874 // Look up the handler in the handler table.
875 std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
876 DirectiveMap.lookup(IDVal);
877 if (Handler.first)
878 return (Handler.first->*Handler.second)(IDVal, IDLoc);
879
Kevin Enderby9c656452009-09-10 20:51:44 +0000880 // Target hook for parsing target specific directives.
881 if (!getTargetParser().ParseDirective(ID))
882 return false;
883
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000884 Warning(IDLoc, "ignoring directive for now");
Chris Lattner2cf5f142009-06-22 01:29:09 +0000885 EatToEndOfStatement();
886 return false;
887 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000888
Chris Lattnera7f13542010-05-19 23:34:33 +0000889 // Canonicalize the opcode to lower case.
890 SmallString<128> Opcode;
891 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
892 Opcode.push_back(tolower(IDVal[i]));
893
Chris Lattner98986712010-01-14 22:21:20 +0000894 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
Chris Lattnera7f13542010-05-19 23:34:33 +0000895 bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc,
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000896 ParsedOperands);
897 if (!HadError && Lexer.isNot(AsmToken::EndOfStatement))
898 HadError = TokError("unexpected token in argument list");
Chris Lattner2cf5f142009-06-22 01:29:09 +0000899
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000900 // If parsing succeeded, match the instruction.
901 if (!HadError) {
902 MCInst Inst;
903 if (!getTargetParser().MatchInstruction(ParsedOperands, Inst)) {
904 // Emit the instruction on success.
905 Out.EmitInstruction(Inst);
906 } else {
907 // Otherwise emit a diagnostic about the match failure and set the error
908 // flag.
909 //
910 // FIXME: We should give nicer diagnostics about the exact failure.
911 Error(IDLoc, "unrecognized instruction");
912 HadError = true;
913 }
914 }
Chris Lattner98986712010-01-14 22:21:20 +0000915
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000916 // If there was no error, consume the end-of-statement token. Otherwise this
917 // will be done by our caller.
918 if (!HadError)
919 Lex();
Chris Lattner98986712010-01-14 22:21:20 +0000920
921 // Free any parsed operands.
922 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
923 delete ParsedOperands[i];
924
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000925 return HadError;
Chris Lattner27aa7d22009-06-21 20:16:42 +0000926}
Chris Lattner9a023f72009-06-24 04:43:34 +0000927
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000928MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
929 const std::vector<std::vector<AsmToken> > &A)
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000930 : TheMacro(M), InstantiationLoc(IL), ExitLoc(EL)
931{
932 // Macro instantiation is lexical, unfortunately. We construct a new buffer
933 // to hold the macro body with substitutions.
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000934 SmallString<256> Buf;
935 raw_svector_ostream OS(Buf);
936
937 StringRef Body = M->Body;
938 while (!Body.empty()) {
939 // Scan for the next substitution.
940 std::size_t End = Body.size(), Pos = 0;
941 for (; Pos != End; ++Pos) {
942 // Check for a substitution or escape.
943 if (Body[Pos] != '$' || Pos + 1 == End)
944 continue;
945
946 char Next = Body[Pos + 1];
947 if (Next == '$' || Next == 'n' || isdigit(Next))
948 break;
949 }
950
951 // Add the prefix.
952 OS << Body.slice(0, Pos);
953
954 // Check if we reached the end.
955 if (Pos == End)
956 break;
957
958 switch (Body[Pos+1]) {
959 // $$ => $
960 case '$':
961 OS << '$';
962 break;
963
964 // $n => number of arguments
965 case 'n':
966 OS << A.size();
967 break;
968
969 // $[0-9] => argument
970 default: {
971 // Missing arguments are ignored.
972 unsigned Index = Body[Pos+1] - '0';
973 if (Index >= A.size())
974 break;
975
976 // Otherwise substitute with the token values, with spaces eliminated.
977 for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
978 ie = A[Index].end(); it != ie; ++it)
979 OS << it->getString();
980 break;
981 }
982 }
983
984 // Update the scan point.
985 Body = Body.substr(Pos + 2);
986 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000987
988 // We include the .endmacro in the buffer as our queue to exit the macro
989 // instantiation.
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000990 OS << ".endmacro\n";
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000991
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000992 Instantiation = MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000993}
994
995bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
996 const Macro *M) {
997 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
998 // this, although we should protect against infinite loops.
999 if (ActiveMacros.size() == 20)
1000 return TokError("macros cannot be nested more than 20 levels deep");
1001
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001002 // Parse the macro instantiation arguments.
1003 std::vector<std::vector<AsmToken> > MacroArguments;
1004 MacroArguments.push_back(std::vector<AsmToken>());
1005 unsigned ParenLevel = 0;
1006 for (;;) {
1007 if (Lexer.is(AsmToken::Eof))
1008 return TokError("unexpected token in macro instantiation");
1009 if (Lexer.is(AsmToken::EndOfStatement))
1010 break;
1011
1012 // If we aren't inside parentheses and this is a comma, start a new token
1013 // list.
1014 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1015 MacroArguments.push_back(std::vector<AsmToken>());
1016 } else if (Lexer.is(AsmToken::LParen)) {
1017 ++ParenLevel;
1018 } else if (Lexer.is(AsmToken::RParen)) {
1019 if (ParenLevel)
1020 --ParenLevel;
1021 } else {
1022 MacroArguments.back().push_back(getTok());
1023 }
1024 Lex();
1025 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001026
1027 // Create the macro instantiation object and add to the current macro
1028 // instantiation stack.
1029 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001030 getTok().getLoc(),
1031 MacroArguments);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001032 ActiveMacros.push_back(MI);
1033
1034 // Jump to the macro instantiation and prime the lexer.
1035 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1036 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1037 Lex();
1038
1039 return false;
1040}
1041
1042void AsmParser::HandleMacroExit() {
1043 // Jump to the EndOfStatement we should return to, and consume it.
1044 JumpToLoc(ActiveMacros.back()->ExitLoc);
1045 Lex();
1046
1047 // Pop the instantiation entry.
1048 delete ActiveMacros.back();
1049 ActiveMacros.pop_back();
1050}
1051
Benjamin Kramer38e59892010-07-14 22:38:02 +00001052bool AsmParser::ParseAssignment(StringRef Name) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001053 // FIXME: Use better location, we should use proper tokens.
1054 SMLoc EqualLoc = Lexer.getLoc();
1055
Daniel Dunbar821e3332009-08-31 08:09:28 +00001056 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001057 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001058 return true;
1059
Daniel Dunbar3f872332009-07-28 16:08:33 +00001060 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001061 return TokError("unexpected token in assignment");
1062
1063 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001064 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001065
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001066 // Validate that the LHS is allowed to be a variable (either it has not been
1067 // used as a symbol, or it is an absolute symbol).
1068 MCSymbol *Sym = getContext().LookupSymbol(Name);
1069 if (Sym) {
1070 // Diagnose assignment to a label.
1071 //
1072 // FIXME: Diagnostics. Note the location of the definition as a label.
1073 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001074 if (Sym->isUndefined() && !Sym->isUsedInExpr())
1075 ; // Allow redefinitions of undefined symbols only used in directives.
1076 else if (!Sym->isUndefined() && !Sym->isAbsolute())
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001077 return Error(EqualLoc, "redefinition of '" + Name + "'");
1078 else if (!Sym->isVariable())
1079 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00001080 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001081 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1082 Name + "'");
1083 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001084 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001085
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001086 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001087
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001088 Sym->setUsedInExpr(true);
1089
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001090 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00001091 Out.EmitAssignment(Sym, Value);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001092
1093 return false;
1094}
1095
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001096/// ParseIdentifier:
1097/// ::= identifier
1098/// ::= string
1099bool AsmParser::ParseIdentifier(StringRef &Res) {
1100 if (Lexer.isNot(AsmToken::Identifier) &&
1101 Lexer.isNot(AsmToken::String))
1102 return true;
1103
Sean Callanan18b83232010-01-19 21:44:56 +00001104 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001105
Sean Callanan79ed1a82010-01-19 20:22:31 +00001106 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001107
1108 return false;
1109}
1110
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001111/// ParseDirectiveSet:
1112/// ::= .set identifier ',' expression
1113bool AsmParser::ParseDirectiveSet() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001114 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001115
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001116 if (ParseIdentifier(Name))
1117 return TokError("expected identifier after '.set' directive");
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001118
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001119 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001120 return TokError("unexpected token in '.set'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001121 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001122
Daniel Dunbare2ace502009-08-31 08:09:09 +00001123 return ParseAssignment(Name);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001124}
1125
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001126bool AsmParser::ParseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001127 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001128
1129 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00001130 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001131 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1132 if (Str[i] != '\\') {
1133 Data += Str[i];
1134 continue;
1135 }
1136
1137 // Recognize escaped characters. Note that this escape semantics currently
1138 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1139 ++i;
1140 if (i == e)
1141 return TokError("unexpected backslash at end of string");
1142
1143 // Recognize octal sequences.
1144 if ((unsigned) (Str[i] - '0') <= 7) {
1145 // Consume up to three octal characters.
1146 unsigned Value = Str[i] - '0';
1147
1148 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1149 ++i;
1150 Value = Value * 8 + (Str[i] - '0');
1151
1152 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1153 ++i;
1154 Value = Value * 8 + (Str[i] - '0');
1155 }
1156 }
1157
1158 if (Value > 255)
1159 return TokError("invalid octal escape sequence (out of range)");
1160
1161 Data += (unsigned char) Value;
1162 continue;
1163 }
1164
1165 // Otherwise recognize individual escapes.
1166 switch (Str[i]) {
1167 default:
1168 // Just reject invalid escape sequences for now.
1169 return TokError("invalid escape sequence (unrecognized character)");
1170
1171 case 'b': Data += '\b'; break;
1172 case 'f': Data += '\f'; break;
1173 case 'n': Data += '\n'; break;
1174 case 'r': Data += '\r'; break;
1175 case 't': Data += '\t'; break;
1176 case '"': Data += '"'; break;
1177 case '\\': Data += '\\'; break;
1178 }
1179 }
1180
1181 return false;
1182}
1183
Daniel Dunbara0d14262009-06-24 23:30:00 +00001184/// ParseDirectiveAscii:
Daniel Dunbar475839e2009-06-29 20:37:27 +00001185/// ::= ( .ascii | .asciz ) [ "string" ( , "string" )* ]
Daniel Dunbara0d14262009-06-24 23:30:00 +00001186bool AsmParser::ParseDirectiveAscii(bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001187 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbara0d14262009-06-24 23:30:00 +00001188 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001189 if (getLexer().isNot(AsmToken::String))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001190 return TokError("expected string in '.ascii' or '.asciz' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001191
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001192 std::string Data;
1193 if (ParseEscapedString(Data))
1194 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001195
1196 getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001197 if (ZeroTerminated)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001198 getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
1199
Sean Callanan79ed1a82010-01-19 20:22:31 +00001200 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001201
1202 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001203 break;
1204
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001205 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001206 return TokError("unexpected token in '.ascii' or '.asciz' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001207 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001208 }
1209 }
1210
Sean Callanan79ed1a82010-01-19 20:22:31 +00001211 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001212 return false;
1213}
1214
1215/// ParseDirectiveValue
1216/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
1217bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001218 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbara0d14262009-06-24 23:30:00 +00001219 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001220 const MCExpr *Value;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001221 SMLoc ATTRIBUTE_UNUSED StartLoc = getLexer().getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00001222 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001223 return true;
1224
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001225 // Special case constant expressions to match code generator.
1226 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value))
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001227 getStreamer().EmitIntValue(MCE->getValue(), Size, DEFAULT_ADDRSPACE);
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001228 else
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001229 getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001230
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001231 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001232 break;
1233
1234 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001235 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001236 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001237 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001238 }
1239 }
1240
Sean Callanan79ed1a82010-01-19 20:22:31 +00001241 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001242 return false;
1243}
1244
1245/// ParseDirectiveSpace
1246/// ::= .space expression [ , expression ]
1247bool AsmParser::ParseDirectiveSpace() {
1248 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001249 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001250 return true;
1251
1252 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001253 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1254 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001255 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001256 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001257
Daniel Dunbar475839e2009-06-29 20:37:27 +00001258 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001259 return true;
1260
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001261 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001262 return TokError("unexpected token in '.space' directive");
1263 }
1264
Sean Callanan79ed1a82010-01-19 20:22:31 +00001265 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001266
1267 if (NumBytes <= 0)
1268 return TokError("invalid number of bytes in '.space' directive");
1269
1270 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001271 getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001272
1273 return false;
1274}
1275
1276/// ParseDirectiveFill
1277/// ::= .fill expression , expression , expression
1278bool AsmParser::ParseDirectiveFill() {
1279 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001280 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001281 return true;
1282
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001283 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001284 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001285 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001286
1287 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001288 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001289 return true;
1290
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001291 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001292 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001293 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001294
1295 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001296 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001297 return true;
1298
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001299 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001300 return TokError("unexpected token in '.fill' directive");
1301
Sean Callanan79ed1a82010-01-19 20:22:31 +00001302 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001303
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00001304 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
1305 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00001306
1307 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001308 getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001309
1310 return false;
1311}
Daniel Dunbarc238b582009-06-25 22:44:51 +00001312
1313/// ParseDirectiveOrg
1314/// ::= .org expression [ , expression ]
1315bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001316 const MCExpr *Offset;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001317 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001318 return true;
1319
1320 // Parse optional fill expression.
1321 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001322 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1323 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001324 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001325 Lex();
Daniel Dunbarc238b582009-06-25 22:44:51 +00001326
Daniel Dunbar475839e2009-06-29 20:37:27 +00001327 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001328 return true;
1329
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001330 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001331 return TokError("unexpected token in '.org' directive");
1332 }
1333
Sean Callanan79ed1a82010-01-19 20:22:31 +00001334 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001335
1336 // FIXME: Only limited forms of relocatable expressions are accepted here, it
1337 // has to be relative to the current section.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001338 getStreamer().EmitValueToOffset(Offset, FillExpr);
Daniel Dunbarc238b582009-06-25 22:44:51 +00001339
1340 return false;
1341}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001342
1343/// ParseDirectiveAlign
1344/// ::= {.align, ...} expression [ , expression [ , expression ]]
1345bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001346 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001347 int64_t Alignment;
1348 if (ParseAbsoluteExpression(Alignment))
1349 return true;
1350
1351 SMLoc MaxBytesLoc;
1352 bool HasFillExpr = false;
1353 int64_t FillExpr = 0;
1354 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001355 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1356 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001357 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001358 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001359
1360 // The fill expression can be omitted while specifying a maximum number of
1361 // alignment bytes, e.g:
1362 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001363 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001364 HasFillExpr = true;
1365 if (ParseAbsoluteExpression(FillExpr))
1366 return true;
1367 }
1368
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001369 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1370 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001371 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001372 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001373
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001374 MaxBytesLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001375 if (ParseAbsoluteExpression(MaxBytesToFill))
1376 return true;
1377
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001378 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001379 return TokError("unexpected token in directive");
1380 }
1381 }
1382
Sean Callanan79ed1a82010-01-19 20:22:31 +00001383 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001384
Daniel Dunbar648ac512010-05-17 21:54:30 +00001385 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001386 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001387
1388 // Compute alignment in bytes.
1389 if (IsPow2) {
1390 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001391 if (Alignment >= 32) {
1392 Error(AlignmentLoc, "invalid alignment value");
1393 Alignment = 31;
1394 }
1395
Benjamin Kramer12fd7672009-09-06 09:35:10 +00001396 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001397 }
1398
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001399 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001400 if (MaxBytesLoc.isValid()) {
1401 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001402 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
1403 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00001404 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001405 }
1406
1407 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001408 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
1409 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001410 MaxBytesToFill = 0;
1411 }
1412 }
1413
Daniel Dunbar648ac512010-05-17 21:54:30 +00001414 // Check whether we should use optimal code alignment for this .align
1415 // directive.
1416 //
1417 // FIXME: This should be using a target hook.
1418 bool UseCodeAlign = false;
1419 if (const MCSectionMachO *S = dyn_cast<MCSectionMachO>(
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001420 getStreamer().getCurrentSection()))
Chris Lattnera9558532010-07-15 21:19:31 +00001421 UseCodeAlign = S->hasAttribute(MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001422 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
1423 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001424 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001425 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00001426 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00001427 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
1428 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001429 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001430
1431 return false;
1432}
1433
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001434/// ParseDirectiveSymbolAttribute
1435/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001436bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001437 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001438 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001439 StringRef Name;
1440
1441 if (ParseIdentifier(Name))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001442 return TokError("expected identifier in directive");
1443
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001444 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001445
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001446 getStreamer().EmitSymbolAttribute(Sym, Attr);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001447
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001448 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001449 break;
1450
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001451 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001452 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001453 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001454 }
1455 }
1456
Sean Callanan79ed1a82010-01-19 20:22:31 +00001457 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001458 return false;
1459}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001460
Matt Fleming924c5e52010-05-21 11:36:59 +00001461/// ParseDirectiveELFType
1462/// ::= .type identifier , @attribute
1463bool AsmParser::ParseDirectiveELFType() {
1464 StringRef Name;
1465 if (ParseIdentifier(Name))
1466 return TokError("expected identifier in directive");
1467
1468 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001469 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Matt Fleming924c5e52010-05-21 11:36:59 +00001470
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001471 if (getLexer().isNot(AsmToken::Comma))
Matt Fleming924c5e52010-05-21 11:36:59 +00001472 return TokError("unexpected token in '.type' directive");
1473 Lex();
1474
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001475 if (getLexer().isNot(AsmToken::At))
Matt Fleming924c5e52010-05-21 11:36:59 +00001476 return TokError("expected '@' before type");
1477 Lex();
1478
1479 StringRef Type;
1480 SMLoc TypeLoc;
1481
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001482 TypeLoc = getLexer().getLoc();
Matt Fleming924c5e52010-05-21 11:36:59 +00001483 if (ParseIdentifier(Type))
1484 return TokError("expected symbol type in directive");
1485
1486 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Type)
1487 .Case("function", MCSA_ELF_TypeFunction)
1488 .Case("object", MCSA_ELF_TypeObject)
1489 .Case("tls_object", MCSA_ELF_TypeTLS)
1490 .Case("common", MCSA_ELF_TypeCommon)
1491 .Case("notype", MCSA_ELF_TypeNoType)
1492 .Default(MCSA_Invalid);
1493
1494 if (Attr == MCSA_Invalid)
1495 return Error(TypeLoc, "unsupported attribute in '.type' directive");
1496
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001497 if (getLexer().isNot(AsmToken::EndOfStatement))
Matt Fleming924c5e52010-05-21 11:36:59 +00001498 return TokError("unexpected token in '.type' directive");
1499
1500 Lex();
1501
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001502 getStreamer().EmitSymbolAttribute(Sym, Attr);
Matt Fleming924c5e52010-05-21 11:36:59 +00001503
1504 return false;
1505}
1506
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001507/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00001508/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
1509bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001510 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001511 StringRef Name;
1512 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001513 return TokError("expected identifier in directive");
1514
Daniel Dunbar76c4d762009-07-31 21:55:09 +00001515 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001516 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001517
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001518 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001519 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001520 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001521
1522 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001523 SMLoc SizeLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001524 if (ParseAbsoluteExpression(Size))
1525 return true;
1526
1527 int64_t Pow2Alignment = 0;
1528 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001529 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00001530 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001531 Pow2AlignmentLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001532 if (ParseAbsoluteExpression(Pow2Alignment))
1533 return true;
Chris Lattner258281d2010-01-19 06:22:22 +00001534
1535 // If this target takes alignments in bytes (not log) validate and convert.
1536 if (Lexer.getMAI().getAlignmentIsInBytes()) {
1537 if (!isPowerOf2_64(Pow2Alignment))
1538 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
1539 Pow2Alignment = Log2_64(Pow2Alignment);
1540 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001541 }
1542
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001543 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00001544 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001545
Sean Callanan79ed1a82010-01-19 20:22:31 +00001546 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001547
Chris Lattner1fc3d752009-07-09 17:25:12 +00001548 // NOTE: a size of zero for a .comm should create a undefined symbol
1549 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001550 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001551 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
1552 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001553
Eric Christopherc260a3e2010-05-14 01:38:54 +00001554 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001555 // may internally end up wanting an alignment in bytes.
1556 // FIXME: Diagnose overflow.
1557 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001558 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
1559 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001560
Daniel Dunbar8906ff12009-08-22 07:22:36 +00001561 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001562 return Error(IDLoc, "invalid symbol redefinition");
1563
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001564 // '.lcomm' is equivalent to '.zerofill'.
Chris Lattner1fc3d752009-07-09 17:25:12 +00001565 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001566 if (IsLocal) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001567 getStreamer().EmitZerofill(Ctx.getMachOSection(
1568 "__DATA", "__bss", MCSectionMachO::S_ZEROFILL,
1569 0, SectionKind::getBSS()),
1570 Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001571 return false;
1572 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001573
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001574 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001575 return false;
1576}
Chris Lattner9be3fee2009-07-10 22:20:30 +00001577
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001578/// ParseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001579/// ::= .abort [... message ...]
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001580bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001581 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001582 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001583
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001584 StringRef Str = ParseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001585 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001586 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001587
Sean Callanan79ed1a82010-01-19 20:22:31 +00001588 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001589
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001590 if (Str.empty())
1591 Error(Loc, ".abort detected. Assembly stopping.");
1592 else
1593 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001594 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001595
1596 return false;
1597}
Kevin Enderby71148242009-07-14 21:35:03 +00001598
Kevin Enderby1f049b22009-07-14 23:21:55 +00001599/// ParseDirectiveInclude
1600/// ::= .include "filename"
1601bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001602 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001603 return TokError("expected string in '.include' directive");
1604
Sean Callanan18b83232010-01-19 21:44:56 +00001605 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001606 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001607 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00001608
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001609 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001610 return TokError("unexpected token in '.include' directive");
1611
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001612 // Strip the quotes.
1613 Filename = Filename.substr(1, Filename.size()-2);
1614
1615 // Attempt to switch the lexer to the included file before consuming the end
1616 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00001617 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00001618 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001619 return true;
1620 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00001621
1622 return false;
1623}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001624
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001625/// ParseDirectiveIf
1626/// ::= .if expression
1627bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001628 TheCondStack.push_back(TheCondState);
1629 TheCondState.TheCond = AsmCond::IfCond;
1630 if(TheCondState.Ignore) {
1631 EatToEndOfStatement();
1632 }
1633 else {
1634 int64_t ExprValue;
1635 if (ParseAbsoluteExpression(ExprValue))
1636 return true;
1637
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001638 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001639 return TokError("unexpected token in '.if' directive");
1640
Sean Callanan79ed1a82010-01-19 20:22:31 +00001641 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001642
1643 TheCondState.CondMet = ExprValue;
1644 TheCondState.Ignore = !TheCondState.CondMet;
1645 }
1646
1647 return false;
1648}
1649
1650/// ParseDirectiveElseIf
1651/// ::= .elseif expression
1652bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
1653 if (TheCondState.TheCond != AsmCond::IfCond &&
1654 TheCondState.TheCond != AsmCond::ElseIfCond)
1655 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
1656 " an .elseif");
1657 TheCondState.TheCond = AsmCond::ElseIfCond;
1658
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001659 bool LastIgnoreState = false;
1660 if (!TheCondStack.empty())
1661 LastIgnoreState = TheCondStack.back().Ignore;
1662 if (LastIgnoreState || TheCondState.CondMet) {
1663 TheCondState.Ignore = true;
1664 EatToEndOfStatement();
1665 }
1666 else {
1667 int64_t ExprValue;
1668 if (ParseAbsoluteExpression(ExprValue))
1669 return true;
1670
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001671 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001672 return TokError("unexpected token in '.elseif' directive");
1673
Sean Callanan79ed1a82010-01-19 20:22:31 +00001674 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001675 TheCondState.CondMet = ExprValue;
1676 TheCondState.Ignore = !TheCondState.CondMet;
1677 }
1678
1679 return false;
1680}
1681
1682/// ParseDirectiveElse
1683/// ::= .else
1684bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001685 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001686 return TokError("unexpected token in '.else' directive");
1687
Sean Callanan79ed1a82010-01-19 20:22:31 +00001688 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001689
1690 if (TheCondState.TheCond != AsmCond::IfCond &&
1691 TheCondState.TheCond != AsmCond::ElseIfCond)
1692 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
1693 ".elseif");
1694 TheCondState.TheCond = AsmCond::ElseCond;
1695 bool LastIgnoreState = false;
1696 if (!TheCondStack.empty())
1697 LastIgnoreState = TheCondStack.back().Ignore;
1698 if (LastIgnoreState || TheCondState.CondMet)
1699 TheCondState.Ignore = true;
1700 else
1701 TheCondState.Ignore = false;
1702
1703 return false;
1704}
1705
1706/// ParseDirectiveEndIf
1707/// ::= .endif
1708bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001709 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001710 return TokError("unexpected token in '.endif' directive");
1711
Sean Callanan79ed1a82010-01-19 20:22:31 +00001712 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001713
1714 if ((TheCondState.TheCond == AsmCond::NoCond) ||
1715 TheCondStack.empty())
1716 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
1717 ".else");
1718 if (!TheCondStack.empty()) {
1719 TheCondState = TheCondStack.back();
1720 TheCondStack.pop_back();
1721 }
1722
1723 return false;
1724}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001725
1726/// ParseDirectiveFile
1727/// ::= .file [number] string
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001728bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001729 // FIXME: I'm not sure what this is.
1730 int64_t FileNumber = -1;
Daniel Dunbareceec052010-07-12 17:45:27 +00001731 if (getLexer().is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001732 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001733 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00001734
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001735 if (FileNumber < 1)
1736 return TokError("file number less than one");
1737 }
1738
Daniel Dunbareceec052010-07-12 17:45:27 +00001739 if (getLexer().isNot(AsmToken::String))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001740 return TokError("unexpected token in '.file' directive");
Daniel Dunbareceec052010-07-12 17:45:27 +00001741
Chris Lattnerd32e8032010-01-25 19:02:58 +00001742 StringRef Filename = getTok().getString();
1743 Filename = Filename.substr(1, Filename.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00001744 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001745
Daniel Dunbareceec052010-07-12 17:45:27 +00001746 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001747 return TokError("unexpected token in '.file' directive");
1748
Chris Lattnerd32e8032010-01-25 19:02:58 +00001749 if (FileNumber == -1)
Daniel Dunbareceec052010-07-12 17:45:27 +00001750 getStreamer().EmitFileDirective(Filename);
Chris Lattnerd32e8032010-01-25 19:02:58 +00001751 else
Daniel Dunbareceec052010-07-12 17:45:27 +00001752 getStreamer().EmitDwarfFileDirective(FileNumber, Filename);
1753
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001754 return false;
1755}
1756
1757/// ParseDirectiveLine
1758/// ::= .line [number]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001759bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00001760 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1761 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001762 return TokError("unexpected token in '.line' directive");
1763
Sean Callanan18b83232010-01-19 21:44:56 +00001764 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001765 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001766 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001767
1768 // FIXME: Do something with the .line.
1769 }
1770
Daniel Dunbareceec052010-07-12 17:45:27 +00001771 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbar839348a2010-07-01 20:20:01 +00001772 return TokError("unexpected token in '.line' directive");
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001773
1774 return false;
1775}
1776
1777
1778/// ParseDirectiveLoc
1779/// ::= .loc number [number [number]]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001780bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00001781 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001782 return TokError("unexpected token in '.loc' directive");
1783
1784 // FIXME: What are these fields?
Sean Callanan18b83232010-01-19 21:44:56 +00001785 int64_t FileNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001786 (void) FileNumber;
1787 // FIXME: Validate file.
1788
Sean Callanan79ed1a82010-01-19 20:22:31 +00001789 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00001790 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1791 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001792 return TokError("unexpected token in '.loc' directive");
1793
Sean Callanan18b83232010-01-19 21:44:56 +00001794 int64_t Param2 = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001795 (void) Param2;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001796 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001797
Daniel Dunbareceec052010-07-12 17:45:27 +00001798 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1799 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001800 return TokError("unexpected token in '.loc' directive");
1801
Sean Callanan18b83232010-01-19 21:44:56 +00001802 int64_t Param3 = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001803 (void) Param3;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001804 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001805
1806 // FIXME: Do something with the .loc.
1807 }
1808 }
1809
Daniel Dunbareceec052010-07-12 17:45:27 +00001810 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001811 return TokError("unexpected token in '.file' directive");
1812
1813 return false;
1814}
1815
Daniel Dunbar3c802de2010-07-18 18:38:02 +00001816/// ParseDirectiveMacrosOnOff
1817/// ::= .macros_on
1818/// ::= .macros_off
1819bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
1820 SMLoc DirectiveLoc) {
1821 if (getLexer().isNot(AsmToken::EndOfStatement))
1822 return Error(getLexer().getLoc(),
1823 "unexpected token in '" + Directive + "' directive");
1824
1825 getParser().MacrosEnabled = Directive == ".macros_on";
1826
1827 return false;
1828}
Daniel Dunbard1e3b442010-07-17 02:26:10 +00001829
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00001830/// ParseDirectiveMacro
1831/// ::= .macro name
1832bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
1833 SMLoc DirectiveLoc) {
1834 StringRef Name;
1835 if (getParser().ParseIdentifier(Name))
1836 return TokError("expected identifier in directive");
1837
1838 if (getLexer().isNot(AsmToken::EndOfStatement))
1839 return TokError("unexpected token in '.macro' directive");
1840
1841 // Eat the end of statement.
1842 Lex();
1843
1844 AsmToken EndToken, StartToken = getTok();
1845
1846 // Lex the macro definition.
1847 for (;;) {
1848 // Check whether we have reached the end of the file.
1849 if (getLexer().is(AsmToken::Eof))
1850 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
1851
1852 // Otherwise, check whether we have reach the .endmacro.
1853 if (getLexer().is(AsmToken::Identifier) &&
1854 (getTok().getIdentifier() == ".endm" ||
1855 getTok().getIdentifier() == ".endmacro")) {
1856 EndToken = getTok();
1857 Lex();
1858 if (getLexer().isNot(AsmToken::EndOfStatement))
1859 return TokError("unexpected token in '" + EndToken.getIdentifier() +
1860 "' directive");
1861 break;
1862 }
1863
1864 // Otherwise, scan til the end of the statement.
1865 getParser().EatToEndOfStatement();
1866 }
1867
1868 if (getParser().MacroMap.lookup(Name)) {
1869 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
1870 }
1871
1872 const char *BodyStart = StartToken.getLoc().getPointer();
1873 const char *BodyEnd = EndToken.getLoc().getPointer();
1874 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
1875 getParser().MacroMap[Name] = new Macro(Name, Body);
1876 return false;
1877}
1878
1879/// ParseDirectiveEndMacro
1880/// ::= .endm
1881/// ::= .endmacro
1882bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
1883 SMLoc DirectiveLoc) {
1884 if (getLexer().isNot(AsmToken::EndOfStatement))
1885 return TokError("unexpected token in '" + Directive + "' directive");
1886
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001887 // If we are inside a macro instantiation, terminate the current
1888 // instantiation.
1889 if (!getParser().ActiveMacros.empty()) {
1890 getParser().HandleMacroExit();
1891 return false;
1892 }
1893
1894 // Otherwise, this .endmacro is a stray entry in the file; well formed
1895 // .endmacro directives are handled during the macro definition parsing.
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00001896 return TokError("unexpected '" + Directive + "' in file, "
1897 "no current macro definition");
1898}
1899
Daniel Dunbard1e3b442010-07-17 02:26:10 +00001900/// \brief Create an MCAsmParser instance.
1901MCAsmParser *llvm::createMCAsmParser(const Target &T, SourceMgr &SM,
1902 MCContext &C, MCStreamer &Out,
1903 const MCAsmInfo &MAI) {
1904 return new AsmParser(T, SM, C, Out, MAI);
1905}