blob: 13aaeba156cf6ea7bf4265c0397d763e7a5ae4a3 [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"
Kevin Enderby7cbf73a2010-07-28 20:55:35 +000029#include "llvm/MC/MCDwarf.h"
Bill Wendling9bc0af82009-12-28 01:34:57 +000030#include "llvm/Support/Compiler.h"
Kevin Enderbyf187ac52010-06-28 21:45:58 +000031#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000032#include "llvm/Support/SourceMgr.h"
Chris Lattnerb0789ed2009-06-21 20:54:55 +000033#include "llvm/Support/raw_ostream.h"
Daniel Dunbara3af3702009-07-20 18:55:04 +000034#include "llvm/Target/TargetAsmParser.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000035#include <vector>
Chris Lattner27aa7d22009-06-21 20:16:42 +000036using namespace llvm;
37
Daniel Dunbar81ea00f2010-07-12 17:54:38 +000038namespace {
39
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000040/// \brief Helper class for tracking macro definitions.
41struct Macro {
42 StringRef Name;
43 StringRef Body;
44
45public:
46 Macro(StringRef N, StringRef B) : Name(N), Body(B) {}
47};
48
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000049/// \brief Helper class for storing information about an active macro
50/// instantiation.
51struct MacroInstantiation {
52 /// The macro being instantiated.
53 const Macro *TheMacro;
54
55 /// The macro instantiation with substitutions.
56 MemoryBuffer *Instantiation;
57
58 /// The location of the instantiation.
59 SMLoc InstantiationLoc;
60
61 /// The location where parsing should resume upon instantiation completion.
62 SMLoc ExitLoc;
63
64public:
Daniel Dunbar7a570d02010-07-18 19:00:10 +000065 MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
66 const std::vector<std::vector<AsmToken> > &A);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000067};
68
Daniel Dunbaraef87e32010-07-18 18:31:38 +000069/// \brief The concrete assembly parser instance.
70class AsmParser : public MCAsmParser {
Daniel Dunbar3c802de2010-07-18 18:38:02 +000071 friend class GenericAsmParser;
72
Daniel Dunbaraef87e32010-07-18 18:31:38 +000073 AsmParser(const AsmParser &); // DO NOT IMPLEMENT
74 void operator=(const AsmParser &); // DO NOT IMPLEMENT
75private:
76 AsmLexer Lexer;
77 MCContext &Ctx;
78 MCStreamer &Out;
79 SourceMgr &SrcMgr;
80 MCAsmParserExtension *GenericParser;
81 MCAsmParserExtension *PlatformParser;
Daniel Dunbar3c802de2010-07-18 18:38:02 +000082
Daniel Dunbaraef87e32010-07-18 18:31:38 +000083 /// This is the current buffer index we're lexing from as managed by the
84 /// SourceMgr object.
85 int CurBuffer;
86
87 AsmCond TheCondState;
88 std::vector<AsmCond> TheCondStack;
89
90 /// DirectiveMap - This is a table handlers for directives. Each handler is
91 /// invoked after the directive identifier is read and is responsible for
92 /// parsing and validating the rest of the directive. The handler is passed
93 /// in the directive name and the location of the directive keyword.
94 StringMap<std::pair<MCAsmParserExtension*, DirectiveHandler> > DirectiveMap;
Daniel Dunbar3c802de2010-07-18 18:38:02 +000095
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000096 /// MacroMap - Map of currently defined macros.
97 StringMap<Macro*> MacroMap;
98
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000099 /// ActiveMacros - Stack of active macro instantiations.
100 std::vector<MacroInstantiation*> ActiveMacros;
101
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000102 /// Boolean tracking whether macro substitution is enabled.
103 unsigned MacrosEnabled : 1;
104
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000105 /// Flag tracking whether any errors have been encountered.
106 unsigned HadError : 1;
107
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000108public:
109 AsmParser(const Target &T, SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
110 const MCAsmInfo &MAI);
111 ~AsmParser();
112
113 virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
114
115 void AddDirectiveHandler(MCAsmParserExtension *Object,
116 StringRef Directive,
117 DirectiveHandler Handler) {
118 DirectiveMap[Directive] = std::make_pair(Object, Handler);
119 }
120
121public:
122 /// @name MCAsmParser Interface
123 /// {
124
125 virtual SourceMgr &getSourceManager() { return SrcMgr; }
126 virtual MCAsmLexer &getLexer() { return Lexer; }
127 virtual MCContext &getContext() { return Ctx; }
128 virtual MCStreamer &getStreamer() { return Out; }
129
130 virtual void Warning(SMLoc L, const Twine &Meg);
131 virtual bool Error(SMLoc L, const Twine &Msg);
132
133 const AsmToken &Lex();
134
135 bool ParseExpression(const MCExpr *&Res);
136 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
137 virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
138 virtual bool ParseAbsoluteExpression(int64_t &Res);
139
140 /// }
141
142private:
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000143 void CheckForValidSection();
144
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000145 bool ParseStatement();
146
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000147 bool HandleMacroEntry(StringRef Name, SMLoc NameLoc, const Macro *M);
148 void HandleMacroExit();
149
150 void PrintMacroInstantiations();
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000151 void PrintMessage(SMLoc Loc, const std::string &Msg, const char *Type) const;
152
153 /// EnterIncludeFile - Enter the specified file. This returns true on failure.
154 bool EnterIncludeFile(const std::string &Filename);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000155
156 /// \brief Reset the current lexer position to that given by \arg Loc. The
157 /// current token is not set; clients should ensure Lex() is called
158 /// subsequently.
159 void JumpToLoc(SMLoc Loc);
160
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000161 void EatToEndOfStatement();
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000162
163 /// \brief Parse up to the end of statement and a return the contents from the
164 /// current token until the end of the statement; the current token on exit
165 /// will be either the EndOfStatement or EOF.
166 StringRef ParseStringToEndOfStatement();
167
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000168 bool ParseAssignment(StringRef Name);
169
170 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
171 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
172 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
173
174 /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
175 /// and set \arg Res to the identifier contents.
176 bool ParseIdentifier(StringRef &Res);
177
178 // Directive Parsing.
179 bool ParseDirectiveAscii(bool ZeroTerminated); // ".ascii", ".asciiz"
180 bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
181 bool ParseDirectiveFill(); // ".fill"
182 bool ParseDirectiveSpace(); // ".space"
183 bool ParseDirectiveSet(); // ".set"
184 bool ParseDirectiveOrg(); // ".org"
185 // ".align{,32}", ".p2align{,w,l}"
186 bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
187
188 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
189 /// accepts a single symbol (which should be a label or an external).
190 bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
191 bool ParseDirectiveELFType(); // ELF specific ".type"
192
193 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
194
195 bool ParseDirectiveAbort(); // ".abort"
196 bool ParseDirectiveInclude(); // ".include"
197
198 bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
199 bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
200 bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
201 bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
202
203 /// ParseEscapedString - Parse the current token as a string which may include
204 /// escaped characters and return the string contents.
205 bool ParseEscapedString(std::string &Data);
206};
207
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000208/// \brief Generic implementations of directive handling, etc. which is shared
209/// (or the default, at least) for all assembler parser.
210class GenericAsmParser : public MCAsmParserExtension {
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000211 template<bool (GenericAsmParser::*Handler)(StringRef, SMLoc)>
212 void AddDirectiveHandler(StringRef Directive) {
213 getParser().AddDirectiveHandler(this, Directive,
214 HandleDirective<GenericAsmParser, Handler>);
215 }
216
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000217public:
218 GenericAsmParser() {}
219
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000220 AsmParser &getParser() {
221 return (AsmParser&) this->MCAsmParserExtension::getParser();
222 }
223
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000224 virtual void Initialize(MCAsmParser &Parser) {
225 // Call the base implementation.
226 this->MCAsmParserExtension::Initialize(Parser);
227
228 // Debugging directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000229 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveFile>(".file");
230 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLine>(".line");
231 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLoc>(".loc");
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000232
233 // Macro directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000234 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
235 ".macros_on");
236 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
237 ".macros_off");
238 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacro>(".macro");
239 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endm");
240 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endmacro");
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000241 }
242
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000243 bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
244 bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
245 bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000246
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000247 bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000248 bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
249 bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000250};
251
252}
253
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000254namespace llvm {
255
256extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000257extern MCAsmParserExtension *createELFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000258
259}
260
Chris Lattneraaec2052010-01-19 19:46:13 +0000261enum { DEFAULT_ADDRSPACE = 0 };
262
Daniel Dunbar9186fa62010-07-01 20:41:56 +0000263AsmParser::AsmParser(const Target &T, SourceMgr &_SM, MCContext &_Ctx,
264 MCStreamer &_Out, const MCAsmInfo &_MAI)
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000265 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM),
Daniel Dunbare4749702010-07-12 18:12:02 +0000266 GenericParser(new GenericAsmParser), PlatformParser(0),
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000267 CurBuffer(0), MacrosEnabled(true) {
Sean Callananfd0b0282010-01-21 00:19:58 +0000268 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000269
270 // Initialize the generic parser.
271 GenericParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000272
273 // Initialize the platform / file format parser.
274 //
275 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
276 // created.
277 if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000278 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000279 PlatformParser->Initialize(*this);
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000280 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000281 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000282 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000283 }
Chris Lattnerebb89b42009-09-27 21:16:52 +0000284}
285
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000286AsmParser::~AsmParser() {
Daniel Dunbar56491302010-07-29 01:51:55 +0000287 assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
288
289 // Destroy any macros.
290 for (StringMap<Macro*>::iterator it = MacroMap.begin(),
291 ie = MacroMap.end(); it != ie; ++it)
292 delete it->getValue();
293
Daniel Dunbare4749702010-07-12 18:12:02 +0000294 delete PlatformParser;
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000295 delete GenericParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000296}
297
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000298void AsmParser::PrintMacroInstantiations() {
299 // Print the active macro instantiation stack.
300 for (std::vector<MacroInstantiation*>::const_reverse_iterator
301 it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
302 PrintMessage((*it)->InstantiationLoc, "while in macro instantiation",
303 "note");
304}
305
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000306void AsmParser::Warning(SMLoc L, const Twine &Msg) {
Sean Callananbf2013e2010-01-20 23:19:55 +0000307 PrintMessage(L, Msg.str(), "warning");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000308 PrintMacroInstantiations();
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000309}
310
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000311bool AsmParser::Error(SMLoc L, const Twine &Msg) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000312 HadError = true;
Sean Callananbf2013e2010-01-20 23:19:55 +0000313 PrintMessage(L, Msg.str(), "error");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000314 PrintMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000315 return true;
316}
317
Sean Callananbf2013e2010-01-20 23:19:55 +0000318void AsmParser::PrintMessage(SMLoc Loc, const std::string &Msg,
319 const char *Type) const {
320 SrcMgr.PrintMessage(Loc, Msg, Type);
321}
Sean Callananfd0b0282010-01-21 00:19:58 +0000322
323bool AsmParser::EnterIncludeFile(const std::string &Filename) {
324 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc());
325 if (NewBuf == -1)
326 return true;
Sean Callanan79036e42010-01-20 22:18:24 +0000327
Sean Callananfd0b0282010-01-21 00:19:58 +0000328 CurBuffer = NewBuf;
329
330 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
331
332 return false;
333}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000334
335void AsmParser::JumpToLoc(SMLoc Loc) {
336 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
337 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
338}
339
Sean Callananfd0b0282010-01-21 00:19:58 +0000340const AsmToken &AsmParser::Lex() {
341 const AsmToken *tok = &Lexer.Lex();
342
343 if (tok->is(AsmToken::Eof)) {
344 // If this is the end of an included file, pop the parent file off the
345 // include stack.
346 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
347 if (ParentIncludeLoc != SMLoc()) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000348 JumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000349 tok = &Lexer.Lex();
350 }
351 }
352
353 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000354 Error(Lexer.getErrLoc(), Lexer.getErr());
Sean Callanan79036e42010-01-20 22:18:24 +0000355
Sean Callananfd0b0282010-01-21 00:19:58 +0000356 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000357}
358
Chris Lattner79180e22010-04-05 23:15:42 +0000359bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000360 // Create the initial section, if requested.
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000361 //
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000362 // FIXME: Target hook & command line option for initial section.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000363 if (!NoInitialTextSection)
Chris Lattnerf0559e42010-04-08 20:30:37 +0000364 Out.SwitchSection(Ctx.getMachOSection("__TEXT", "__text",
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000365 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
366 0, SectionKind::getText()));
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000367
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000368 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000369 Lex();
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000370
371 HadError = false;
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000372 AsmCond StartingCondState = TheCondState;
373
Chris Lattnerb717fb02009-07-02 21:53:43 +0000374 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000375 while (Lexer.isNot(AsmToken::Eof)) {
Chris Lattnerb717fb02009-07-02 21:53:43 +0000376 if (!ParseStatement()) continue;
377
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000378 // We had an error, validate that one was emitted and recover by skipping to
379 // the next line.
380 assert(HadError && "Parse statement returned an error, but none emitted!");
Chris Lattnerb717fb02009-07-02 21:53:43 +0000381 EatToEndOfStatement();
382 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000383
384 if (TheCondState.TheCond != StartingCondState.TheCond ||
385 TheCondState.Ignore != StartingCondState.Ignore)
386 return TokError("unmatched .ifs or .elses");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000387
388 // Check to see there are no empty DwarfFile slots.
389 const std::vector<MCDwarfFile *> &MCDwarfFiles =
390 getContext().getMCDwarfFiles();
391 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000392 if (!MCDwarfFiles[i])
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000393 TokError("unassigned file number: " + Twine(i) + " for .file directives");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000394 }
Chris Lattnerb717fb02009-07-02 21:53:43 +0000395
Chris Lattner79180e22010-04-05 23:15:42 +0000396 // Finalize the output stream if there are no errors and if the client wants
397 // us to.
398 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000399 Out.Finish();
400
Chris Lattnerb717fb02009-07-02 21:53:43 +0000401 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000402}
403
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000404void AsmParser::CheckForValidSection() {
405 if (!getStreamer().getCurrentSection()) {
406 TokError("expected section directive before assembly directive");
407 Out.SwitchSection(Ctx.getMachOSection(
408 "__TEXT", "__text",
409 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
410 0, SectionKind::getText()));
411 }
412}
413
Chris Lattner2cf5f142009-06-22 01:29:09 +0000414/// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
415void AsmParser::EatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000416 while (Lexer.isNot(AsmToken::EndOfStatement) &&
417 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000418 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000419
420 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000421 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000422 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000423}
424
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000425StringRef AsmParser::ParseStringToEndOfStatement() {
426 const char *Start = getTok().getLoc().getPointer();
427
428 while (Lexer.isNot(AsmToken::EndOfStatement) &&
429 Lexer.isNot(AsmToken::Eof))
430 Lex();
431
432 const char *End = getTok().getLoc().getPointer();
433 return StringRef(Start, End - Start);
434}
Chris Lattnerc4193832009-06-22 05:51:26 +0000435
Chris Lattner74ec1a32009-06-22 06:32:03 +0000436/// ParseParenExpr - Parse a paren expression and return it.
437/// NOTE: This assumes the leading '(' has already been consumed.
438///
439/// parenexpr ::= expr)
440///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000441bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner74ec1a32009-06-22 06:32:03 +0000442 if (ParseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000443 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000444 return TokError("expected ')' in parentheses expression");
Chris Lattnerb4307b32010-01-15 19:28:38 +0000445 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000446 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000447 return false;
448}
Chris Lattnerc4193832009-06-22 05:51:26 +0000449
Chris Lattner74ec1a32009-06-22 06:32:03 +0000450/// ParsePrimaryExpr - Parse a primary expression and return it.
451/// primaryexpr ::= (parenexpr
452/// primaryexpr ::= symbol
453/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000454/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000455/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000456bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000457 switch (Lexer.getKind()) {
458 default:
459 return TokError("unknown token in expression");
Daniel Dunbar3f872332009-07-28 16:08:33 +0000460 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000461 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000462 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000463 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000464 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000465 return false;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000466 case AsmToken::Dollar:
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000467 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000468 case AsmToken::Identifier: {
Daniel Dunbare17edff2010-08-24 19:13:42 +0000469 EndLoc = Lexer.getLoc();
470
471 StringRef Identifier;
472 if (ParseIdentifier(Identifier))
473 return false;
474
Daniel Dunbarfffff912009-10-16 01:34:54 +0000475 // This is a symbol reference.
Daniel Dunbare17edff2010-08-24 19:13:42 +0000476 std::pair<StringRef, StringRef> Split = Identifier.split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000477 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000478
Daniel Dunbar525a3a62010-05-17 17:46:23 +0000479 // Mark the symbol as used in an expression.
480 Sym->setUsedInExpr(true);
481
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000482 // Lookup the symbol variant if used.
483 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000484 if (Split.first.size() != Identifier.size())
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000485 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
486
Daniel Dunbarfffff912009-10-16 01:34:54 +0000487 // If this is an absolute variable reference, substitute it now to preserve
488 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000489 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000490 if (Variant)
491 return Error(EndLoc, "unexpected modified on variable reference");
492
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000493 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000494 return false;
495 }
496
497 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000498 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000499 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000500 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000501 case AsmToken::Integer: {
502 SMLoc Loc = getTok().getLoc();
503 int64_t IntVal = getTok().getIntVal();
504 Res = MCConstantExpr::Create(IntVal, getContext());
Chris Lattnerb4307b32010-01-15 19:28:38 +0000505 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000506 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000507 // Look for 'b' or 'f' following an Integer as a directional label
508 if (Lexer.getKind() == AsmToken::Identifier) {
509 StringRef IDVal = getTok().getString();
510 if (IDVal == "f" || IDVal == "b"){
511 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
512 IDVal == "f" ? 1 : 0);
513 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
514 getContext());
515 if(IDVal == "b" && Sym->isUndefined())
516 return Error(Loc, "invalid reference to undefined symbol");
517 EndLoc = Lexer.getLoc();
518 Lex(); // Eat identifier.
519 }
520 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000521 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000522 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000523 case AsmToken::Dot: {
524 // This is a '.' reference, which references the current PC. Emit a
525 // temporary label to the streamer and refer to it.
526 MCSymbol *Sym = Ctx.CreateTempSymbol();
527 Out.EmitLabel(Sym);
528 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
529 EndLoc = Lexer.getLoc();
530 Lex(); // Eat identifier.
531 return false;
532 }
533
Daniel Dunbar3f872332009-07-28 16:08:33 +0000534 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000535 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000536 return ParseParenExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000537 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000538 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000539 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000540 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000541 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000542 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000543 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000544 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000545 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000546 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000547 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000548 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000549 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000550 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000551 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000552 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000553 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000554 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000555 }
556}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000557
Chris Lattnerb4307b32010-01-15 19:28:38 +0000558bool AsmParser::ParseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000559 SMLoc EndLoc;
560 return ParseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000561}
562
Chris Lattner74ec1a32009-06-22 06:32:03 +0000563/// ParseExpression - Parse an expression and return it.
564///
565/// expr ::= expr +,- expr -> lowest.
566/// expr ::= expr |,^,&,! expr -> middle.
567/// expr ::= expr *,/,%,<<,>> expr -> highest.
568/// expr ::= primaryexpr
569///
Chris Lattner54482b42010-01-15 19:39:23 +0000570bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000571 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000572 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000573 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
574 return true;
575
576 // Try to constant fold it up front, if possible.
577 int64_t Value;
578 if (Res->EvaluateAsAbsolute(Value))
579 Res = MCConstantExpr::Create(Value, getContext());
580
581 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000582}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000583
Chris Lattnerb4307b32010-01-15 19:28:38 +0000584bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000585 Res = 0;
586 return ParseParenExpr(Res, EndLoc) ||
587 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000588}
589
Daniel Dunbar475839e2009-06-29 20:37:27 +0000590bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000591 const MCExpr *Expr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000592
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000593 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar475839e2009-06-29 20:37:27 +0000594 if (ParseExpression(Expr))
595 return true;
596
Daniel Dunbare00b0112009-10-16 01:57:52 +0000597 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000598 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +0000599
600 return false;
601}
602
Daniel Dunbar3f872332009-07-28 16:08:33 +0000603static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000604 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000605 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000606 default:
607 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000608
609 // Lowest Precedence: &&, ||
Daniel Dunbar3f872332009-07-28 16:08:33 +0000610 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000611 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000612 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000613 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000614 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000615 return 1;
616
617 // Low Precedence: +, -, ==, !=, <>, <, <=, >, >=
Daniel Dunbar3f872332009-07-28 16:08:33 +0000618 case AsmToken::Plus:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000619 Kind = MCBinaryExpr::Add;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000620 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000621 case AsmToken::Minus:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000622 Kind = MCBinaryExpr::Sub;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000623 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000624 case AsmToken::EqualEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000625 Kind = MCBinaryExpr::EQ;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000626 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000627 case AsmToken::ExclaimEqual:
628 case AsmToken::LessGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000629 Kind = MCBinaryExpr::NE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000630 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000631 case AsmToken::Less:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000632 Kind = MCBinaryExpr::LT;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000633 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000634 case AsmToken::LessEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000635 Kind = MCBinaryExpr::LTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000636 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000637 case AsmToken::Greater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000638 Kind = MCBinaryExpr::GT;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000639 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000640 case AsmToken::GreaterEqual:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000641 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000642 return 2;
643
644 // Intermediate Precedence: |, &, ^
645 //
646 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +0000647 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000648 Kind = MCBinaryExpr::Or;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000649 return 3;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000650 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000651 Kind = MCBinaryExpr::Xor;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000652 return 3;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000653 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000654 Kind = MCBinaryExpr::And;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000655 return 3;
656
657 // Highest Precedence: *, /, %, <<, >>
Daniel Dunbar3f872332009-07-28 16:08:33 +0000658 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000659 Kind = MCBinaryExpr::Mul;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000660 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000661 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000662 Kind = MCBinaryExpr::Div;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000663 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000664 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000665 Kind = MCBinaryExpr::Mod;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000666 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000667 case AsmToken::LessLess:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000668 Kind = MCBinaryExpr::Shl;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000669 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000670 case AsmToken::GreaterGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000671 Kind = MCBinaryExpr::Shr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000672 return 4;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000673 }
674}
675
676
677/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
678/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000679bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
680 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000681 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000682 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000683 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000684
685 // If the next token is lower precedence than we are allowed to eat, return
686 // successfully with what we ate already.
687 if (TokPrec < Precedence)
688 return false;
689
Sean Callanan79ed1a82010-01-19 20:22:31 +0000690 Lex();
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000691
692 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000693 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000694 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000695
696 // If BinOp binds less tightly with RHS than the operator after RHS, let
697 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000698 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000699 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000700 if (TokPrec < NextTokPrec) {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000701 if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000702 }
703
Daniel Dunbar475839e2009-06-29 20:37:27 +0000704 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000705 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000706 }
707}
708
Chris Lattnerc4193832009-06-22 05:51:26 +0000709
710
711
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000712/// ParseStatement:
713/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +0000714/// ::= Label* Directive ...Operands... EndOfStatement
715/// ::= Label* Identifier OperandList* EndOfStatement
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000716bool AsmParser::ParseStatement() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000717 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000718 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000719 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000720 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000721 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000722
723 // Statements always start with an identifier.
Sean Callanan18b83232010-01-19 21:44:56 +0000724 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +0000725 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000726 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000727 int64_t LocalLabelVal = -1;
728 // GUESS allow an integer followed by a ':' as a directional local label
729 if (Lexer.is(AsmToken::Integer)) {
730 LocalLabelVal = getTok().getIntVal();
731 if (LocalLabelVal < 0) {
732 if (!TheCondState.Ignore)
733 return TokError("unexpected token at start of statement");
734 IDVal = "";
735 }
736 else {
737 IDVal = getTok().getString();
738 Lex(); // Consume the integer token to be used as an identifier token.
739 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +0000740 if (!TheCondState.Ignore)
741 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000742 }
743 }
744 }
745 else if (ParseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +0000746 if (!TheCondState.Ignore)
747 return TokError("unexpected token at start of statement");
748 IDVal = "";
749 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000750
Chris Lattner7834fac2010-04-17 18:14:27 +0000751 // Handle conditional assembly here before checking for skipping. We
752 // have to do this so that .endif isn't skipped in a ".if 0" block for
753 // example.
754 if (IDVal == ".if")
755 return ParseDirectiveIf(IDLoc);
756 if (IDVal == ".elseif")
757 return ParseDirectiveElseIf(IDLoc);
758 if (IDVal == ".else")
759 return ParseDirectiveElse(IDLoc);
760 if (IDVal == ".endif")
761 return ParseDirectiveEndIf(IDLoc);
762
763 // If we are in a ".if 0" block, ignore this statement.
764 if (TheCondState.Ignore) {
765 EatToEndOfStatement();
766 return false;
767 }
768
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000769 // FIXME: Recurse on local labels?
770
771 // See what kind of statement we have.
772 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000773 case AsmToken::Colon: {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000774 CheckForValidSection();
775
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000776 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000777 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000778
779 // Diagnose attempt to use a variable as a label.
780 //
781 // FIXME: Diagnostics. Note the location of the definition as a label.
782 // FIXME: This doesn't diagnose assignment to a symbol which has been
783 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000784 MCSymbol *Sym;
785 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000786 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000787 else
788 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +0000789 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000790 return Error(IDLoc, "invalid symbol redefinition");
Chris Lattnerc69485e2009-06-24 04:31:49 +0000791
Daniel Dunbar959fd882009-08-26 22:13:22 +0000792 // Emit the label.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000793 Out.EmitLabel(Sym);
794
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000795 // Consume any end of statement token, if present, to avoid spurious
796 // AddBlankLine calls().
797 if (Lexer.is(AsmToken::EndOfStatement)) {
798 Lex();
799 if (Lexer.is(AsmToken::Eof))
800 return false;
801 }
802
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000803 return ParseStatement();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000804 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000805
Daniel Dunbar3f872332009-07-28 16:08:33 +0000806 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000807 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +0000808 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000809
Daniel Dunbare2ace502009-08-31 08:09:09 +0000810 return ParseAssignment(IDVal);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000811
812 default: // Normal instruction or directive.
813 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000814 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000815
816 // If macros are enabled, check to see if this is a macro instantiation.
817 if (MacrosEnabled)
818 if (const Macro *M = MacroMap.lookup(IDVal))
819 return HandleMacroEntry(IDVal, IDLoc, M);
820
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000821 // Otherwise, we have a normal instruction or directive.
Chris Lattner2cf5f142009-06-22 01:29:09 +0000822 if (IDVal[0] == '.') {
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000823 // Assembler features
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000824 if (IDVal == ".set")
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000825 return ParseDirectiveSet();
826
Daniel Dunbara0d14262009-06-24 23:30:00 +0000827 // Data directives
828
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000829 if (IDVal == ".ascii")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000830 return ParseDirectiveAscii(false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000831 if (IDVal == ".asciz")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000832 return ParseDirectiveAscii(true);
833
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000834 if (IDVal == ".byte")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000835 return ParseDirectiveValue(1);
Kevin Enderby9c656452009-09-10 20:51:44 +0000836 if (IDVal == ".short")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000837 return ParseDirectiveValue(2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000838 if (IDVal == ".long")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000839 return ParseDirectiveValue(4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000840 if (IDVal == ".quad")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000841 return ParseDirectiveValue(8);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000842
Eli Friedman5d68ec22010-07-19 04:17:25 +0000843 if (IDVal == ".align") {
844 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
845 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
846 }
847 if (IDVal == ".align32") {
848 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
849 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
850 }
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000851 if (IDVal == ".balign")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000852 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000853 if (IDVal == ".balignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000854 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000855 if (IDVal == ".balignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000856 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000857 if (IDVal == ".p2align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000858 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000859 if (IDVal == ".p2alignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000860 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000861 if (IDVal == ".p2alignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000862 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
863
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000864 if (IDVal == ".org")
Daniel Dunbarc238b582009-06-25 22:44:51 +0000865 return ParseDirectiveOrg();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000866
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000867 if (IDVal == ".fill")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000868 return ParseDirectiveFill();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000869 if (IDVal == ".space")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000870 return ParseDirectiveSpace();
871
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000872 // Symbol attribute directives
Daniel Dunbard0c14d62009-08-11 04:24:50 +0000873
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000874 if (IDVal == ".globl" || IDVal == ".global")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000875 return ParseDirectiveSymbolAttribute(MCSA_Global);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000876 if (IDVal == ".hidden")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000877 return ParseDirectiveSymbolAttribute(MCSA_Hidden);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000878 if (IDVal == ".indirect_symbol")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000879 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000880 if (IDVal == ".internal")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000881 return ParseDirectiveSymbolAttribute(MCSA_Internal);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000882 if (IDVal == ".lazy_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000883 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000884 if (IDVal == ".no_dead_strip")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000885 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000886 if (IDVal == ".private_extern")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000887 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000888 if (IDVal == ".protected")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000889 return ParseDirectiveSymbolAttribute(MCSA_Protected);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000890 if (IDVal == ".reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000891 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Matt Fleming924c5e52010-05-21 11:36:59 +0000892 if (IDVal == ".type")
893 return ParseDirectiveELFType();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000894 if (IDVal == ".weak")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000895 return ParseDirectiveSymbolAttribute(MCSA_Weak);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000896 if (IDVal == ".weak_definition")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000897 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000898 if (IDVal == ".weak_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000899 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000900 if (IDVal == ".weak_def_can_be_hidden")
901 return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000902
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000903 if (IDVal == ".comm")
Chris Lattner1fc3d752009-07-09 17:25:12 +0000904 return ParseDirectiveComm(/*IsLocal=*/false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000905 if (IDVal == ".lcomm")
Chris Lattner1fc3d752009-07-09 17:25:12 +0000906 return ParseDirectiveComm(/*IsLocal=*/true);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000907
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000908 if (IDVal == ".abort")
Kevin Enderby5f1f0b82009-07-13 23:15:14 +0000909 return ParseDirectiveAbort();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000910 if (IDVal == ".include")
Kevin Enderby1f049b22009-07-14 23:21:55 +0000911 return ParseDirectiveInclude();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000912
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000913 // Look up the handler in the handler table.
914 std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
915 DirectiveMap.lookup(IDVal);
916 if (Handler.first)
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000917 return (*Handler.second)(Handler.first, IDVal, IDLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000918
Kevin Enderby9c656452009-09-10 20:51:44 +0000919 // Target hook for parsing target specific directives.
920 if (!getTargetParser().ParseDirective(ID))
921 return false;
922
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000923 Warning(IDLoc, "ignoring directive for now");
Chris Lattner2cf5f142009-06-22 01:29:09 +0000924 EatToEndOfStatement();
925 return false;
926 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000927
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000928 CheckForValidSection();
929
Chris Lattnera7f13542010-05-19 23:34:33 +0000930 // Canonicalize the opcode to lower case.
931 SmallString<128> Opcode;
932 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
933 Opcode.push_back(tolower(IDVal[i]));
934
Chris Lattner98986712010-01-14 22:21:20 +0000935 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
Chris Lattnera7f13542010-05-19 23:34:33 +0000936 bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc,
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000937 ParsedOperands);
Chris Lattner2cf5f142009-06-22 01:29:09 +0000938
Daniel Dunbar3c14ca42010-08-11 06:37:09 +0000939 // Dump the parsed representation, if requested.
940 if (getShowParsedOperands()) {
941 SmallString<256> Str;
942 raw_svector_ostream OS(Str);
943 OS << "parsed instruction: [";
944 for (unsigned i = 0; i != ParsedOperands.size(); ++i) {
945 if (i != 0)
946 OS << ", ";
947 ParsedOperands[i]->dump(OS);
948 }
949 OS << "]";
950
951 PrintMessage(IDLoc, OS.str(), "note");
952 }
953
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000954 // If parsing succeeded, match the instruction.
955 if (!HadError) {
956 MCInst Inst;
Daniel Dunbarf1e29d42010-08-12 00:55:38 +0000957 if (!getTargetParser().MatchInstruction(IDLoc, ParsedOperands, Inst)) {
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000958 // Emit the instruction on success.
959 Out.EmitInstruction(Inst);
Daniel Dunbarf1e29d42010-08-12 00:55:38 +0000960 } else
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000961 HadError = true;
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000962 }
Chris Lattner98986712010-01-14 22:21:20 +0000963
Chris Lattner98986712010-01-14 22:21:20 +0000964 // Free any parsed operands.
965 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
966 delete ParsedOperands[i];
967
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +0000968 return HadError;
Chris Lattner27aa7d22009-06-21 20:16:42 +0000969}
Chris Lattner9a023f72009-06-24 04:43:34 +0000970
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000971MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
972 const std::vector<std::vector<AsmToken> > &A)
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000973 : TheMacro(M), InstantiationLoc(IL), ExitLoc(EL)
974{
975 // Macro instantiation is lexical, unfortunately. We construct a new buffer
976 // to hold the macro body with substitutions.
Daniel Dunbar7a570d02010-07-18 19:00:10 +0000977 SmallString<256> Buf;
978 raw_svector_ostream OS(Buf);
979
980 StringRef Body = M->Body;
981 while (!Body.empty()) {
982 // Scan for the next substitution.
983 std::size_t End = Body.size(), Pos = 0;
984 for (; Pos != End; ++Pos) {
985 // Check for a substitution or escape.
986 if (Body[Pos] != '$' || Pos + 1 == End)
987 continue;
988
989 char Next = Body[Pos + 1];
990 if (Next == '$' || Next == 'n' || isdigit(Next))
991 break;
992 }
993
994 // Add the prefix.
995 OS << Body.slice(0, Pos);
996
997 // Check if we reached the end.
998 if (Pos == End)
999 break;
1000
1001 switch (Body[Pos+1]) {
1002 // $$ => $
1003 case '$':
1004 OS << '$';
1005 break;
1006
1007 // $n => number of arguments
1008 case 'n':
1009 OS << A.size();
1010 break;
1011
1012 // $[0-9] => argument
1013 default: {
1014 // Missing arguments are ignored.
1015 unsigned Index = Body[Pos+1] - '0';
1016 if (Index >= A.size())
1017 break;
1018
1019 // Otherwise substitute with the token values, with spaces eliminated.
1020 for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
1021 ie = A[Index].end(); it != ie; ++it)
1022 OS << it->getString();
1023 break;
1024 }
1025 }
1026
1027 // Update the scan point.
1028 Body = Body.substr(Pos + 2);
1029 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001030
1031 // We include the .endmacro in the buffer as our queue to exit the macro
1032 // instantiation.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001033 OS << ".endmacro\n";
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001034
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001035 Instantiation = MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001036}
1037
1038bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
1039 const Macro *M) {
1040 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1041 // this, although we should protect against infinite loops.
1042 if (ActiveMacros.size() == 20)
1043 return TokError("macros cannot be nested more than 20 levels deep");
1044
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001045 // Parse the macro instantiation arguments.
1046 std::vector<std::vector<AsmToken> > MacroArguments;
1047 MacroArguments.push_back(std::vector<AsmToken>());
1048 unsigned ParenLevel = 0;
1049 for (;;) {
1050 if (Lexer.is(AsmToken::Eof))
1051 return TokError("unexpected token in macro instantiation");
1052 if (Lexer.is(AsmToken::EndOfStatement))
1053 break;
1054
1055 // If we aren't inside parentheses and this is a comma, start a new token
1056 // list.
1057 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1058 MacroArguments.push_back(std::vector<AsmToken>());
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001059 } else {
Daniel Dunbare25c6b92010-08-10 17:38:52 +00001060 // Adjust the current parentheses level.
1061 if (Lexer.is(AsmToken::LParen))
1062 ++ParenLevel;
1063 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1064 --ParenLevel;
1065
1066 // Append the token to the current argument list.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001067 MacroArguments.back().push_back(getTok());
1068 }
1069 Lex();
1070 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001071
1072 // Create the macro instantiation object and add to the current macro
1073 // instantiation stack.
1074 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001075 getTok().getLoc(),
1076 MacroArguments);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001077 ActiveMacros.push_back(MI);
1078
1079 // Jump to the macro instantiation and prime the lexer.
1080 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1081 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1082 Lex();
1083
1084 return false;
1085}
1086
1087void AsmParser::HandleMacroExit() {
1088 // Jump to the EndOfStatement we should return to, and consume it.
1089 JumpToLoc(ActiveMacros.back()->ExitLoc);
1090 Lex();
1091
1092 // Pop the instantiation entry.
1093 delete ActiveMacros.back();
1094 ActiveMacros.pop_back();
1095}
1096
Benjamin Kramer38e59892010-07-14 22:38:02 +00001097bool AsmParser::ParseAssignment(StringRef Name) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001098 // FIXME: Use better location, we should use proper tokens.
1099 SMLoc EqualLoc = Lexer.getLoc();
1100
Daniel Dunbar821e3332009-08-31 08:09:28 +00001101 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001102 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001103 return true;
1104
Daniel Dunbar3f872332009-07-28 16:08:33 +00001105 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001106 return TokError("unexpected token in assignment");
1107
1108 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001109 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001110
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001111 // Validate that the LHS is allowed to be a variable (either it has not been
1112 // used as a symbol, or it is an absolute symbol).
1113 MCSymbol *Sym = getContext().LookupSymbol(Name);
1114 if (Sym) {
1115 // Diagnose assignment to a label.
1116 //
1117 // FIXME: Diagnostics. Note the location of the definition as a label.
1118 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001119 if (Sym->isUndefined() && !Sym->isUsedInExpr())
1120 ; // Allow redefinitions of undefined symbols only used in directives.
1121 else if (!Sym->isUndefined() && !Sym->isAbsolute())
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001122 return Error(EqualLoc, "redefinition of '" + Name + "'");
1123 else if (!Sym->isVariable())
1124 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00001125 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001126 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1127 Name + "'");
1128 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001129 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001130
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001131 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001132
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001133 Sym->setUsedInExpr(true);
1134
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001135 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00001136 Out.EmitAssignment(Sym, Value);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001137
1138 return false;
1139}
1140
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001141/// ParseIdentifier:
1142/// ::= identifier
1143/// ::= string
1144bool AsmParser::ParseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00001145 // The assembler has relaxed rules for accepting identifiers, in particular we
1146 // allow things like '.globl $foo', which would normally be separate
1147 // tokens. At this level, we have already lexed so we cannot (currently)
1148 // handle this as a context dependent token, instead we detect adjacent tokens
1149 // and return the combined identifier.
1150 if (Lexer.is(AsmToken::Dollar)) {
1151 SMLoc DollarLoc = getLexer().getLoc();
1152
1153 // Consume the dollar sign, and check for a following identifier.
1154 Lex();
1155 if (Lexer.isNot(AsmToken::Identifier))
1156 return true;
1157
1158 // We have a '$' followed by an identifier, make sure they are adjacent.
1159 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
1160 return true;
1161
1162 // Construct the joined identifier and consume the token.
1163 Res = StringRef(DollarLoc.getPointer(),
1164 getTok().getIdentifier().size() + 1);
1165 Lex();
1166 return false;
1167 }
1168
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001169 if (Lexer.isNot(AsmToken::Identifier) &&
1170 Lexer.isNot(AsmToken::String))
1171 return true;
1172
Sean Callanan18b83232010-01-19 21:44:56 +00001173 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001174
Sean Callanan79ed1a82010-01-19 20:22:31 +00001175 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001176
1177 return false;
1178}
1179
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001180/// ParseDirectiveSet:
1181/// ::= .set identifier ',' expression
1182bool AsmParser::ParseDirectiveSet() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001183 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001184
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001185 if (ParseIdentifier(Name))
1186 return TokError("expected identifier after '.set' directive");
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001187
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001188 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001189 return TokError("unexpected token in '.set'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001190 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001191
Daniel Dunbare2ace502009-08-31 08:09:09 +00001192 return ParseAssignment(Name);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001193}
1194
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001195bool AsmParser::ParseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001196 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001197
1198 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00001199 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001200 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1201 if (Str[i] != '\\') {
1202 Data += Str[i];
1203 continue;
1204 }
1205
1206 // Recognize escaped characters. Note that this escape semantics currently
1207 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1208 ++i;
1209 if (i == e)
1210 return TokError("unexpected backslash at end of string");
1211
1212 // Recognize octal sequences.
1213 if ((unsigned) (Str[i] - '0') <= 7) {
1214 // Consume up to three octal characters.
1215 unsigned Value = Str[i] - '0';
1216
1217 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1218 ++i;
1219 Value = Value * 8 + (Str[i] - '0');
1220
1221 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1222 ++i;
1223 Value = Value * 8 + (Str[i] - '0');
1224 }
1225 }
1226
1227 if (Value > 255)
1228 return TokError("invalid octal escape sequence (out of range)");
1229
1230 Data += (unsigned char) Value;
1231 continue;
1232 }
1233
1234 // Otherwise recognize individual escapes.
1235 switch (Str[i]) {
1236 default:
1237 // Just reject invalid escape sequences for now.
1238 return TokError("invalid escape sequence (unrecognized character)");
1239
1240 case 'b': Data += '\b'; break;
1241 case 'f': Data += '\f'; break;
1242 case 'n': Data += '\n'; break;
1243 case 'r': Data += '\r'; break;
1244 case 't': Data += '\t'; break;
1245 case '"': Data += '"'; break;
1246 case '\\': Data += '\\'; break;
1247 }
1248 }
1249
1250 return false;
1251}
1252
Daniel Dunbara0d14262009-06-24 23:30:00 +00001253/// ParseDirectiveAscii:
Daniel Dunbar475839e2009-06-29 20:37:27 +00001254/// ::= ( .ascii | .asciz ) [ "string" ( , "string" )* ]
Daniel Dunbara0d14262009-06-24 23:30:00 +00001255bool AsmParser::ParseDirectiveAscii(bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001256 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001257 CheckForValidSection();
1258
Daniel Dunbara0d14262009-06-24 23:30:00 +00001259 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001260 if (getLexer().isNot(AsmToken::String))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001261 return TokError("expected string in '.ascii' or '.asciz' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001262
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001263 std::string Data;
1264 if (ParseEscapedString(Data))
1265 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001266
1267 getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001268 if (ZeroTerminated)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001269 getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
1270
Sean Callanan79ed1a82010-01-19 20:22:31 +00001271 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001272
1273 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001274 break;
1275
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001276 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001277 return TokError("unexpected token in '.ascii' or '.asciz' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001278 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001279 }
1280 }
1281
Sean Callanan79ed1a82010-01-19 20:22:31 +00001282 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001283 return false;
1284}
1285
1286/// ParseDirectiveValue
1287/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
1288bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001289 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001290 CheckForValidSection();
1291
Daniel Dunbara0d14262009-06-24 23:30:00 +00001292 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001293 const MCExpr *Value;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001294 SMLoc ATTRIBUTE_UNUSED StartLoc = getLexer().getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00001295 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001296 return true;
1297
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001298 // Special case constant expressions to match code generator.
1299 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value))
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001300 getStreamer().EmitIntValue(MCE->getValue(), Size, DEFAULT_ADDRSPACE);
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001301 else
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001302 getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001303
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001304 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001305 break;
1306
1307 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001308 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001309 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001310 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001311 }
1312 }
1313
Sean Callanan79ed1a82010-01-19 20:22:31 +00001314 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001315 return false;
1316}
1317
1318/// ParseDirectiveSpace
1319/// ::= .space expression [ , expression ]
1320bool AsmParser::ParseDirectiveSpace() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001321 CheckForValidSection();
1322
Daniel Dunbara0d14262009-06-24 23:30:00 +00001323 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001324 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001325 return true;
1326
1327 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001328 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1329 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001330 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001331 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001332
Daniel Dunbar475839e2009-06-29 20:37:27 +00001333 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001334 return true;
1335
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001336 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001337 return TokError("unexpected token in '.space' directive");
1338 }
1339
Sean Callanan79ed1a82010-01-19 20:22:31 +00001340 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001341
1342 if (NumBytes <= 0)
1343 return TokError("invalid number of bytes in '.space' directive");
1344
1345 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001346 getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001347
1348 return false;
1349}
1350
1351/// ParseDirectiveFill
1352/// ::= .fill expression , expression , expression
1353bool AsmParser::ParseDirectiveFill() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001354 CheckForValidSection();
1355
Daniel Dunbara0d14262009-06-24 23:30:00 +00001356 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001357 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001358 return true;
1359
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001360 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001361 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001362 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001363
1364 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001365 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001366 return true;
1367
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001368 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001369 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001370 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001371
1372 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001373 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001374 return true;
1375
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001376 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001377 return TokError("unexpected token in '.fill' directive");
1378
Sean Callanan79ed1a82010-01-19 20:22:31 +00001379 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001380
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00001381 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
1382 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00001383
1384 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001385 getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001386
1387 return false;
1388}
Daniel Dunbarc238b582009-06-25 22:44:51 +00001389
1390/// ParseDirectiveOrg
1391/// ::= .org expression [ , expression ]
1392bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001393 CheckForValidSection();
1394
Daniel Dunbar821e3332009-08-31 08:09:28 +00001395 const MCExpr *Offset;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001396 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001397 return true;
1398
1399 // Parse optional fill expression.
1400 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001401 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1402 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001403 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001404 Lex();
Daniel Dunbarc238b582009-06-25 22:44:51 +00001405
Daniel Dunbar475839e2009-06-29 20:37:27 +00001406 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001407 return true;
1408
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001409 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001410 return TokError("unexpected token in '.org' directive");
1411 }
1412
Sean Callanan79ed1a82010-01-19 20:22:31 +00001413 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001414
1415 // FIXME: Only limited forms of relocatable expressions are accepted here, it
1416 // has to be relative to the current section.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001417 getStreamer().EmitValueToOffset(Offset, FillExpr);
Daniel Dunbarc238b582009-06-25 22:44:51 +00001418
1419 return false;
1420}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001421
1422/// ParseDirectiveAlign
1423/// ::= {.align, ...} expression [ , expression [ , expression ]]
1424bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001425 CheckForValidSection();
1426
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001427 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001428 int64_t Alignment;
1429 if (ParseAbsoluteExpression(Alignment))
1430 return true;
1431
1432 SMLoc MaxBytesLoc;
1433 bool HasFillExpr = false;
1434 int64_t FillExpr = 0;
1435 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001436 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1437 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001438 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001439 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001440
1441 // The fill expression can be omitted while specifying a maximum number of
1442 // alignment bytes, e.g:
1443 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001444 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001445 HasFillExpr = true;
1446 if (ParseAbsoluteExpression(FillExpr))
1447 return true;
1448 }
1449
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001450 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1451 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001452 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001453 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001454
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001455 MaxBytesLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001456 if (ParseAbsoluteExpression(MaxBytesToFill))
1457 return true;
1458
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001459 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001460 return TokError("unexpected token in directive");
1461 }
1462 }
1463
Sean Callanan79ed1a82010-01-19 20:22:31 +00001464 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001465
Daniel Dunbar648ac512010-05-17 21:54:30 +00001466 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001467 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001468
1469 // Compute alignment in bytes.
1470 if (IsPow2) {
1471 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001472 if (Alignment >= 32) {
1473 Error(AlignmentLoc, "invalid alignment value");
1474 Alignment = 31;
1475 }
1476
Benjamin Kramer12fd7672009-09-06 09:35:10 +00001477 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001478 }
1479
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001480 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001481 if (MaxBytesLoc.isValid()) {
1482 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001483 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
1484 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00001485 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001486 }
1487
1488 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001489 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
1490 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001491 MaxBytesToFill = 0;
1492 }
1493 }
1494
Daniel Dunbar648ac512010-05-17 21:54:30 +00001495 // Check whether we should use optimal code alignment for this .align
1496 // directive.
1497 //
1498 // FIXME: This should be using a target hook.
1499 bool UseCodeAlign = false;
1500 if (const MCSectionMachO *S = dyn_cast<MCSectionMachO>(
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001501 getStreamer().getCurrentSection()))
Chris Lattnera9558532010-07-15 21:19:31 +00001502 UseCodeAlign = S->hasAttribute(MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001503 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
1504 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001505 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001506 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00001507 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00001508 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
1509 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001510 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001511
1512 return false;
1513}
1514
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001515/// ParseDirectiveSymbolAttribute
1516/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001517bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001518 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001519 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001520 StringRef Name;
1521
1522 if (ParseIdentifier(Name))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001523 return TokError("expected identifier in directive");
1524
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001525 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001526
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001527 getStreamer().EmitSymbolAttribute(Sym, Attr);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001528
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001529 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001530 break;
1531
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001532 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001533 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001534 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001535 }
1536 }
1537
Sean Callanan79ed1a82010-01-19 20:22:31 +00001538 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001539 return false;
1540}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001541
Matt Fleming924c5e52010-05-21 11:36:59 +00001542/// ParseDirectiveELFType
1543/// ::= .type identifier , @attribute
1544bool AsmParser::ParseDirectiveELFType() {
1545 StringRef Name;
1546 if (ParseIdentifier(Name))
1547 return TokError("expected identifier in directive");
1548
1549 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001550 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Matt Fleming924c5e52010-05-21 11:36:59 +00001551
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001552 if (getLexer().isNot(AsmToken::Comma))
Matt Fleming924c5e52010-05-21 11:36:59 +00001553 return TokError("unexpected token in '.type' directive");
1554 Lex();
1555
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001556 if (getLexer().isNot(AsmToken::At))
Matt Fleming924c5e52010-05-21 11:36:59 +00001557 return TokError("expected '@' before type");
1558 Lex();
1559
1560 StringRef Type;
1561 SMLoc TypeLoc;
1562
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001563 TypeLoc = getLexer().getLoc();
Matt Fleming924c5e52010-05-21 11:36:59 +00001564 if (ParseIdentifier(Type))
1565 return TokError("expected symbol type in directive");
1566
1567 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Type)
1568 .Case("function", MCSA_ELF_TypeFunction)
1569 .Case("object", MCSA_ELF_TypeObject)
1570 .Case("tls_object", MCSA_ELF_TypeTLS)
1571 .Case("common", MCSA_ELF_TypeCommon)
1572 .Case("notype", MCSA_ELF_TypeNoType)
1573 .Default(MCSA_Invalid);
1574
1575 if (Attr == MCSA_Invalid)
1576 return Error(TypeLoc, "unsupported attribute in '.type' directive");
1577
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001578 if (getLexer().isNot(AsmToken::EndOfStatement))
Matt Fleming924c5e52010-05-21 11:36:59 +00001579 return TokError("unexpected token in '.type' directive");
1580
1581 Lex();
1582
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001583 getStreamer().EmitSymbolAttribute(Sym, Attr);
Matt Fleming924c5e52010-05-21 11:36:59 +00001584
1585 return false;
1586}
1587
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001588/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00001589/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
1590bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001591 CheckForValidSection();
1592
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001593 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001594 StringRef Name;
1595 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001596 return TokError("expected identifier in directive");
1597
Daniel Dunbar76c4d762009-07-31 21:55:09 +00001598 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001599 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001600
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001601 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001602 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001603 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001604
1605 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001606 SMLoc SizeLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001607 if (ParseAbsoluteExpression(Size))
1608 return true;
1609
1610 int64_t Pow2Alignment = 0;
1611 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001612 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00001613 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001614 Pow2AlignmentLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001615 if (ParseAbsoluteExpression(Pow2Alignment))
1616 return true;
Chris Lattner258281d2010-01-19 06:22:22 +00001617
1618 // If this target takes alignments in bytes (not log) validate and convert.
1619 if (Lexer.getMAI().getAlignmentIsInBytes()) {
1620 if (!isPowerOf2_64(Pow2Alignment))
1621 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
1622 Pow2Alignment = Log2_64(Pow2Alignment);
1623 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001624 }
1625
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001626 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00001627 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001628
Sean Callanan79ed1a82010-01-19 20:22:31 +00001629 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001630
Chris Lattner1fc3d752009-07-09 17:25:12 +00001631 // NOTE: a size of zero for a .comm should create a undefined symbol
1632 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001633 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001634 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
1635 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001636
Eric Christopherc260a3e2010-05-14 01:38:54 +00001637 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001638 // may internally end up wanting an alignment in bytes.
1639 // FIXME: Diagnose overflow.
1640 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001641 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
1642 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001643
Daniel Dunbar8906ff12009-08-22 07:22:36 +00001644 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001645 return Error(IDLoc, "invalid symbol redefinition");
1646
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001647 // '.lcomm' is equivalent to '.zerofill'.
Chris Lattner1fc3d752009-07-09 17:25:12 +00001648 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001649 if (IsLocal) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001650 getStreamer().EmitZerofill(Ctx.getMachOSection(
1651 "__DATA", "__bss", MCSectionMachO::S_ZEROFILL,
1652 0, SectionKind::getBSS()),
1653 Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001654 return false;
1655 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001656
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001657 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001658 return false;
1659}
Chris Lattner9be3fee2009-07-10 22:20:30 +00001660
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001661/// ParseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001662/// ::= .abort [... message ...]
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001663bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001664 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001665 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001666
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001667 StringRef Str = ParseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001668 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001669 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001670
Sean Callanan79ed1a82010-01-19 20:22:31 +00001671 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001672
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001673 if (Str.empty())
1674 Error(Loc, ".abort detected. Assembly stopping.");
1675 else
1676 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001677 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001678
1679 return false;
1680}
Kevin Enderby71148242009-07-14 21:35:03 +00001681
Kevin Enderby1f049b22009-07-14 23:21:55 +00001682/// ParseDirectiveInclude
1683/// ::= .include "filename"
1684bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001685 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001686 return TokError("expected string in '.include' directive");
1687
Sean Callanan18b83232010-01-19 21:44:56 +00001688 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001689 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001690 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00001691
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001692 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001693 return TokError("unexpected token in '.include' directive");
1694
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001695 // Strip the quotes.
1696 Filename = Filename.substr(1, Filename.size()-2);
1697
1698 // Attempt to switch the lexer to the included file before consuming the end
1699 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00001700 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00001701 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001702 return true;
1703 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00001704
1705 return false;
1706}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001707
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001708/// ParseDirectiveIf
1709/// ::= .if expression
1710bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001711 TheCondStack.push_back(TheCondState);
1712 TheCondState.TheCond = AsmCond::IfCond;
1713 if(TheCondState.Ignore) {
1714 EatToEndOfStatement();
1715 }
1716 else {
1717 int64_t ExprValue;
1718 if (ParseAbsoluteExpression(ExprValue))
1719 return true;
1720
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001721 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001722 return TokError("unexpected token in '.if' directive");
1723
Sean Callanan79ed1a82010-01-19 20:22:31 +00001724 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001725
1726 TheCondState.CondMet = ExprValue;
1727 TheCondState.Ignore = !TheCondState.CondMet;
1728 }
1729
1730 return false;
1731}
1732
1733/// ParseDirectiveElseIf
1734/// ::= .elseif expression
1735bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
1736 if (TheCondState.TheCond != AsmCond::IfCond &&
1737 TheCondState.TheCond != AsmCond::ElseIfCond)
1738 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
1739 " an .elseif");
1740 TheCondState.TheCond = AsmCond::ElseIfCond;
1741
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001742 bool LastIgnoreState = false;
1743 if (!TheCondStack.empty())
1744 LastIgnoreState = TheCondStack.back().Ignore;
1745 if (LastIgnoreState || TheCondState.CondMet) {
1746 TheCondState.Ignore = true;
1747 EatToEndOfStatement();
1748 }
1749 else {
1750 int64_t ExprValue;
1751 if (ParseAbsoluteExpression(ExprValue))
1752 return true;
1753
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001754 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001755 return TokError("unexpected token in '.elseif' directive");
1756
Sean Callanan79ed1a82010-01-19 20:22:31 +00001757 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001758 TheCondState.CondMet = ExprValue;
1759 TheCondState.Ignore = !TheCondState.CondMet;
1760 }
1761
1762 return false;
1763}
1764
1765/// ParseDirectiveElse
1766/// ::= .else
1767bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001768 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001769 return TokError("unexpected token in '.else' directive");
1770
Sean Callanan79ed1a82010-01-19 20:22:31 +00001771 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001772
1773 if (TheCondState.TheCond != AsmCond::IfCond &&
1774 TheCondState.TheCond != AsmCond::ElseIfCond)
1775 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
1776 ".elseif");
1777 TheCondState.TheCond = AsmCond::ElseCond;
1778 bool LastIgnoreState = false;
1779 if (!TheCondStack.empty())
1780 LastIgnoreState = TheCondStack.back().Ignore;
1781 if (LastIgnoreState || TheCondState.CondMet)
1782 TheCondState.Ignore = true;
1783 else
1784 TheCondState.Ignore = false;
1785
1786 return false;
1787}
1788
1789/// ParseDirectiveEndIf
1790/// ::= .endif
1791bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001792 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001793 return TokError("unexpected token in '.endif' directive");
1794
Sean Callanan79ed1a82010-01-19 20:22:31 +00001795 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001796
1797 if ((TheCondState.TheCond == AsmCond::NoCond) ||
1798 TheCondStack.empty())
1799 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
1800 ".else");
1801 if (!TheCondStack.empty()) {
1802 TheCondState = TheCondStack.back();
1803 TheCondStack.pop_back();
1804 }
1805
1806 return false;
1807}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001808
1809/// ParseDirectiveFile
1810/// ::= .file [number] string
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001811bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001812 // FIXME: I'm not sure what this is.
1813 int64_t FileNumber = -1;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00001814 SMLoc FileNumberLoc = getLexer().getLoc();
Daniel Dunbareceec052010-07-12 17:45:27 +00001815 if (getLexer().is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001816 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001817 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00001818
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001819 if (FileNumber < 1)
1820 return TokError("file number less than one");
1821 }
1822
Daniel Dunbareceec052010-07-12 17:45:27 +00001823 if (getLexer().isNot(AsmToken::String))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001824 return TokError("unexpected token in '.file' directive");
Daniel Dunbareceec052010-07-12 17:45:27 +00001825
Chris Lattnerd32e8032010-01-25 19:02:58 +00001826 StringRef Filename = getTok().getString();
1827 Filename = Filename.substr(1, Filename.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00001828 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001829
Daniel Dunbareceec052010-07-12 17:45:27 +00001830 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001831 return TokError("unexpected token in '.file' directive");
1832
Chris Lattnerd32e8032010-01-25 19:02:58 +00001833 if (FileNumber == -1)
Daniel Dunbareceec052010-07-12 17:45:27 +00001834 getStreamer().EmitFileDirective(Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00001835 else {
1836 if (getContext().GetDwarfFile(Filename, FileNumber) == 0)
1837 Error(FileNumberLoc, "file number already allocated");
Daniel Dunbareceec052010-07-12 17:45:27 +00001838 getStreamer().EmitDwarfFileDirective(FileNumber, Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00001839 }
Daniel Dunbareceec052010-07-12 17:45:27 +00001840
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001841 return false;
1842}
1843
1844/// ParseDirectiveLine
1845/// ::= .line [number]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001846bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00001847 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1848 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001849 return TokError("unexpected token in '.line' directive");
1850
Sean Callanan18b83232010-01-19 21:44:56 +00001851 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001852 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001853 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001854
1855 // FIXME: Do something with the .line.
1856 }
1857
Daniel Dunbareceec052010-07-12 17:45:27 +00001858 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbar839348a2010-07-01 20:20:01 +00001859 return TokError("unexpected token in '.line' directive");
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001860
1861 return false;
1862}
1863
1864
1865/// ParseDirectiveLoc
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00001866/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001867/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
1868/// The first number is a file number, must have been previously assigned with
1869/// a .file directive, the second number is the line number and optionally the
1870/// third number is a column position (zero if not specified). The remaining
1871/// optional items are .loc sub-directives.
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001872bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001873
Daniel Dunbareceec052010-07-12 17:45:27 +00001874 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001875 return TokError("unexpected token in '.loc' directive");
Sean Callanan18b83232010-01-19 21:44:56 +00001876 int64_t FileNumber = getTok().getIntVal();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001877 if (FileNumber < 1)
1878 return TokError("file number less than one in '.loc' directive");
1879 if (!getContext().ValidateDwarfFileNumber(FileNumber))
1880 return TokError("unassigned file number in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001881 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001882
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00001883 int64_t LineNumber = 0;
1884 if (getLexer().is(AsmToken::Integer)) {
1885 LineNumber = getTok().getIntVal();
1886 if (LineNumber < 1)
1887 return TokError("line number less than one in '.loc' directive");
1888 Lex();
1889 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001890
1891 int64_t ColumnPos = 0;
1892 if (getLexer().is(AsmToken::Integer)) {
1893 ColumnPos = getTok().getIntVal();
1894 if (ColumnPos < 0)
1895 return TokError("column position less than zero in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001896 Lex();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001897 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001898
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001899 unsigned Flags = 0;
1900 unsigned Isa = 0;
1901 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1902 for (;;) {
1903 if (getLexer().is(AsmToken::EndOfStatement))
1904 break;
1905
1906 StringRef Name;
1907 SMLoc Loc = getTok().getLoc();
1908 if (getParser().ParseIdentifier(Name))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001909 return TokError("unexpected token in '.loc' directive");
1910
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001911 if (Name == "basic_block")
1912 Flags |= DWARF2_FLAG_BASIC_BLOCK;
1913 else if (Name == "prologue_end")
1914 Flags |= DWARF2_FLAG_PROLOGUE_END;
1915 else if (Name == "epilogue_begin")
1916 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
1917 else if (Name == "is_stmt") {
1918 SMLoc Loc = getTok().getLoc();
1919 const MCExpr *Value;
1920 if (getParser().ParseExpression(Value))
1921 return true;
1922 // The expression must be the constant 0 or 1.
1923 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
1924 int Value = MCE->getValue();
1925 if (Value == 0)
1926 Flags &= ~DWARF2_FLAG_IS_STMT;
1927 else if (Value == 1)
1928 Flags |= DWARF2_FLAG_IS_STMT;
1929 else
1930 return Error(Loc, "is_stmt value not 0 or 1");
1931 }
1932 else {
1933 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
1934 }
1935 }
1936 else if (Name == "isa") {
1937 SMLoc Loc = getTok().getLoc();
1938 const MCExpr *Value;
1939 if (getParser().ParseExpression(Value))
1940 return true;
1941 // The expression must be a constant greater or equal to 0.
1942 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
1943 int Value = MCE->getValue();
1944 if (Value < 0)
1945 return Error(Loc, "isa number less than zero");
1946 Isa = Value;
1947 }
1948 else {
1949 return Error(Loc, "isa number not a constant value");
1950 }
1951 }
1952 else {
1953 return Error(Loc, "unknown sub-directive in '.loc' directive");
1954 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001955
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001956 if (getLexer().is(AsmToken::EndOfStatement))
1957 break;
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001958 }
1959 }
1960
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001961 getContext().setCurrentDwarfLoc(FileNumber, LineNumber, ColumnPos, Flags,Isa);
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001962
1963 return false;
1964}
1965
Daniel Dunbar3c802de2010-07-18 18:38:02 +00001966/// ParseDirectiveMacrosOnOff
1967/// ::= .macros_on
1968/// ::= .macros_off
1969bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
1970 SMLoc DirectiveLoc) {
1971 if (getLexer().isNot(AsmToken::EndOfStatement))
1972 return Error(getLexer().getLoc(),
1973 "unexpected token in '" + Directive + "' directive");
1974
1975 getParser().MacrosEnabled = Directive == ".macros_on";
1976
1977 return false;
1978}
Daniel Dunbard1e3b442010-07-17 02:26:10 +00001979
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00001980/// ParseDirectiveMacro
1981/// ::= .macro name
1982bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
1983 SMLoc DirectiveLoc) {
1984 StringRef Name;
1985 if (getParser().ParseIdentifier(Name))
1986 return TokError("expected identifier in directive");
1987
1988 if (getLexer().isNot(AsmToken::EndOfStatement))
1989 return TokError("unexpected token in '.macro' directive");
1990
1991 // Eat the end of statement.
1992 Lex();
1993
1994 AsmToken EndToken, StartToken = getTok();
1995
1996 // Lex the macro definition.
1997 for (;;) {
1998 // Check whether we have reached the end of the file.
1999 if (getLexer().is(AsmToken::Eof))
2000 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
2001
2002 // Otherwise, check whether we have reach the .endmacro.
2003 if (getLexer().is(AsmToken::Identifier) &&
2004 (getTok().getIdentifier() == ".endm" ||
2005 getTok().getIdentifier() == ".endmacro")) {
2006 EndToken = getTok();
2007 Lex();
2008 if (getLexer().isNot(AsmToken::EndOfStatement))
2009 return TokError("unexpected token in '" + EndToken.getIdentifier() +
2010 "' directive");
2011 break;
2012 }
2013
2014 // Otherwise, scan til the end of the statement.
2015 getParser().EatToEndOfStatement();
2016 }
2017
2018 if (getParser().MacroMap.lookup(Name)) {
2019 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
2020 }
2021
2022 const char *BodyStart = StartToken.getLoc().getPointer();
2023 const char *BodyEnd = EndToken.getLoc().getPointer();
2024 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
2025 getParser().MacroMap[Name] = new Macro(Name, Body);
2026 return false;
2027}
2028
2029/// ParseDirectiveEndMacro
2030/// ::= .endm
2031/// ::= .endmacro
2032bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
2033 SMLoc DirectiveLoc) {
2034 if (getLexer().isNot(AsmToken::EndOfStatement))
2035 return TokError("unexpected token in '" + Directive + "' directive");
2036
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00002037 // If we are inside a macro instantiation, terminate the current
2038 // instantiation.
2039 if (!getParser().ActiveMacros.empty()) {
2040 getParser().HandleMacroExit();
2041 return false;
2042 }
2043
2044 // Otherwise, this .endmacro is a stray entry in the file; well formed
2045 // .endmacro directives are handled during the macro definition parsing.
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00002046 return TokError("unexpected '" + Directive + "' in file, "
2047 "no current macro definition");
2048}
2049
Daniel Dunbard1e3b442010-07-17 02:26:10 +00002050/// \brief Create an MCAsmParser instance.
2051MCAsmParser *llvm::createMCAsmParser(const Target &T, SourceMgr &SM,
2052 MCContext &C, MCStreamer &Out,
2053 const MCAsmInfo &MAI) {
2054 return new AsmParser(T, SM, C, Out, MAI);
2055}