blob: 933b75e21a43411af8fd448290c4f27622501e1e [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 Dunbarb95a0792010-09-24 01:59:56 +000014#include "llvm/ADT/APFloat.h"
Daniel Dunbar7c0a3342009-08-26 22:49:51 +000015#include "llvm/ADT/SmallString.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000016#include "llvm/ADT/StringMap.h"
Matt Fleming924c5e52010-05-21 11:36:59 +000017#include "llvm/ADT/StringSwitch.h"
Daniel Dunbarf9507ff2009-07-27 23:20:52 +000018#include "llvm/ADT/Twine.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000019#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000020#include "llvm/MC/MCContext.h"
Daniel Dunbar28c251b2009-08-31 08:06:59 +000021#include "llvm/MC/MCExpr.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"
Kevin Enderbyf187ac52010-06-28 21:45:58 +000030#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000031#include "llvm/Support/SourceMgr.h"
Chris Lattnerb0789ed2009-06-21 20:54:55 +000032#include "llvm/Support/raw_ostream.h"
Daniel Dunbara3af3702009-07-20 18:55:04 +000033#include "llvm/Target/TargetAsmParser.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000034#include <vector>
Chris Lattner27aa7d22009-06-21 20:16:42 +000035using namespace llvm;
36
Daniel Dunbar81ea00f2010-07-12 17:54:38 +000037namespace {
38
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000039/// \brief Helper class for tracking macro definitions.
40struct Macro {
41 StringRef Name;
42 StringRef Body;
43
44public:
45 Macro(StringRef N, StringRef B) : Name(N), Body(B) {}
46};
47
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000048/// \brief Helper class for storing information about an active macro
49/// instantiation.
50struct MacroInstantiation {
51 /// The macro being instantiated.
52 const Macro *TheMacro;
53
54 /// The macro instantiation with substitutions.
55 MemoryBuffer *Instantiation;
56
57 /// The location of the instantiation.
58 SMLoc InstantiationLoc;
59
60 /// The location where parsing should resume upon instantiation completion.
61 SMLoc ExitLoc;
62
63public:
Daniel Dunbar7a570d02010-07-18 19:00:10 +000064 MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
65 const std::vector<std::vector<AsmToken> > &A);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000066};
67
Daniel Dunbaraef87e32010-07-18 18:31:38 +000068/// \brief The concrete assembly parser instance.
69class AsmParser : public MCAsmParser {
Daniel Dunbar3c802de2010-07-18 18:38:02 +000070 friend class GenericAsmParser;
71
Daniel Dunbaraef87e32010-07-18 18:31:38 +000072 AsmParser(const AsmParser &); // DO NOT IMPLEMENT
73 void operator=(const AsmParser &); // DO NOT IMPLEMENT
74private:
75 AsmLexer Lexer;
76 MCContext &Ctx;
77 MCStreamer &Out;
78 SourceMgr &SrcMgr;
79 MCAsmParserExtension *GenericParser;
80 MCAsmParserExtension *PlatformParser;
Daniel Dunbar3c802de2010-07-18 18:38:02 +000081
Daniel Dunbaraef87e32010-07-18 18:31:38 +000082 /// This is the current buffer index we're lexing from as managed by the
83 /// SourceMgr object.
84 int CurBuffer;
85
86 AsmCond TheCondState;
87 std::vector<AsmCond> TheCondStack;
88
89 /// DirectiveMap - This is a table handlers for directives. Each handler is
90 /// invoked after the directive identifier is read and is responsible for
91 /// parsing and validating the rest of the directive. The handler is passed
92 /// in the directive name and the location of the directive keyword.
93 StringMap<std::pair<MCAsmParserExtension*, DirectiveHandler> > DirectiveMap;
Daniel Dunbar3c802de2010-07-18 18:38:02 +000094
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000095 /// MacroMap - Map of currently defined macros.
96 StringMap<Macro*> MacroMap;
97
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000098 /// ActiveMacros - Stack of active macro instantiations.
99 std::vector<MacroInstantiation*> ActiveMacros;
100
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000101 /// Boolean tracking whether macro substitution is enabled.
102 unsigned MacrosEnabled : 1;
103
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000104 /// Flag tracking whether any errors have been encountered.
105 unsigned HadError : 1;
106
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000107public:
108 AsmParser(const Target &T, SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
109 const MCAsmInfo &MAI);
110 ~AsmParser();
111
112 virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
113
114 void AddDirectiveHandler(MCAsmParserExtension *Object,
115 StringRef Directive,
116 DirectiveHandler Handler) {
117 DirectiveMap[Directive] = std::make_pair(Object, Handler);
118 }
119
120public:
121 /// @name MCAsmParser Interface
122 /// {
123
124 virtual SourceMgr &getSourceManager() { return SrcMgr; }
125 virtual MCAsmLexer &getLexer() { return Lexer; }
126 virtual MCContext &getContext() { return Ctx; }
127 virtual MCStreamer &getStreamer() { return Out; }
128
129 virtual void Warning(SMLoc L, const Twine &Meg);
130 virtual bool Error(SMLoc L, const Twine &Msg);
131
132 const AsmToken &Lex();
133
134 bool ParseExpression(const MCExpr *&Res);
135 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
136 virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
137 virtual bool ParseAbsoluteExpression(int64_t &Res);
138
139 /// }
140
141private:
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000142 void CheckForValidSection();
143
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000144 bool ParseStatement();
145
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000146 bool HandleMacroEntry(StringRef Name, SMLoc NameLoc, const Macro *M);
147 void HandleMacroExit();
148
149 void PrintMacroInstantiations();
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000150 void PrintMessage(SMLoc Loc, const Twine &Msg, const char *Type) const {
151 SrcMgr.PrintMessage(Loc, Msg, Type);
152 }
153
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000154 /// EnterIncludeFile - Enter the specified file. This returns true on failure.
155 bool EnterIncludeFile(const std::string &Filename);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000156
157 /// \brief Reset the current lexer position to that given by \arg Loc. The
158 /// current token is not set; clients should ensure Lex() is called
159 /// subsequently.
160 void JumpToLoc(SMLoc Loc);
161
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000162 void EatToEndOfStatement();
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000163
164 /// \brief Parse up to the end of statement and a return the contents from the
165 /// current token until the end of the statement; the current token on exit
166 /// will be either the EndOfStatement or EOF.
167 StringRef ParseStringToEndOfStatement();
168
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000169 bool ParseAssignment(StringRef Name);
170
171 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
172 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
173 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
174
175 /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
176 /// and set \arg Res to the identifier contents.
177 bool ParseIdentifier(StringRef &Res);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000178
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000179 // Directive Parsing.
Rafael Espindola787c3372010-10-28 20:02:27 +0000180
181 // ".ascii", ".asciiz", ".string"
182 bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000183 bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
Daniel Dunbarb95a0792010-09-24 01:59:56 +0000184 bool ParseDirectiveRealValue(const fltSemantics &); // ".single", ...
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000185 bool ParseDirectiveFill(); // ".fill"
186 bool ParseDirectiveSpace(); // ".space"
Rafael Espindola2ea2ac72010-09-16 15:03:59 +0000187 bool ParseDirectiveZero(); // ".zero"
Roman Divacky50e7a782010-10-28 16:22:58 +0000188 bool ParseDirectiveSet(StringRef IDVal); // ".set" or ".equ"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000189 bool ParseDirectiveOrg(); // ".org"
190 // ".align{,32}", ".p2align{,w,l}"
191 bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
192
193 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
194 /// accepts a single symbol (which should be a label or an external).
195 bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000196
197 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
198
199 bool ParseDirectiveAbort(); // ".abort"
200 bool ParseDirectiveInclude(); // ".include"
201
202 bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
203 bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
204 bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
205 bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
206
207 /// ParseEscapedString - Parse the current token as a string which may include
208 /// escaped characters and return the string contents.
209 bool ParseEscapedString(std::string &Data);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000210
211 const MCExpr *ApplyModifierToExpr(const MCExpr *E,
212 MCSymbolRefExpr::VariantKind Variant);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000213};
214
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000215/// \brief Generic implementations of directive handling, etc. which is shared
216/// (or the default, at least) for all assembler parser.
217class GenericAsmParser : public MCAsmParserExtension {
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000218 template<bool (GenericAsmParser::*Handler)(StringRef, SMLoc)>
219 void AddDirectiveHandler(StringRef Directive) {
220 getParser().AddDirectiveHandler(this, Directive,
221 HandleDirective<GenericAsmParser, Handler>);
222 }
223
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000224public:
225 GenericAsmParser() {}
226
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000227 AsmParser &getParser() {
228 return (AsmParser&) this->MCAsmParserExtension::getParser();
229 }
230
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000231 virtual void Initialize(MCAsmParser &Parser) {
232 // Call the base implementation.
233 this->MCAsmParserExtension::Initialize(Parser);
234
235 // Debugging directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000236 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveFile>(".file");
237 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLine>(".line");
238 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLoc>(".loc");
Daniel Dunbar138abae2010-10-16 04:56:42 +0000239 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveStabs>(".stabs");
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000240
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000241 // CFI directives.
242 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIStartProc>(
243 ".cfi_startproc");
244 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIEndProc>(
245 ".cfi_endproc");
246 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaOffset>(
247 ".cfi_def_cfa_offset");
248 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaRegister>(
249 ".cfi_def_cfa_register");
250 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIOffset>(
251 ".cfi_offset");
252 AddDirectiveHandler<
253 &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_personality");
254 AddDirectiveHandler<
255 &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_lsda");
256
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000257 // Macro directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000258 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
259 ".macros_on");
260 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
261 ".macros_off");
262 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacro>(".macro");
263 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endm");
264 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endmacro");
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000265
266 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".sleb128");
267 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".uleb128");
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000268 }
269
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000270 bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
271 bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
272 bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar138abae2010-10-16 04:56:42 +0000273 bool ParseDirectiveStabs(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000274 bool ParseDirectiveCFIStartProc(StringRef, SMLoc DirectiveLoc);
275 bool ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc);
276 bool ParseDirectiveCFIDefCfaOffset(StringRef, SMLoc DirectiveLoc);
277 bool ParseDirectiveCFIDefCfaRegister(StringRef, SMLoc DirectiveLoc);
278 bool ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc);
279 bool ParseDirectiveCFIPersonalityOrLsda(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000280
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000281 bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000282 bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
283 bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000284
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000285 bool ParseDirectiveLEB128(StringRef, SMLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000286};
287
288}
289
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000290namespace llvm {
291
292extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000293extern MCAsmParserExtension *createELFAsmParser();
Michael J. Spencer7d490042010-10-09 11:01:07 +0000294extern MCAsmParserExtension *createCOFFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000295
296}
297
Chris Lattneraaec2052010-01-19 19:46:13 +0000298enum { DEFAULT_ADDRSPACE = 0 };
299
Daniel Dunbar9186fa62010-07-01 20:41:56 +0000300AsmParser::AsmParser(const Target &T, SourceMgr &_SM, MCContext &_Ctx,
301 MCStreamer &_Out, const MCAsmInfo &_MAI)
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000302 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM),
Daniel Dunbare4749702010-07-12 18:12:02 +0000303 GenericParser(new GenericAsmParser), PlatformParser(0),
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000304 CurBuffer(0), MacrosEnabled(true) {
Sean Callananfd0b0282010-01-21 00:19:58 +0000305 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000306
307 // Initialize the generic parser.
308 GenericParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000309
310 // Initialize the platform / file format parser.
311 //
312 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
313 // created.
Michael J. Spencer7d490042010-10-09 11:01:07 +0000314 if (_MAI.hasMicrosoftFastStdCallMangling()) {
315 PlatformParser = createCOFFAsmParser();
316 PlatformParser->Initialize(*this);
317 } else if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000318 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000319 PlatformParser->Initialize(*this);
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000320 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000321 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000322 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000323 }
Chris Lattnerebb89b42009-09-27 21:16:52 +0000324}
325
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000326AsmParser::~AsmParser() {
Daniel Dunbar56491302010-07-29 01:51:55 +0000327 assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
328
329 // Destroy any macros.
330 for (StringMap<Macro*>::iterator it = MacroMap.begin(),
331 ie = MacroMap.end(); it != ie; ++it)
332 delete it->getValue();
333
Daniel Dunbare4749702010-07-12 18:12:02 +0000334 delete PlatformParser;
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000335 delete GenericParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000336}
337
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000338void AsmParser::PrintMacroInstantiations() {
339 // Print the active macro instantiation stack.
340 for (std::vector<MacroInstantiation*>::const_reverse_iterator
341 it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
342 PrintMessage((*it)->InstantiationLoc, "while in macro instantiation",
343 "note");
344}
345
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000346void AsmParser::Warning(SMLoc L, const Twine &Msg) {
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000347 PrintMessage(L, Msg, "warning");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000348 PrintMacroInstantiations();
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000349}
350
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000351bool AsmParser::Error(SMLoc L, const Twine &Msg) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000352 HadError = true;
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000353 PrintMessage(L, Msg, "error");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000354 PrintMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000355 return true;
356}
357
Sean Callananfd0b0282010-01-21 00:19:58 +0000358bool AsmParser::EnterIncludeFile(const std::string &Filename) {
359 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc());
360 if (NewBuf == -1)
361 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000362
Sean Callananfd0b0282010-01-21 00:19:58 +0000363 CurBuffer = NewBuf;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000364
Sean Callananfd0b0282010-01-21 00:19:58 +0000365 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000366
Sean Callananfd0b0282010-01-21 00:19:58 +0000367 return false;
368}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000369
370void AsmParser::JumpToLoc(SMLoc Loc) {
371 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
372 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
373}
374
Sean Callananfd0b0282010-01-21 00:19:58 +0000375const AsmToken &AsmParser::Lex() {
376 const AsmToken *tok = &Lexer.Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000377
Sean Callananfd0b0282010-01-21 00:19:58 +0000378 if (tok->is(AsmToken::Eof)) {
379 // If this is the end of an included file, pop the parent file off the
380 // include stack.
381 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
382 if (ParentIncludeLoc != SMLoc()) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000383 JumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000384 tok = &Lexer.Lex();
385 }
386 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000387
Sean Callananfd0b0282010-01-21 00:19:58 +0000388 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000389 Error(Lexer.getErrLoc(), Lexer.getErr());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000390
Sean Callananfd0b0282010-01-21 00:19:58 +0000391 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000392}
393
Chris Lattner79180e22010-04-05 23:15:42 +0000394bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000395 // Create the initial section, if requested.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000396 if (!NoInitialTextSection)
Rafael Espindolad80781b2010-09-15 21:48:40 +0000397 Out.InitSections();
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000398
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000399 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000400 Lex();
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000401
402 HadError = false;
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000403 AsmCond StartingCondState = TheCondState;
404
Chris Lattnerb717fb02009-07-02 21:53:43 +0000405 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000406 while (Lexer.isNot(AsmToken::Eof)) {
Chris Lattnerb717fb02009-07-02 21:53:43 +0000407 if (!ParseStatement()) continue;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000408
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000409 // We had an error, validate that one was emitted and recover by skipping to
410 // the next line.
411 assert(HadError && "Parse statement returned an error, but none emitted!");
Chris Lattnerb717fb02009-07-02 21:53:43 +0000412 EatToEndOfStatement();
413 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000414
415 if (TheCondState.TheCond != StartingCondState.TheCond ||
416 TheCondState.Ignore != StartingCondState.Ignore)
417 return TokError("unmatched .ifs or .elses");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000418
419 // Check to see there are no empty DwarfFile slots.
420 const std::vector<MCDwarfFile *> &MCDwarfFiles =
421 getContext().getMCDwarfFiles();
422 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000423 if (!MCDwarfFiles[i])
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000424 TokError("unassigned file number: " + Twine(i) + " for .file directives");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000425 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000426
Chris Lattner79180e22010-04-05 23:15:42 +0000427 // Finalize the output stream if there are no errors and if the client wants
428 // us to.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000429 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000430 Out.Finish();
431
Chris Lattnerb717fb02009-07-02 21:53:43 +0000432 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000433}
434
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000435void AsmParser::CheckForValidSection() {
436 if (!getStreamer().getCurrentSection()) {
437 TokError("expected section directive before assembly directive");
438 Out.SwitchSection(Ctx.getMachOSection(
439 "__TEXT", "__text",
440 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
441 0, SectionKind::getText()));
442 }
443}
444
Chris Lattner2cf5f142009-06-22 01:29:09 +0000445/// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
446void AsmParser::EatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000447 while (Lexer.isNot(AsmToken::EndOfStatement) &&
448 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000449 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000450
Chris Lattner2cf5f142009-06-22 01:29:09 +0000451 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000452 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000453 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000454}
455
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000456StringRef AsmParser::ParseStringToEndOfStatement() {
457 const char *Start = getTok().getLoc().getPointer();
458
459 while (Lexer.isNot(AsmToken::EndOfStatement) &&
460 Lexer.isNot(AsmToken::Eof))
461 Lex();
462
463 const char *End = getTok().getLoc().getPointer();
464 return StringRef(Start, End - Start);
465}
Chris Lattnerc4193832009-06-22 05:51:26 +0000466
Chris Lattner74ec1a32009-06-22 06:32:03 +0000467/// ParseParenExpr - Parse a paren expression and return it.
468/// NOTE: This assumes the leading '(' has already been consumed.
469///
470/// parenexpr ::= expr)
471///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000472bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner74ec1a32009-06-22 06:32:03 +0000473 if (ParseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000474 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000475 return TokError("expected ')' in parentheses expression");
Chris Lattnerb4307b32010-01-15 19:28:38 +0000476 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000477 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000478 return false;
479}
Chris Lattnerc4193832009-06-22 05:51:26 +0000480
Chris Lattner74ec1a32009-06-22 06:32:03 +0000481/// ParsePrimaryExpr - Parse a primary expression and return it.
482/// primaryexpr ::= (parenexpr
483/// primaryexpr ::= symbol
484/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000485/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000486/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000487bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000488 switch (Lexer.getKind()) {
489 default:
490 return TokError("unknown token in expression");
Daniel Dunbar3f872332009-07-28 16:08:33 +0000491 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000492 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000493 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000494 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000495 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000496 return false;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000497 case AsmToken::Dollar:
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000498 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000499 case AsmToken::Identifier: {
Daniel Dunbare17edff2010-08-24 19:13:42 +0000500 EndLoc = Lexer.getLoc();
501
502 StringRef Identifier;
503 if (ParseIdentifier(Identifier))
504 return false;
505
Daniel Dunbarfffff912009-10-16 01:34:54 +0000506 // This is a symbol reference.
Daniel Dunbare17edff2010-08-24 19:13:42 +0000507 std::pair<StringRef, StringRef> Split = Identifier.split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000508 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000509
510 // Lookup the symbol variant if used.
511 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000512 if (Split.first.size() != Identifier.size()) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000513 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000514 if (Variant == MCSymbolRefExpr::VK_Invalid) {
515 Variant = MCSymbolRefExpr::VK_None;
516 TokError("invalid variant '" + Split.second + "'");
517 }
518 }
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000519
Daniel Dunbarfffff912009-10-16 01:34:54 +0000520 // If this is an absolute variable reference, substitute it now to preserve
521 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000522 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000523 if (Variant)
Daniel Dunbar603abd52010-11-08 17:53:02 +0000524 return Error(EndLoc, "unexpected modifier on variable reference");
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000525
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000526 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000527 return false;
528 }
529
530 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000531 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000532 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000533 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000534 case AsmToken::Integer: {
535 SMLoc Loc = getTok().getLoc();
536 int64_t IntVal = getTok().getIntVal();
537 Res = MCConstantExpr::Create(IntVal, getContext());
Chris Lattnerb4307b32010-01-15 19:28:38 +0000538 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000539 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000540 // Look for 'b' or 'f' following an Integer as a directional label
541 if (Lexer.getKind() == AsmToken::Identifier) {
542 StringRef IDVal = getTok().getString();
543 if (IDVal == "f" || IDVal == "b"){
544 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
545 IDVal == "f" ? 1 : 0);
546 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
547 getContext());
548 if(IDVal == "b" && Sym->isUndefined())
549 return Error(Loc, "invalid reference to undefined symbol");
550 EndLoc = Lexer.getLoc();
551 Lex(); // Eat identifier.
552 }
553 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000554 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000555 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000556 case AsmToken::Dot: {
557 // This is a '.' reference, which references the current PC. Emit a
558 // temporary label to the streamer and refer to it.
559 MCSymbol *Sym = Ctx.CreateTempSymbol();
560 Out.EmitLabel(Sym);
561 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
562 EndLoc = Lexer.getLoc();
563 Lex(); // Eat identifier.
564 return false;
565 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000566
Daniel Dunbar3f872332009-07-28 16:08:33 +0000567 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000568 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000569 return ParseParenExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000570 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000571 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000572 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000573 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000574 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000575 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000576 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000577 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000578 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000579 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000580 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000581 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000582 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000583 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000584 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000585 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000586 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000587 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000588 }
589}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000590
Chris Lattnerb4307b32010-01-15 19:28:38 +0000591bool AsmParser::ParseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000592 SMLoc EndLoc;
593 return ParseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000594}
595
Daniel Dunbarcceba832010-09-17 02:47:07 +0000596const MCExpr *
597AsmParser::ApplyModifierToExpr(const MCExpr *E,
598 MCSymbolRefExpr::VariantKind Variant) {
599 // Recurse over the given expression, rebuilding it to apply the given variant
600 // if there is exactly one symbol.
601 switch (E->getKind()) {
602 case MCExpr::Target:
603 case MCExpr::Constant:
604 return 0;
605
606 case MCExpr::SymbolRef: {
607 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
608
609 if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
610 TokError("invalid variant on expression '" +
611 getTok().getIdentifier() + "' (already modified)");
612 return E;
613 }
614
615 return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
616 }
617
618 case MCExpr::Unary: {
619 const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
620 const MCExpr *Sub = ApplyModifierToExpr(UE->getSubExpr(), Variant);
621 if (!Sub)
622 return 0;
623 return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
624 }
625
626 case MCExpr::Binary: {
627 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
628 const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
629 const MCExpr *RHS = ApplyModifierToExpr(BE->getRHS(), Variant);
630
631 if (!LHS && !RHS)
632 return 0;
633
634 if (!LHS) LHS = BE->getLHS();
635 if (!RHS) RHS = BE->getRHS();
636
637 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
638 }
639 }
Daniel Dunbarf3f95c92010-09-17 16:34:24 +0000640
641 assert(0 && "Invalid expression kind!");
642 return 0;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000643}
644
Chris Lattner74ec1a32009-06-22 06:32:03 +0000645/// ParseExpression - Parse an expression and return it.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000646///
Chris Lattner74ec1a32009-06-22 06:32:03 +0000647/// expr ::= expr +,- expr -> lowest.
648/// expr ::= expr |,^,&,! expr -> middle.
649/// expr ::= expr *,/,%,<<,>> expr -> highest.
650/// expr ::= primaryexpr
651///
Chris Lattner54482b42010-01-15 19:39:23 +0000652bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000653 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000654 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000655 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
656 return true;
657
Daniel Dunbarcceba832010-09-17 02:47:07 +0000658 // As a special case, we support 'a op b @ modifier' by rewriting the
659 // expression to include the modifier. This is inefficient, but in general we
660 // expect users to use 'a@modifier op b'.
661 if (Lexer.getKind() == AsmToken::At) {
662 Lex();
663
664 if (Lexer.isNot(AsmToken::Identifier))
665 return TokError("unexpected symbol modifier following '@'");
666
667 MCSymbolRefExpr::VariantKind Variant =
668 MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
669 if (Variant == MCSymbolRefExpr::VK_Invalid)
670 return TokError("invalid variant '" + getTok().getIdentifier() + "'");
671
672 const MCExpr *ModifiedRes = ApplyModifierToExpr(Res, Variant);
673 if (!ModifiedRes) {
674 return TokError("invalid modifier '" + getTok().getIdentifier() +
675 "' (no symbols present)");
676 return true;
677 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000678
Daniel Dunbarcceba832010-09-17 02:47:07 +0000679 Res = ModifiedRes;
680 Lex();
681 }
682
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000683 // Try to constant fold it up front, if possible.
684 int64_t Value;
685 if (Res->EvaluateAsAbsolute(Value))
686 Res = MCConstantExpr::Create(Value, getContext());
687
688 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000689}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000690
Chris Lattnerb4307b32010-01-15 19:28:38 +0000691bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000692 Res = 0;
693 return ParseParenExpr(Res, EndLoc) ||
694 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000695}
696
Daniel Dunbar475839e2009-06-29 20:37:27 +0000697bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000698 const MCExpr *Expr;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000699
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000700 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar475839e2009-06-29 20:37:27 +0000701 if (ParseExpression(Expr))
702 return true;
703
Daniel Dunbare00b0112009-10-16 01:57:52 +0000704 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000705 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +0000706
707 return false;
708}
709
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000710static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000711 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000712 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000713 default:
714 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000715
Daniel Dunbarcceba832010-09-17 02:47:07 +0000716 // Lowest Precedence: &&, ||, @
Daniel Dunbar3f872332009-07-28 16:08:33 +0000717 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000718 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000719 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000720 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000721 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000722 return 1;
723
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000724
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000725 // Low Precedence: |, &, ^
Daniel Dunbar475839e2009-06-29 20:37:27 +0000726 //
727 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +0000728 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000729 Kind = MCBinaryExpr::Or;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000730 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000731 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000732 Kind = MCBinaryExpr::Xor;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000733 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000734 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000735 Kind = MCBinaryExpr::And;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000736 return 2;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000737
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000738 // Low Intermediate Precedence: ==, !=, <>, <, <=, >, >=
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000739 case AsmToken::EqualEqual:
740 Kind = MCBinaryExpr::EQ;
741 return 3;
742 case AsmToken::ExclaimEqual:
743 case AsmToken::LessGreater:
744 Kind = MCBinaryExpr::NE;
745 return 3;
746 case AsmToken::Less:
747 Kind = MCBinaryExpr::LT;
748 return 3;
749 case AsmToken::LessEqual:
750 Kind = MCBinaryExpr::LTE;
751 return 3;
752 case AsmToken::Greater:
753 Kind = MCBinaryExpr::GT;
754 return 3;
755 case AsmToken::GreaterEqual:
756 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000757 return 3;
758
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000759 // High Intermediate Precedence: +, -
760 case AsmToken::Plus:
761 Kind = MCBinaryExpr::Add;
762 return 4;
763 case AsmToken::Minus:
764 Kind = MCBinaryExpr::Sub;
765 return 4;
766
Daniel Dunbar475839e2009-06-29 20:37:27 +0000767 // Highest Precedence: *, /, %, <<, >>
Daniel Dunbar3f872332009-07-28 16:08:33 +0000768 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000769 Kind = MCBinaryExpr::Mul;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000770 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000771 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000772 Kind = MCBinaryExpr::Div;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000773 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000774 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000775 Kind = MCBinaryExpr::Mod;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000776 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000777 case AsmToken::LessLess:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000778 Kind = MCBinaryExpr::Shl;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000779 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000780 case AsmToken::GreaterGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000781 Kind = MCBinaryExpr::Shr;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000782 return 5;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000783 }
784}
785
786
787/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
788/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000789bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
790 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000791 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000792 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000793 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000794
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000795 // If the next token is lower precedence than we are allowed to eat, return
796 // successfully with what we ate already.
797 if (TokPrec < Precedence)
798 return false;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000799
Sean Callanan79ed1a82010-01-19 20:22:31 +0000800 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000801
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000802 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000803 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000804 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000805
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000806 // If BinOp binds less tightly with RHS than the operator after RHS, let
807 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000808 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000809 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000810 if (TokPrec < NextTokPrec) {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000811 if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000812 }
813
Daniel Dunbar475839e2009-06-29 20:37:27 +0000814 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000815 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000816 }
817}
818
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000819
820
821
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000822/// ParseStatement:
823/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +0000824/// ::= Label* Directive ...Operands... EndOfStatement
825/// ::= Label* Identifier OperandList* EndOfStatement
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000826bool AsmParser::ParseStatement() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000827 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000828 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000829 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000830 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000831 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000832
833 // Statements always start with an identifier.
Sean Callanan18b83232010-01-19 21:44:56 +0000834 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +0000835 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000836 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000837 int64_t LocalLabelVal = -1;
838 // GUESS allow an integer followed by a ':' as a directional local label
839 if (Lexer.is(AsmToken::Integer)) {
840 LocalLabelVal = getTok().getIntVal();
841 if (LocalLabelVal < 0) {
842 if (!TheCondState.Ignore)
843 return TokError("unexpected token at start of statement");
844 IDVal = "";
845 }
846 else {
847 IDVal = getTok().getString();
848 Lex(); // Consume the integer token to be used as an identifier token.
849 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +0000850 if (!TheCondState.Ignore)
851 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000852 }
853 }
854 }
855 else if (ParseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +0000856 if (!TheCondState.Ignore)
857 return TokError("unexpected token at start of statement");
858 IDVal = "";
859 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000860
Chris Lattner7834fac2010-04-17 18:14:27 +0000861 // Handle conditional assembly here before checking for skipping. We
862 // have to do this so that .endif isn't skipped in a ".if 0" block for
863 // example.
864 if (IDVal == ".if")
865 return ParseDirectiveIf(IDLoc);
866 if (IDVal == ".elseif")
867 return ParseDirectiveElseIf(IDLoc);
868 if (IDVal == ".else")
869 return ParseDirectiveElse(IDLoc);
870 if (IDVal == ".endif")
871 return ParseDirectiveEndIf(IDLoc);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000872
Chris Lattner7834fac2010-04-17 18:14:27 +0000873 // If we are in a ".if 0" block, ignore this statement.
874 if (TheCondState.Ignore) {
875 EatToEndOfStatement();
876 return false;
877 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000878
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000879 // FIXME: Recurse on local labels?
880
881 // See what kind of statement we have.
882 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000883 case AsmToken::Colon: {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000884 CheckForValidSection();
885
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000886 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000887 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000888
889 // Diagnose attempt to use a variable as a label.
890 //
891 // FIXME: Diagnostics. Note the location of the definition as a label.
892 // FIXME: This doesn't diagnose assignment to a symbol which has been
893 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000894 MCSymbol *Sym;
895 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000896 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000897 else
898 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +0000899 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000900 return Error(IDLoc, "invalid symbol redefinition");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000901
Daniel Dunbar959fd882009-08-26 22:13:22 +0000902 // Emit the label.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000903 Out.EmitLabel(Sym);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000904
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000905 // Consume any end of statement token, if present, to avoid spurious
906 // AddBlankLine calls().
907 if (Lexer.is(AsmToken::EndOfStatement)) {
908 Lex();
909 if (Lexer.is(AsmToken::Eof))
910 return false;
911 }
912
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000913 return ParseStatement();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000914 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000915
Daniel Dunbar3f872332009-07-28 16:08:33 +0000916 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000917 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +0000918 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000919
Daniel Dunbare2ace502009-08-31 08:09:09 +0000920 return ParseAssignment(IDVal);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000921
922 default: // Normal instruction or directive.
923 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000924 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000925
926 // If macros are enabled, check to see if this is a macro instantiation.
927 if (MacrosEnabled)
928 if (const Macro *M = MacroMap.lookup(IDVal))
929 return HandleMacroEntry(IDVal, IDLoc, M);
930
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000931 // Otherwise, we have a normal instruction or directive.
Chris Lattner2cf5f142009-06-22 01:29:09 +0000932 if (IDVal[0] == '.') {
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000933 // Assembler features
Roman Divacky50e7a782010-10-28 16:22:58 +0000934 if (IDVal == ".set" || IDVal == ".equ")
935 return ParseDirectiveSet(IDVal);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000936
Daniel Dunbara0d14262009-06-24 23:30:00 +0000937 // Data directives
938
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000939 if (IDVal == ".ascii")
Rafael Espindola787c3372010-10-28 20:02:27 +0000940 return ParseDirectiveAscii(IDVal, false);
941 if (IDVal == ".asciz" || IDVal == ".string")
942 return ParseDirectiveAscii(IDVal, true);
Daniel Dunbara0d14262009-06-24 23:30:00 +0000943
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000944 if (IDVal == ".byte")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000945 return ParseDirectiveValue(1);
Kevin Enderby9c656452009-09-10 20:51:44 +0000946 if (IDVal == ".short")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000947 return ParseDirectiveValue(2);
Rafael Espindolacc3acee2010-11-01 15:29:07 +0000948 if (IDVal == ".value")
949 return ParseDirectiveValue(2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000950 if (IDVal == ".long")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000951 return ParseDirectiveValue(4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000952 if (IDVal == ".quad")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000953 return ParseDirectiveValue(8);
Daniel Dunbarb95a0792010-09-24 01:59:56 +0000954 if (IDVal == ".single")
955 return ParseDirectiveRealValue(APFloat::IEEEsingle);
956 if (IDVal == ".double")
957 return ParseDirectiveRealValue(APFloat::IEEEdouble);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000958
Eli Friedman5d68ec22010-07-19 04:17:25 +0000959 if (IDVal == ".align") {
960 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
961 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
962 }
963 if (IDVal == ".align32") {
964 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
965 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
966 }
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000967 if (IDVal == ".balign")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000968 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000969 if (IDVal == ".balignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000970 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000971 if (IDVal == ".balignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000972 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000973 if (IDVal == ".p2align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000974 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000975 if (IDVal == ".p2alignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000976 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000977 if (IDVal == ".p2alignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000978 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
979
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000980 if (IDVal == ".org")
Daniel Dunbarc238b582009-06-25 22:44:51 +0000981 return ParseDirectiveOrg();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000982
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000983 if (IDVal == ".fill")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000984 return ParseDirectiveFill();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000985 if (IDVal == ".space")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000986 return ParseDirectiveSpace();
Rafael Espindola2ea2ac72010-09-16 15:03:59 +0000987 if (IDVal == ".zero")
988 return ParseDirectiveZero();
Daniel Dunbara0d14262009-06-24 23:30:00 +0000989
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000990 // Symbol attribute directives
Daniel Dunbard0c14d62009-08-11 04:24:50 +0000991
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000992 if (IDVal == ".globl" || IDVal == ".global")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000993 return ParseDirectiveSymbolAttribute(MCSA_Global);
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000994 // ELF only? Should it be here?
995 if (IDVal == ".local")
996 return ParseDirectiveSymbolAttribute(MCSA_Local);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000997 if (IDVal == ".hidden")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000998 return ParseDirectiveSymbolAttribute(MCSA_Hidden);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000999 if (IDVal == ".indirect_symbol")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001000 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001001 if (IDVal == ".internal")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001002 return ParseDirectiveSymbolAttribute(MCSA_Internal);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001003 if (IDVal == ".lazy_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001004 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001005 if (IDVal == ".no_dead_strip")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001006 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001007 if (IDVal == ".private_extern")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001008 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001009 if (IDVal == ".protected")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001010 return ParseDirectiveSymbolAttribute(MCSA_Protected);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001011 if (IDVal == ".reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001012 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001013 if (IDVal == ".weak")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001014 return ParseDirectiveSymbolAttribute(MCSA_Weak);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001015 if (IDVal == ".weak_definition")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001016 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001017 if (IDVal == ".weak_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001018 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Kevin Enderbyf59cac52010-07-08 17:22:42 +00001019 if (IDVal == ".weak_def_can_be_hidden")
1020 return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001021
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001022 if (IDVal == ".comm")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001023 return ParseDirectiveComm(/*IsLocal=*/false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001024 if (IDVal == ".lcomm")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001025 return ParseDirectiveComm(/*IsLocal=*/true);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001026
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001027 if (IDVal == ".abort")
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001028 return ParseDirectiveAbort();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001029 if (IDVal == ".include")
Kevin Enderby1f049b22009-07-14 23:21:55 +00001030 return ParseDirectiveInclude();
Kevin Enderbya5c78322009-07-13 21:03:15 +00001031
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001032 // Look up the handler in the handler table.
1033 std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
1034 DirectiveMap.lookup(IDVal);
1035 if (Handler.first)
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +00001036 return (*Handler.second)(Handler.first, IDVal, IDLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001037
Kevin Enderby9c656452009-09-10 20:51:44 +00001038 // Target hook for parsing target specific directives.
1039 if (!getTargetParser().ParseDirective(ID))
1040 return false;
1041
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001042 Warning(IDLoc, "ignoring directive for now");
Chris Lattner2cf5f142009-06-22 01:29:09 +00001043 EatToEndOfStatement();
1044 return false;
1045 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001046
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001047 CheckForValidSection();
1048
Chris Lattnera7f13542010-05-19 23:34:33 +00001049 // Canonicalize the opcode to lower case.
1050 SmallString<128> Opcode;
1051 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
1052 Opcode.push_back(tolower(IDVal[i]));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001053
Chris Lattner98986712010-01-14 22:21:20 +00001054 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
Chris Lattnera7f13542010-05-19 23:34:33 +00001055 bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc,
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001056 ParsedOperands);
Chris Lattner2cf5f142009-06-22 01:29:09 +00001057
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001058 // Dump the parsed representation, if requested.
1059 if (getShowParsedOperands()) {
1060 SmallString<256> Str;
1061 raw_svector_ostream OS(Str);
1062 OS << "parsed instruction: [";
1063 for (unsigned i = 0; i != ParsedOperands.size(); ++i) {
1064 if (i != 0)
1065 OS << ", ";
1066 ParsedOperands[i]->dump(OS);
1067 }
1068 OS << "]";
1069
1070 PrintMessage(IDLoc, OS.str(), "note");
1071 }
1072
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001073 // If parsing succeeded, match the instruction.
Chris Lattner7036f8b2010-09-29 01:42:58 +00001074 if (!HadError)
1075 HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, ParsedOperands,
1076 Out);
Chris Lattner98986712010-01-14 22:21:20 +00001077
Chris Lattner98986712010-01-14 22:21:20 +00001078 // Free any parsed operands.
1079 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
1080 delete ParsedOperands[i];
1081
Chris Lattnercbf8a982010-09-11 16:18:25 +00001082 // Don't skip the rest of the line, the instruction parser is responsible for
1083 // that.
1084 return false;
Chris Lattner27aa7d22009-06-21 20:16:42 +00001085}
Chris Lattner9a023f72009-06-24 04:43:34 +00001086
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001087MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
1088 const std::vector<std::vector<AsmToken> > &A)
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001089 : TheMacro(M), InstantiationLoc(IL), ExitLoc(EL)
1090{
1091 // Macro instantiation is lexical, unfortunately. We construct a new buffer
1092 // to hold the macro body with substitutions.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001093 SmallString<256> Buf;
1094 raw_svector_ostream OS(Buf);
1095
1096 StringRef Body = M->Body;
1097 while (!Body.empty()) {
1098 // Scan for the next substitution.
1099 std::size_t End = Body.size(), Pos = 0;
1100 for (; Pos != End; ++Pos) {
1101 // Check for a substitution or escape.
1102 if (Body[Pos] != '$' || Pos + 1 == End)
1103 continue;
1104
1105 char Next = Body[Pos + 1];
1106 if (Next == '$' || Next == 'n' || isdigit(Next))
1107 break;
1108 }
1109
1110 // Add the prefix.
1111 OS << Body.slice(0, Pos);
1112
1113 // Check if we reached the end.
1114 if (Pos == End)
1115 break;
1116
1117 switch (Body[Pos+1]) {
1118 // $$ => $
1119 case '$':
1120 OS << '$';
1121 break;
1122
1123 // $n => number of arguments
1124 case 'n':
1125 OS << A.size();
1126 break;
1127
1128 // $[0-9] => argument
1129 default: {
1130 // Missing arguments are ignored.
1131 unsigned Index = Body[Pos+1] - '0';
1132 if (Index >= A.size())
1133 break;
1134
1135 // Otherwise substitute with the token values, with spaces eliminated.
1136 for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
1137 ie = A[Index].end(); it != ie; ++it)
1138 OS << it->getString();
1139 break;
1140 }
1141 }
1142
1143 // Update the scan point.
1144 Body = Body.substr(Pos + 2);
1145 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001146
1147 // We include the .endmacro in the buffer as our queue to exit the macro
1148 // instantiation.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001149 OS << ".endmacro\n";
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001150
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001151 Instantiation = MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001152}
1153
1154bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
1155 const Macro *M) {
1156 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1157 // this, although we should protect against infinite loops.
1158 if (ActiveMacros.size() == 20)
1159 return TokError("macros cannot be nested more than 20 levels deep");
1160
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001161 // Parse the macro instantiation arguments.
1162 std::vector<std::vector<AsmToken> > MacroArguments;
1163 MacroArguments.push_back(std::vector<AsmToken>());
1164 unsigned ParenLevel = 0;
1165 for (;;) {
1166 if (Lexer.is(AsmToken::Eof))
1167 return TokError("unexpected token in macro instantiation");
1168 if (Lexer.is(AsmToken::EndOfStatement))
1169 break;
1170
1171 // If we aren't inside parentheses and this is a comma, start a new token
1172 // list.
1173 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1174 MacroArguments.push_back(std::vector<AsmToken>());
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001175 } else {
Daniel Dunbare25c6b92010-08-10 17:38:52 +00001176 // Adjust the current parentheses level.
1177 if (Lexer.is(AsmToken::LParen))
1178 ++ParenLevel;
1179 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1180 --ParenLevel;
1181
1182 // Append the token to the current argument list.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001183 MacroArguments.back().push_back(getTok());
1184 }
1185 Lex();
1186 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001187
1188 // Create the macro instantiation object and add to the current macro
1189 // instantiation stack.
1190 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001191 getTok().getLoc(),
1192 MacroArguments);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001193 ActiveMacros.push_back(MI);
1194
1195 // Jump to the macro instantiation and prime the lexer.
1196 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1197 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1198 Lex();
1199
1200 return false;
1201}
1202
1203void AsmParser::HandleMacroExit() {
1204 // Jump to the EndOfStatement we should return to, and consume it.
1205 JumpToLoc(ActiveMacros.back()->ExitLoc);
1206 Lex();
1207
1208 // Pop the instantiation entry.
1209 delete ActiveMacros.back();
1210 ActiveMacros.pop_back();
1211}
1212
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001213static void MarkUsed(const MCExpr *Value) {
1214 switch (Value->getKind()) {
1215 case MCExpr::Binary:
1216 MarkUsed(static_cast<const MCBinaryExpr*>(Value)->getLHS());
1217 MarkUsed(static_cast<const MCBinaryExpr*>(Value)->getRHS());
1218 break;
1219 case MCExpr::Target:
1220 case MCExpr::Constant:
1221 break;
1222 case MCExpr::SymbolRef: {
1223 static_cast<const MCSymbolRefExpr*>(Value)->getSymbol().setUsed(true);
1224 break;
1225 }
1226 case MCExpr::Unary:
1227 MarkUsed(static_cast<const MCUnaryExpr*>(Value)->getSubExpr());
1228 break;
1229 }
1230}
1231
Benjamin Kramer38e59892010-07-14 22:38:02 +00001232bool AsmParser::ParseAssignment(StringRef Name) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001233 // FIXME: Use better location, we should use proper tokens.
1234 SMLoc EqualLoc = Lexer.getLoc();
1235
Daniel Dunbar821e3332009-08-31 08:09:28 +00001236 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001237 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001238 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001239
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001240 MarkUsed(Value);
1241
Daniel Dunbar3f872332009-07-28 16:08:33 +00001242 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001243 return TokError("unexpected token in assignment");
1244
1245 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001246 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001247
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001248 // Validate that the LHS is allowed to be a variable (either it has not been
1249 // used as a symbol, or it is an absolute symbol).
1250 MCSymbol *Sym = getContext().LookupSymbol(Name);
1251 if (Sym) {
1252 // Diagnose assignment to a label.
1253 //
1254 // FIXME: Diagnostics. Note the location of the definition as a label.
1255 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001256 if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001257 ; // Allow redefinitions of undefined symbols only used in directives.
1258 else if (!Sym->isUndefined() && !Sym->isAbsolute())
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001259 return Error(EqualLoc, "redefinition of '" + Name + "'");
1260 else if (!Sym->isVariable())
1261 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00001262 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001263 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1264 Name + "'");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001265
1266 // Don't count these checks as uses.
1267 Sym->setUsed(false);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001268 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001269 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001270
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001271 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001272
1273 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00001274 Out.EmitAssignment(Sym, Value);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001275
1276 return false;
1277}
1278
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001279/// ParseIdentifier:
1280/// ::= identifier
1281/// ::= string
1282bool AsmParser::ParseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00001283 // The assembler has relaxed rules for accepting identifiers, in particular we
1284 // allow things like '.globl $foo', which would normally be separate
1285 // tokens. At this level, we have already lexed so we cannot (currently)
1286 // handle this as a context dependent token, instead we detect adjacent tokens
1287 // and return the combined identifier.
1288 if (Lexer.is(AsmToken::Dollar)) {
1289 SMLoc DollarLoc = getLexer().getLoc();
1290
1291 // Consume the dollar sign, and check for a following identifier.
1292 Lex();
1293 if (Lexer.isNot(AsmToken::Identifier))
1294 return true;
1295
1296 // We have a '$' followed by an identifier, make sure they are adjacent.
1297 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
1298 return true;
1299
1300 // Construct the joined identifier and consume the token.
1301 Res = StringRef(DollarLoc.getPointer(),
1302 getTok().getIdentifier().size() + 1);
1303 Lex();
1304 return false;
1305 }
1306
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001307 if (Lexer.isNot(AsmToken::Identifier) &&
1308 Lexer.isNot(AsmToken::String))
1309 return true;
1310
Sean Callanan18b83232010-01-19 21:44:56 +00001311 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001312
Sean Callanan79ed1a82010-01-19 20:22:31 +00001313 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001314
1315 return false;
1316}
1317
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001318/// ParseDirectiveSet:
1319/// ::= .set identifier ',' expression
Roman Divacky50e7a782010-10-28 16:22:58 +00001320bool AsmParser::ParseDirectiveSet(StringRef IDVal) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001321 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001322
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001323 if (ParseIdentifier(Name))
Roman Divackyf9d17522010-10-28 16:57:58 +00001324 return TokError("expected identifier after '" + Twine(IDVal) + "'");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001325
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001326 if (getLexer().isNot(AsmToken::Comma))
Roman Divackyf9d17522010-10-28 16:57:58 +00001327 return TokError("unexpected token in '" + Twine(IDVal) + "'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001328 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001329
Daniel Dunbare2ace502009-08-31 08:09:09 +00001330 return ParseAssignment(Name);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001331}
1332
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001333bool AsmParser::ParseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001334 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001335
1336 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00001337 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001338 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1339 if (Str[i] != '\\') {
1340 Data += Str[i];
1341 continue;
1342 }
1343
1344 // Recognize escaped characters. Note that this escape semantics currently
1345 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1346 ++i;
1347 if (i == e)
1348 return TokError("unexpected backslash at end of string");
1349
1350 // Recognize octal sequences.
1351 if ((unsigned) (Str[i] - '0') <= 7) {
1352 // Consume up to three octal characters.
1353 unsigned Value = Str[i] - '0';
1354
1355 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1356 ++i;
1357 Value = Value * 8 + (Str[i] - '0');
1358
1359 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1360 ++i;
1361 Value = Value * 8 + (Str[i] - '0');
1362 }
1363 }
1364
1365 if (Value > 255)
1366 return TokError("invalid octal escape sequence (out of range)");
1367
1368 Data += (unsigned char) Value;
1369 continue;
1370 }
1371
1372 // Otherwise recognize individual escapes.
1373 switch (Str[i]) {
1374 default:
1375 // Just reject invalid escape sequences for now.
1376 return TokError("invalid escape sequence (unrecognized character)");
1377
1378 case 'b': Data += '\b'; break;
1379 case 'f': Data += '\f'; break;
1380 case 'n': Data += '\n'; break;
1381 case 'r': Data += '\r'; break;
1382 case 't': Data += '\t'; break;
1383 case '"': Data += '"'; break;
1384 case '\\': Data += '\\'; break;
1385 }
1386 }
1387
1388 return false;
1389}
1390
Daniel Dunbara0d14262009-06-24 23:30:00 +00001391/// ParseDirectiveAscii:
Rafael Espindola787c3372010-10-28 20:02:27 +00001392/// ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
1393bool AsmParser::ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001394 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001395 CheckForValidSection();
1396
Daniel Dunbara0d14262009-06-24 23:30:00 +00001397 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001398 if (getLexer().isNot(AsmToken::String))
Rafael Espindola787c3372010-10-28 20:02:27 +00001399 return TokError("expected string in '" + Twine(IDVal) + "' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001400
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001401 std::string Data;
1402 if (ParseEscapedString(Data))
1403 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001404
1405 getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001406 if (ZeroTerminated)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001407 getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
1408
Sean Callanan79ed1a82010-01-19 20:22:31 +00001409 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001410
1411 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001412 break;
1413
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001414 if (getLexer().isNot(AsmToken::Comma))
Rafael Espindola787c3372010-10-28 20:02:27 +00001415 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001416 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001417 }
1418 }
1419
Sean Callanan79ed1a82010-01-19 20:22:31 +00001420 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001421 return false;
1422}
1423
1424/// ParseDirectiveValue
1425/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
1426bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001427 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001428 CheckForValidSection();
1429
Daniel Dunbara0d14262009-06-24 23:30:00 +00001430 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001431 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001432 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001433 return true;
1434
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001435 // Special case constant expressions to match code generator.
1436 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value))
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001437 getStreamer().EmitIntValue(MCE->getValue(), Size, DEFAULT_ADDRSPACE);
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001438 else
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001439 getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001440
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001441 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001442 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001443
Daniel Dunbara0d14262009-06-24 23:30:00 +00001444 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001445 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001446 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001447 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001448 }
1449 }
1450
Sean Callanan79ed1a82010-01-19 20:22:31 +00001451 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001452 return false;
1453}
1454
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001455/// ParseDirectiveRealValue
1456/// ::= (.single | .double) [ expression (, expression)* ]
1457bool AsmParser::ParseDirectiveRealValue(const fltSemantics &Semantics) {
1458 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1459 CheckForValidSection();
1460
1461 for (;;) {
1462 // We don't truly support arithmetic on floating point expressions, so we
1463 // have to manually parse unary prefixes.
1464 bool IsNeg = false;
1465 if (getLexer().is(AsmToken::Minus)) {
1466 Lex();
1467 IsNeg = true;
1468 } else if (getLexer().is(AsmToken::Plus))
1469 Lex();
1470
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001471 if (getLexer().isNot(AsmToken::Integer) &&
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001472 getLexer().isNot(AsmToken::Real))
1473 return TokError("unexpected token in directive");
1474
1475 // Convert to an APFloat.
1476 APFloat Value(Semantics);
1477 if (Value.convertFromString(getTok().getString(),
1478 APFloat::rmNearestTiesToEven) ==
1479 APFloat::opInvalidOp)
1480 return TokError("invalid floating point literal");
1481 if (IsNeg)
1482 Value.changeSign();
1483
1484 // Consume the numeric token.
1485 Lex();
1486
1487 // Emit the value as an integer.
1488 APInt AsInt = Value.bitcastToAPInt();
1489 getStreamer().EmitIntValue(AsInt.getLimitedValue(),
1490 AsInt.getBitWidth() / 8, DEFAULT_ADDRSPACE);
1491
1492 if (getLexer().is(AsmToken::EndOfStatement))
1493 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001494
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001495 if (getLexer().isNot(AsmToken::Comma))
1496 return TokError("unexpected token in directive");
1497 Lex();
1498 }
1499 }
1500
1501 Lex();
1502 return false;
1503}
1504
Daniel Dunbara0d14262009-06-24 23:30:00 +00001505/// ParseDirectiveSpace
1506/// ::= .space expression [ , expression ]
1507bool AsmParser::ParseDirectiveSpace() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001508 CheckForValidSection();
1509
Daniel Dunbara0d14262009-06-24 23:30:00 +00001510 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001511 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001512 return true;
1513
1514 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001515 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1516 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001517 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001518 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001519
Daniel Dunbar475839e2009-06-29 20:37:27 +00001520 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001521 return true;
1522
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001523 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001524 return TokError("unexpected token in '.space' directive");
1525 }
1526
Sean Callanan79ed1a82010-01-19 20:22:31 +00001527 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001528
1529 if (NumBytes <= 0)
1530 return TokError("invalid number of bytes in '.space' directive");
1531
1532 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001533 getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001534
1535 return false;
1536}
1537
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001538/// ParseDirectiveZero
1539/// ::= .zero expression
1540bool AsmParser::ParseDirectiveZero() {
1541 CheckForValidSection();
1542
1543 int64_t NumBytes;
1544 if (ParseAbsoluteExpression(NumBytes))
1545 return true;
1546
Rafael Espindolae452b172010-10-05 19:42:57 +00001547 int64_t Val = 0;
1548 if (getLexer().is(AsmToken::Comma)) {
1549 Lex();
1550 if (ParseAbsoluteExpression(Val))
1551 return true;
1552 }
1553
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001554 if (getLexer().isNot(AsmToken::EndOfStatement))
1555 return TokError("unexpected token in '.zero' directive");
1556
1557 Lex();
1558
Rafael Espindolae452b172010-10-05 19:42:57 +00001559 getStreamer().EmitFill(NumBytes, Val, DEFAULT_ADDRSPACE);
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001560
1561 return false;
1562}
1563
Daniel Dunbara0d14262009-06-24 23:30:00 +00001564/// ParseDirectiveFill
1565/// ::= .fill expression , expression , expression
1566bool AsmParser::ParseDirectiveFill() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001567 CheckForValidSection();
1568
Daniel Dunbara0d14262009-06-24 23:30:00 +00001569 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001570 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001571 return true;
1572
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001573 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001574 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001575 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001576
Daniel Dunbara0d14262009-06-24 23:30:00 +00001577 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001578 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001579 return true;
1580
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001581 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001582 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001583 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001584
Daniel Dunbara0d14262009-06-24 23:30:00 +00001585 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001586 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001587 return true;
1588
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001589 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001590 return TokError("unexpected token in '.fill' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001591
Sean Callanan79ed1a82010-01-19 20:22:31 +00001592 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001593
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00001594 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
1595 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00001596
1597 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001598 getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001599
1600 return false;
1601}
Daniel Dunbarc238b582009-06-25 22:44:51 +00001602
1603/// ParseDirectiveOrg
1604/// ::= .org expression [ , expression ]
1605bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001606 CheckForValidSection();
1607
Daniel Dunbar821e3332009-08-31 08:09:28 +00001608 const MCExpr *Offset;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001609 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001610 return true;
1611
1612 // Parse optional fill expression.
1613 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001614 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1615 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001616 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001617 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001618
Daniel Dunbar475839e2009-06-29 20:37:27 +00001619 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001620 return true;
1621
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001622 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001623 return TokError("unexpected token in '.org' directive");
1624 }
1625
Sean Callanan79ed1a82010-01-19 20:22:31 +00001626 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001627
1628 // FIXME: Only limited forms of relocatable expressions are accepted here, it
1629 // has to be relative to the current section.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001630 getStreamer().EmitValueToOffset(Offset, FillExpr);
Daniel Dunbarc238b582009-06-25 22:44:51 +00001631
1632 return false;
1633}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001634
1635/// ParseDirectiveAlign
1636/// ::= {.align, ...} expression [ , expression [ , expression ]]
1637bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001638 CheckForValidSection();
1639
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001640 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001641 int64_t Alignment;
1642 if (ParseAbsoluteExpression(Alignment))
1643 return true;
1644
1645 SMLoc MaxBytesLoc;
1646 bool HasFillExpr = false;
1647 int64_t FillExpr = 0;
1648 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001649 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1650 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001651 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001652 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001653
1654 // The fill expression can be omitted while specifying a maximum number of
1655 // alignment bytes, e.g:
1656 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001657 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001658 HasFillExpr = true;
1659 if (ParseAbsoluteExpression(FillExpr))
1660 return true;
1661 }
1662
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001663 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1664 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001665 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001666 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001667
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001668 MaxBytesLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001669 if (ParseAbsoluteExpression(MaxBytesToFill))
1670 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001671
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001672 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001673 return TokError("unexpected token in directive");
1674 }
1675 }
1676
Sean Callanan79ed1a82010-01-19 20:22:31 +00001677 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001678
Daniel Dunbar648ac512010-05-17 21:54:30 +00001679 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001680 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001681
1682 // Compute alignment in bytes.
1683 if (IsPow2) {
1684 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001685 if (Alignment >= 32) {
1686 Error(AlignmentLoc, "invalid alignment value");
1687 Alignment = 31;
1688 }
1689
Benjamin Kramer12fd7672009-09-06 09:35:10 +00001690 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001691 }
1692
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001693 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001694 if (MaxBytesLoc.isValid()) {
1695 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001696 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
1697 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00001698 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001699 }
1700
1701 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001702 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
1703 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001704 MaxBytesToFill = 0;
1705 }
1706 }
1707
Daniel Dunbar648ac512010-05-17 21:54:30 +00001708 // Check whether we should use optimal code alignment for this .align
1709 // directive.
Jan Wen Voung083cf152010-10-04 17:32:41 +00001710 bool UseCodeAlign = getStreamer().getCurrentSection()->UseCodeAlign();
Daniel Dunbar648ac512010-05-17 21:54:30 +00001711 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
1712 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001713 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001714 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00001715 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00001716 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
1717 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001718 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001719
1720 return false;
1721}
1722
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001723/// ParseDirectiveSymbolAttribute
1724/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001725bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001726 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001727 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001728 StringRef Name;
1729
1730 if (ParseIdentifier(Name))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001731 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001732
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001733 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001734
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001735 getStreamer().EmitSymbolAttribute(Sym, Attr);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001736
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001737 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001738 break;
1739
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001740 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001741 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001742 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001743 }
1744 }
1745
Sean Callanan79ed1a82010-01-19 20:22:31 +00001746 Lex();
Jan Wen Vounga854a4b2010-09-30 01:09:20 +00001747 return false;
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001748}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001749
1750/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00001751/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
1752bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001753 CheckForValidSection();
1754
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001755 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001756 StringRef Name;
1757 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001758 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001759
Daniel Dunbar76c4d762009-07-31 21:55:09 +00001760 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001761 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001762
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001763 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001764 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001765 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001766
1767 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001768 SMLoc SizeLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001769 if (ParseAbsoluteExpression(Size))
1770 return true;
1771
1772 int64_t Pow2Alignment = 0;
1773 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001774 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00001775 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001776 Pow2AlignmentLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001777 if (ParseAbsoluteExpression(Pow2Alignment))
1778 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001779
Chris Lattner258281d2010-01-19 06:22:22 +00001780 // If this target takes alignments in bytes (not log) validate and convert.
1781 if (Lexer.getMAI().getAlignmentIsInBytes()) {
1782 if (!isPowerOf2_64(Pow2Alignment))
1783 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
1784 Pow2Alignment = Log2_64(Pow2Alignment);
1785 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001786 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001787
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001788 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00001789 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001790
Sean Callanan79ed1a82010-01-19 20:22:31 +00001791 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001792
Chris Lattner1fc3d752009-07-09 17:25:12 +00001793 // NOTE: a size of zero for a .comm should create a undefined symbol
1794 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001795 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001796 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
1797 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001798
Eric Christopherc260a3e2010-05-14 01:38:54 +00001799 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001800 // may internally end up wanting an alignment in bytes.
1801 // FIXME: Diagnose overflow.
1802 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001803 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
1804 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001805
Daniel Dunbar8906ff12009-08-22 07:22:36 +00001806 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001807 return Error(IDLoc, "invalid symbol redefinition");
1808
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001809 // '.lcomm' is equivalent to '.zerofill'.
Chris Lattner1fc3d752009-07-09 17:25:12 +00001810 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001811 if (IsLocal) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001812 getStreamer().EmitZerofill(Ctx.getMachOSection(
1813 "__DATA", "__bss", MCSectionMachO::S_ZEROFILL,
1814 0, SectionKind::getBSS()),
1815 Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001816 return false;
1817 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001818
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001819 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001820 return false;
1821}
Chris Lattner9be3fee2009-07-10 22:20:30 +00001822
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001823/// ParseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001824/// ::= .abort [... message ...]
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001825bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001826 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001827 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001828
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001829 StringRef Str = ParseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001830 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001831 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001832
Sean Callanan79ed1a82010-01-19 20:22:31 +00001833 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001834
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001835 if (Str.empty())
1836 Error(Loc, ".abort detected. Assembly stopping.");
1837 else
1838 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001839 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001840
1841 return false;
1842}
Kevin Enderby71148242009-07-14 21:35:03 +00001843
Kevin Enderby1f049b22009-07-14 23:21:55 +00001844/// ParseDirectiveInclude
1845/// ::= .include "filename"
1846bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001847 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001848 return TokError("expected string in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001849
Sean Callanan18b83232010-01-19 21:44:56 +00001850 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001851 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001852 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00001853
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001854 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001855 return TokError("unexpected token in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001856
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001857 // Strip the quotes.
1858 Filename = Filename.substr(1, Filename.size()-2);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001859
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001860 // Attempt to switch the lexer to the included file before consuming the end
1861 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00001862 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00001863 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001864 return true;
1865 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00001866
1867 return false;
1868}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001869
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001870/// ParseDirectiveIf
1871/// ::= .if expression
1872bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001873 TheCondStack.push_back(TheCondState);
1874 TheCondState.TheCond = AsmCond::IfCond;
1875 if(TheCondState.Ignore) {
1876 EatToEndOfStatement();
1877 }
1878 else {
1879 int64_t ExprValue;
1880 if (ParseAbsoluteExpression(ExprValue))
1881 return true;
1882
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001883 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001884 return TokError("unexpected token in '.if' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001885
Sean Callanan79ed1a82010-01-19 20:22:31 +00001886 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001887
1888 TheCondState.CondMet = ExprValue;
1889 TheCondState.Ignore = !TheCondState.CondMet;
1890 }
1891
1892 return false;
1893}
1894
1895/// ParseDirectiveElseIf
1896/// ::= .elseif expression
1897bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
1898 if (TheCondState.TheCond != AsmCond::IfCond &&
1899 TheCondState.TheCond != AsmCond::ElseIfCond)
1900 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
1901 " an .elseif");
1902 TheCondState.TheCond = AsmCond::ElseIfCond;
1903
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001904 bool LastIgnoreState = false;
1905 if (!TheCondStack.empty())
1906 LastIgnoreState = TheCondStack.back().Ignore;
1907 if (LastIgnoreState || TheCondState.CondMet) {
1908 TheCondState.Ignore = true;
1909 EatToEndOfStatement();
1910 }
1911 else {
1912 int64_t ExprValue;
1913 if (ParseAbsoluteExpression(ExprValue))
1914 return true;
1915
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001916 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001917 return TokError("unexpected token in '.elseif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001918
Sean Callanan79ed1a82010-01-19 20:22:31 +00001919 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001920 TheCondState.CondMet = ExprValue;
1921 TheCondState.Ignore = !TheCondState.CondMet;
1922 }
1923
1924 return false;
1925}
1926
1927/// ParseDirectiveElse
1928/// ::= .else
1929bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001930 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001931 return TokError("unexpected token in '.else' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001932
Sean Callanan79ed1a82010-01-19 20:22:31 +00001933 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001934
1935 if (TheCondState.TheCond != AsmCond::IfCond &&
1936 TheCondState.TheCond != AsmCond::ElseIfCond)
1937 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
1938 ".elseif");
1939 TheCondState.TheCond = AsmCond::ElseCond;
1940 bool LastIgnoreState = false;
1941 if (!TheCondStack.empty())
1942 LastIgnoreState = TheCondStack.back().Ignore;
1943 if (LastIgnoreState || TheCondState.CondMet)
1944 TheCondState.Ignore = true;
1945 else
1946 TheCondState.Ignore = false;
1947
1948 return false;
1949}
1950
1951/// ParseDirectiveEndIf
1952/// ::= .endif
1953bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001954 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001955 return TokError("unexpected token in '.endif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001956
Sean Callanan79ed1a82010-01-19 20:22:31 +00001957 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001958
1959 if ((TheCondState.TheCond == AsmCond::NoCond) ||
1960 TheCondStack.empty())
1961 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
1962 ".else");
1963 if (!TheCondStack.empty()) {
1964 TheCondState = TheCondStack.back();
1965 TheCondStack.pop_back();
1966 }
1967
1968 return false;
1969}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001970
1971/// ParseDirectiveFile
1972/// ::= .file [number] string
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001973bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001974 // FIXME: I'm not sure what this is.
1975 int64_t FileNumber = -1;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00001976 SMLoc FileNumberLoc = getLexer().getLoc();
Daniel Dunbareceec052010-07-12 17:45:27 +00001977 if (getLexer().is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001978 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001979 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00001980
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001981 if (FileNumber < 1)
1982 return TokError("file number less than one");
1983 }
1984
Daniel Dunbareceec052010-07-12 17:45:27 +00001985 if (getLexer().isNot(AsmToken::String))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001986 return TokError("unexpected token in '.file' directive");
Daniel Dunbareceec052010-07-12 17:45:27 +00001987
Chris Lattnerd32e8032010-01-25 19:02:58 +00001988 StringRef Filename = getTok().getString();
1989 Filename = Filename.substr(1, Filename.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00001990 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001991
Daniel Dunbareceec052010-07-12 17:45:27 +00001992 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001993 return TokError("unexpected token in '.file' directive");
1994
Chris Lattnerd32e8032010-01-25 19:02:58 +00001995 if (FileNumber == -1)
Daniel Dunbareceec052010-07-12 17:45:27 +00001996 getStreamer().EmitFileDirective(Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00001997 else {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001998 if (getContext().GetDwarfFile(Filename, FileNumber) == 0)
1999 Error(FileNumberLoc, "file number already allocated");
Daniel Dunbareceec052010-07-12 17:45:27 +00002000 getStreamer().EmitDwarfFileDirective(FileNumber, Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002001 }
Daniel Dunbareceec052010-07-12 17:45:27 +00002002
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002003 return false;
2004}
2005
2006/// ParseDirectiveLine
2007/// ::= .line [number]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002008bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00002009 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2010 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002011 return TokError("unexpected token in '.line' directive");
2012
Sean Callanan18b83232010-01-19 21:44:56 +00002013 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002014 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00002015 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002016
2017 // FIXME: Do something with the .line.
2018 }
2019
Daniel Dunbareceec052010-07-12 17:45:27 +00002020 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbar839348a2010-07-01 20:20:01 +00002021 return TokError("unexpected token in '.line' directive");
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002022
2023 return false;
2024}
2025
2026
2027/// ParseDirectiveLoc
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002028/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002029/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2030/// The first number is a file number, must have been previously assigned with
2031/// a .file directive, the second number is the line number and optionally the
2032/// third number is a column position (zero if not specified). The remaining
2033/// optional items are .loc sub-directives.
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002034bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002035
Daniel Dunbareceec052010-07-12 17:45:27 +00002036 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002037 return TokError("unexpected token in '.loc' directive");
Sean Callanan18b83232010-01-19 21:44:56 +00002038 int64_t FileNumber = getTok().getIntVal();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002039 if (FileNumber < 1)
2040 return TokError("file number less than one in '.loc' directive");
Kevin Enderby3f55c242010-10-04 20:17:24 +00002041 if (!getContext().isValidDwarfFileNumber(FileNumber))
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002042 return TokError("unassigned file number in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002043 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002044
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002045 int64_t LineNumber = 0;
2046 if (getLexer().is(AsmToken::Integer)) {
2047 LineNumber = getTok().getIntVal();
2048 if (LineNumber < 1)
2049 return TokError("line number less than one in '.loc' directive");
2050 Lex();
2051 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002052
2053 int64_t ColumnPos = 0;
2054 if (getLexer().is(AsmToken::Integer)) {
2055 ColumnPos = getTok().getIntVal();
2056 if (ColumnPos < 0)
2057 return TokError("column position less than zero in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002058 Lex();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002059 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002060
Kevin Enderbyc0957932010-09-30 16:52:03 +00002061 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002062 unsigned Isa = 0;
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002063 int64_t Discriminator = 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002064 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2065 for (;;) {
2066 if (getLexer().is(AsmToken::EndOfStatement))
2067 break;
2068
2069 StringRef Name;
2070 SMLoc Loc = getTok().getLoc();
2071 if (getParser().ParseIdentifier(Name))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002072 return TokError("unexpected token in '.loc' directive");
2073
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002074 if (Name == "basic_block")
2075 Flags |= DWARF2_FLAG_BASIC_BLOCK;
2076 else if (Name == "prologue_end")
2077 Flags |= DWARF2_FLAG_PROLOGUE_END;
2078 else if (Name == "epilogue_begin")
2079 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2080 else if (Name == "is_stmt") {
2081 SMLoc Loc = getTok().getLoc();
2082 const MCExpr *Value;
2083 if (getParser().ParseExpression(Value))
2084 return true;
2085 // The expression must be the constant 0 or 1.
2086 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2087 int Value = MCE->getValue();
2088 if (Value == 0)
2089 Flags &= ~DWARF2_FLAG_IS_STMT;
2090 else if (Value == 1)
2091 Flags |= DWARF2_FLAG_IS_STMT;
2092 else
2093 return Error(Loc, "is_stmt value not 0 or 1");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002094 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002095 else {
2096 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2097 }
2098 }
2099 else if (Name == "isa") {
2100 SMLoc Loc = getTok().getLoc();
2101 const MCExpr *Value;
2102 if (getParser().ParseExpression(Value))
2103 return true;
2104 // The expression must be a constant greater or equal to 0.
2105 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2106 int Value = MCE->getValue();
2107 if (Value < 0)
2108 return Error(Loc, "isa number less than zero");
2109 Isa = Value;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002110 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002111 else {
2112 return Error(Loc, "isa number not a constant value");
2113 }
2114 }
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002115 else if (Name == "discriminator") {
2116 if (getParser().ParseAbsoluteExpression(Discriminator))
2117 return true;
2118 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002119 else {
2120 return Error(Loc, "unknown sub-directive in '.loc' directive");
2121 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002122
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002123 if (getLexer().is(AsmToken::EndOfStatement))
2124 break;
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002125 }
2126 }
2127
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002128 getContext().setCurrentDwarfLoc(FileNumber, LineNumber, ColumnPos, Flags,
2129 Isa, Discriminator);
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002130
2131 return false;
2132}
2133
Daniel Dunbar138abae2010-10-16 04:56:42 +00002134/// ParseDirectiveStabs
2135/// ::= .stabs string, number, number, number
2136bool GenericAsmParser::ParseDirectiveStabs(StringRef Directive,
2137 SMLoc DirectiveLoc) {
2138 return TokError("unsupported directive '" + Directive + "'");
2139}
2140
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002141/// ParseDirectiveCFIStartProc
2142/// ::= .cfi_startproc
2143bool GenericAsmParser::ParseDirectiveCFIStartProc(StringRef,
2144 SMLoc DirectiveLoc) {
2145 return false;
2146}
2147
2148/// ParseDirectiveCFIEndProc
2149/// ::= .cfi_endproc
2150bool GenericAsmParser::ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc) {
2151 return false;
2152}
2153
2154/// ParseDirectiveCFIDefCfaOffset
2155/// ::= .cfi_def_cfa_offset offset
2156bool GenericAsmParser::ParseDirectiveCFIDefCfaOffset(StringRef,
2157 SMLoc DirectiveLoc) {
2158 int64_t Offset = 0;
2159 if (getParser().ParseAbsoluteExpression(Offset))
2160 return true;
2161
2162 return false;
2163}
2164
2165/// ParseDirectiveCFIDefCfaRegister
2166/// ::= .cfi_def_cfa_register register
2167bool GenericAsmParser::ParseDirectiveCFIDefCfaRegister(StringRef,
2168 SMLoc DirectiveLoc) {
2169 int64_t Register = 0;
2170 if (getParser().ParseAbsoluteExpression(Register))
2171 return true;
2172 return false;
2173}
2174
2175/// ParseDirectiveCFIOffset
2176/// ::= .cfi_off register, offset
2177bool GenericAsmParser::ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc) {
2178 int64_t Register = 0;
2179 int64_t Offset = 0;
2180 if (getParser().ParseAbsoluteExpression(Register))
2181 return true;
2182
2183 if (getLexer().isNot(AsmToken::Comma))
2184 return TokError("unexpected token in directive");
2185 Lex();
2186
2187 if (getParser().ParseAbsoluteExpression(Offset))
2188 return true;
2189
2190 return false;
2191}
2192
2193/// ParseDirectiveCFIPersonalityOrLsda
2194/// ::= .cfi_personality encoding, [symbol_name]
2195/// ::= .cfi_lsda encoding, [symbol_name]
2196bool GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda(StringRef,
2197 SMLoc DirectiveLoc) {
2198 int64_t Encoding = 0;
2199 if (getParser().ParseAbsoluteExpression(Encoding))
2200 return true;
2201 if (Encoding == 255)
2202 return false;
2203
2204 if (getLexer().isNot(AsmToken::Comma))
2205 return TokError("unexpected token in directive");
2206 Lex();
2207
2208 StringRef Name;
2209 if (getParser().ParseIdentifier(Name))
2210 return TokError("expected identifier in directive");
2211 return false;
2212}
2213
Daniel Dunbar3c802de2010-07-18 18:38:02 +00002214/// ParseDirectiveMacrosOnOff
2215/// ::= .macros_on
2216/// ::= .macros_off
2217bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
2218 SMLoc DirectiveLoc) {
2219 if (getLexer().isNot(AsmToken::EndOfStatement))
2220 return Error(getLexer().getLoc(),
2221 "unexpected token in '" + Directive + "' directive");
2222
2223 getParser().MacrosEnabled = Directive == ".macros_on";
2224
2225 return false;
2226}
Daniel Dunbard1e3b442010-07-17 02:26:10 +00002227
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00002228/// ParseDirectiveMacro
2229/// ::= .macro name
2230bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
2231 SMLoc DirectiveLoc) {
2232 StringRef Name;
2233 if (getParser().ParseIdentifier(Name))
2234 return TokError("expected identifier in directive");
2235
2236 if (getLexer().isNot(AsmToken::EndOfStatement))
2237 return TokError("unexpected token in '.macro' directive");
2238
2239 // Eat the end of statement.
2240 Lex();
2241
2242 AsmToken EndToken, StartToken = getTok();
2243
2244 // Lex the macro definition.
2245 for (;;) {
2246 // Check whether we have reached the end of the file.
2247 if (getLexer().is(AsmToken::Eof))
2248 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
2249
2250 // Otherwise, check whether we have reach the .endmacro.
2251 if (getLexer().is(AsmToken::Identifier) &&
2252 (getTok().getIdentifier() == ".endm" ||
2253 getTok().getIdentifier() == ".endmacro")) {
2254 EndToken = getTok();
2255 Lex();
2256 if (getLexer().isNot(AsmToken::EndOfStatement))
2257 return TokError("unexpected token in '" + EndToken.getIdentifier() +
2258 "' directive");
2259 break;
2260 }
2261
2262 // Otherwise, scan til the end of the statement.
2263 getParser().EatToEndOfStatement();
2264 }
2265
2266 if (getParser().MacroMap.lookup(Name)) {
2267 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
2268 }
2269
2270 const char *BodyStart = StartToken.getLoc().getPointer();
2271 const char *BodyEnd = EndToken.getLoc().getPointer();
2272 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
2273 getParser().MacroMap[Name] = new Macro(Name, Body);
2274 return false;
2275}
2276
2277/// ParseDirectiveEndMacro
2278/// ::= .endm
2279/// ::= .endmacro
2280bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
2281 SMLoc DirectiveLoc) {
2282 if (getLexer().isNot(AsmToken::EndOfStatement))
2283 return TokError("unexpected token in '" + Directive + "' directive");
2284
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00002285 // If we are inside a macro instantiation, terminate the current
2286 // instantiation.
2287 if (!getParser().ActiveMacros.empty()) {
2288 getParser().HandleMacroExit();
2289 return false;
2290 }
2291
2292 // Otherwise, this .endmacro is a stray entry in the file; well formed
2293 // .endmacro directives are handled during the macro definition parsing.
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00002294 return TokError("unexpected '" + Directive + "' in file, "
2295 "no current macro definition");
2296}
2297
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002298bool GenericAsmParser::ParseDirectiveLEB128(StringRef DirName, SMLoc) {
Rafael Espindola3ff57092010-11-02 17:22:24 +00002299 getParser().CheckForValidSection();
2300
2301 const MCExpr *Value;
2302
2303 if (getParser().ParseExpression(Value))
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002304 return true;
2305
2306 if (getLexer().isNot(AsmToken::EndOfStatement))
2307 return TokError("unexpected token in directive");
2308
2309 if (DirName[1] == 's')
Rafael Espindola3ff57092010-11-02 17:22:24 +00002310 getStreamer().EmitSLEB128Value(Value);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002311 else
Rafael Espindola3ff57092010-11-02 17:22:24 +00002312 getStreamer().EmitULEB128Value(Value);
2313
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002314 return false;
2315}
2316
2317
Daniel Dunbard1e3b442010-07-17 02:26:10 +00002318/// \brief Create an MCAsmParser instance.
2319MCAsmParser *llvm::createMCAsmParser(const Target &T, SourceMgr &SM,
2320 MCContext &C, MCStreamer &Out,
2321 const MCAsmInfo &MAI) {
2322 return new AsmParser(T, SM, C, Out, MAI);
2323}