blob: 5e90898134f63f7b1a5e3d09d5eb85e964088192 [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.
180 bool ParseDirectiveAscii(bool ZeroTerminated); // ".ascii", ".asciiz"
181 bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
Daniel Dunbarb95a0792010-09-24 01:59:56 +0000182 bool ParseDirectiveRealValue(const fltSemantics &); // ".single", ...
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000183 bool ParseDirectiveFill(); // ".fill"
184 bool ParseDirectiveSpace(); // ".space"
Rafael Espindola2ea2ac72010-09-16 15:03:59 +0000185 bool ParseDirectiveZero(); // ".zero"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000186 bool ParseDirectiveSet(); // ".set"
187 bool ParseDirectiveOrg(); // ".org"
188 // ".align{,32}", ".p2align{,w,l}"
189 bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
190
191 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
192 /// accepts a single symbol (which should be a label or an external).
193 bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
194 bool ParseDirectiveELFType(); // ELF specific ".type"
195
196 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
197
198 bool ParseDirectiveAbort(); // ".abort"
199 bool ParseDirectiveInclude(); // ".include"
200
201 bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
202 bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
203 bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
204 bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
205
206 /// ParseEscapedString - Parse the current token as a string which may include
207 /// escaped characters and return the string contents.
208 bool ParseEscapedString(std::string &Data);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000209
210 const MCExpr *ApplyModifierToExpr(const MCExpr *E,
211 MCSymbolRefExpr::VariantKind Variant);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000212};
213
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000214/// \brief Generic implementations of directive handling, etc. which is shared
215/// (or the default, at least) for all assembler parser.
216class GenericAsmParser : public MCAsmParserExtension {
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000217 template<bool (GenericAsmParser::*Handler)(StringRef, SMLoc)>
218 void AddDirectiveHandler(StringRef Directive) {
219 getParser().AddDirectiveHandler(this, Directive,
220 HandleDirective<GenericAsmParser, Handler>);
221 }
222
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000223public:
224 GenericAsmParser() {}
225
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000226 AsmParser &getParser() {
227 return (AsmParser&) this->MCAsmParserExtension::getParser();
228 }
229
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000230 virtual void Initialize(MCAsmParser &Parser) {
231 // Call the base implementation.
232 this->MCAsmParserExtension::Initialize(Parser);
233
234 // Debugging directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000235 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveFile>(".file");
236 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLine>(".line");
237 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLoc>(".loc");
Daniel Dunbar138abae2010-10-16 04:56:42 +0000238 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveStabs>(".stabs");
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000239
240 // Macro directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000241 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
242 ".macros_on");
243 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
244 ".macros_off");
245 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacro>(".macro");
246 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endm");
247 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endmacro");
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000248
249 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".sleb128");
250 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".uleb128");
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000251 }
252
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000253 bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
254 bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
255 bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar138abae2010-10-16 04:56:42 +0000256 bool ParseDirectiveStabs(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000257
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000258 bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000259 bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
260 bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000261
262 void ParseUleb128(uint64_t Value);
263 void ParseSleb128(int64_t Value);
264 bool ParseDirectiveLEB128(StringRef, SMLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000265};
266
267}
268
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000269namespace llvm {
270
271extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000272extern MCAsmParserExtension *createELFAsmParser();
Michael J. Spencer7d490042010-10-09 11:01:07 +0000273extern MCAsmParserExtension *createCOFFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000274
275}
276
Chris Lattneraaec2052010-01-19 19:46:13 +0000277enum { DEFAULT_ADDRSPACE = 0 };
278
Daniel Dunbar9186fa62010-07-01 20:41:56 +0000279AsmParser::AsmParser(const Target &T, SourceMgr &_SM, MCContext &_Ctx,
280 MCStreamer &_Out, const MCAsmInfo &_MAI)
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000281 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM),
Daniel Dunbare4749702010-07-12 18:12:02 +0000282 GenericParser(new GenericAsmParser), PlatformParser(0),
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000283 CurBuffer(0), MacrosEnabled(true) {
Sean Callananfd0b0282010-01-21 00:19:58 +0000284 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000285
286 // Initialize the generic parser.
287 GenericParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000288
289 // Initialize the platform / file format parser.
290 //
291 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
292 // created.
Michael J. Spencer7d490042010-10-09 11:01:07 +0000293 if (_MAI.hasMicrosoftFastStdCallMangling()) {
294 PlatformParser = createCOFFAsmParser();
295 PlatformParser->Initialize(*this);
296 } else if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000297 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000298 PlatformParser->Initialize(*this);
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000299 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000300 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000301 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000302 }
Chris Lattnerebb89b42009-09-27 21:16:52 +0000303}
304
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000305AsmParser::~AsmParser() {
Daniel Dunbar56491302010-07-29 01:51:55 +0000306 assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
307
308 // Destroy any macros.
309 for (StringMap<Macro*>::iterator it = MacroMap.begin(),
310 ie = MacroMap.end(); it != ie; ++it)
311 delete it->getValue();
312
Daniel Dunbare4749702010-07-12 18:12:02 +0000313 delete PlatformParser;
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000314 delete GenericParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000315}
316
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000317void AsmParser::PrintMacroInstantiations() {
318 // Print the active macro instantiation stack.
319 for (std::vector<MacroInstantiation*>::const_reverse_iterator
320 it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
321 PrintMessage((*it)->InstantiationLoc, "while in macro instantiation",
322 "note");
323}
324
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000325void AsmParser::Warning(SMLoc L, const Twine &Msg) {
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000326 PrintMessage(L, Msg, "warning");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000327 PrintMacroInstantiations();
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000328}
329
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000330bool AsmParser::Error(SMLoc L, const Twine &Msg) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000331 HadError = true;
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000332 PrintMessage(L, Msg, "error");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000333 PrintMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000334 return true;
335}
336
Sean Callananfd0b0282010-01-21 00:19:58 +0000337bool AsmParser::EnterIncludeFile(const std::string &Filename) {
338 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc());
339 if (NewBuf == -1)
340 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000341
Sean Callananfd0b0282010-01-21 00:19:58 +0000342 CurBuffer = NewBuf;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000343
Sean Callananfd0b0282010-01-21 00:19:58 +0000344 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000345
Sean Callananfd0b0282010-01-21 00:19:58 +0000346 return false;
347}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000348
349void AsmParser::JumpToLoc(SMLoc Loc) {
350 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
351 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
352}
353
Sean Callananfd0b0282010-01-21 00:19:58 +0000354const AsmToken &AsmParser::Lex() {
355 const AsmToken *tok = &Lexer.Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000356
Sean Callananfd0b0282010-01-21 00:19:58 +0000357 if (tok->is(AsmToken::Eof)) {
358 // If this is the end of an included file, pop the parent file off the
359 // include stack.
360 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
361 if (ParentIncludeLoc != SMLoc()) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000362 JumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000363 tok = &Lexer.Lex();
364 }
365 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000366
Sean Callananfd0b0282010-01-21 00:19:58 +0000367 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000368 Error(Lexer.getErrLoc(), Lexer.getErr());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000369
Sean Callananfd0b0282010-01-21 00:19:58 +0000370 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000371}
372
Chris Lattner79180e22010-04-05 23:15:42 +0000373bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000374 // Create the initial section, if requested.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000375 if (!NoInitialTextSection)
Rafael Espindolad80781b2010-09-15 21:48:40 +0000376 Out.InitSections();
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000377
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000378 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000379 Lex();
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000380
381 HadError = false;
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000382 AsmCond StartingCondState = TheCondState;
383
Chris Lattnerb717fb02009-07-02 21:53:43 +0000384 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000385 while (Lexer.isNot(AsmToken::Eof)) {
Chris Lattnerb717fb02009-07-02 21:53:43 +0000386 if (!ParseStatement()) continue;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000387
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000388 // We had an error, validate that one was emitted and recover by skipping to
389 // the next line.
390 assert(HadError && "Parse statement returned an error, but none emitted!");
Chris Lattnerb717fb02009-07-02 21:53:43 +0000391 EatToEndOfStatement();
392 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000393
394 if (TheCondState.TheCond != StartingCondState.TheCond ||
395 TheCondState.Ignore != StartingCondState.Ignore)
396 return TokError("unmatched .ifs or .elses");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000397
398 // Check to see there are no empty DwarfFile slots.
399 const std::vector<MCDwarfFile *> &MCDwarfFiles =
400 getContext().getMCDwarfFiles();
401 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000402 if (!MCDwarfFiles[i])
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000403 TokError("unassigned file number: " + Twine(i) + " for .file directives");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000404 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000405
Chris Lattner79180e22010-04-05 23:15:42 +0000406 // Finalize the output stream if there are no errors and if the client wants
407 // us to.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000408 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000409 Out.Finish();
410
Chris Lattnerb717fb02009-07-02 21:53:43 +0000411 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000412}
413
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000414void AsmParser::CheckForValidSection() {
415 if (!getStreamer().getCurrentSection()) {
416 TokError("expected section directive before assembly directive");
417 Out.SwitchSection(Ctx.getMachOSection(
418 "__TEXT", "__text",
419 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
420 0, SectionKind::getText()));
421 }
422}
423
Chris Lattner2cf5f142009-06-22 01:29:09 +0000424/// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
425void AsmParser::EatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000426 while (Lexer.isNot(AsmToken::EndOfStatement) &&
427 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000428 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000429
Chris Lattner2cf5f142009-06-22 01:29:09 +0000430 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000431 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000432 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000433}
434
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000435StringRef AsmParser::ParseStringToEndOfStatement() {
436 const char *Start = getTok().getLoc().getPointer();
437
438 while (Lexer.isNot(AsmToken::EndOfStatement) &&
439 Lexer.isNot(AsmToken::Eof))
440 Lex();
441
442 const char *End = getTok().getLoc().getPointer();
443 return StringRef(Start, End - Start);
444}
Chris Lattnerc4193832009-06-22 05:51:26 +0000445
Chris Lattner74ec1a32009-06-22 06:32:03 +0000446/// ParseParenExpr - Parse a paren expression and return it.
447/// NOTE: This assumes the leading '(' has already been consumed.
448///
449/// parenexpr ::= expr)
450///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000451bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner74ec1a32009-06-22 06:32:03 +0000452 if (ParseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000453 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000454 return TokError("expected ')' in parentheses expression");
Chris Lattnerb4307b32010-01-15 19:28:38 +0000455 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000456 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000457 return false;
458}
Chris Lattnerc4193832009-06-22 05:51:26 +0000459
Chris Lattner74ec1a32009-06-22 06:32:03 +0000460/// ParsePrimaryExpr - Parse a primary expression and return it.
461/// primaryexpr ::= (parenexpr
462/// primaryexpr ::= symbol
463/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000464/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000465/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000466bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000467 switch (Lexer.getKind()) {
468 default:
469 return TokError("unknown token in expression");
Daniel Dunbar3f872332009-07-28 16:08:33 +0000470 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000471 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000472 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000473 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000474 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000475 return false;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000476 case AsmToken::Dollar:
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000477 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000478 case AsmToken::Identifier: {
Daniel Dunbare17edff2010-08-24 19:13:42 +0000479 EndLoc = Lexer.getLoc();
480
481 StringRef Identifier;
482 if (ParseIdentifier(Identifier))
483 return false;
484
Daniel Dunbarfffff912009-10-16 01:34:54 +0000485 // This is a symbol reference.
Daniel Dunbare17edff2010-08-24 19:13:42 +0000486 std::pair<StringRef, StringRef> Split = Identifier.split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000487 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000488
Daniel Dunbar525a3a62010-05-17 17:46:23 +0000489 // Mark the symbol as used in an expression.
490 Sym->setUsedInExpr(true);
491
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000492 // Lookup the symbol variant if used.
493 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000494 if (Split.first.size() != Identifier.size()) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000495 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000496 if (Variant == MCSymbolRefExpr::VK_Invalid) {
497 Variant = MCSymbolRefExpr::VK_None;
498 TokError("invalid variant '" + Split.second + "'");
499 }
500 }
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000501
Daniel Dunbarfffff912009-10-16 01:34:54 +0000502 // If this is an absolute variable reference, substitute it now to preserve
503 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000504 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000505 if (Variant)
506 return Error(EndLoc, "unexpected modified on variable reference");
507
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000508 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000509 return false;
510 }
511
512 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000513 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000514 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000515 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000516 case AsmToken::Integer: {
517 SMLoc Loc = getTok().getLoc();
518 int64_t IntVal = getTok().getIntVal();
519 Res = MCConstantExpr::Create(IntVal, getContext());
Chris Lattnerb4307b32010-01-15 19:28:38 +0000520 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000521 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000522 // Look for 'b' or 'f' following an Integer as a directional label
523 if (Lexer.getKind() == AsmToken::Identifier) {
524 StringRef IDVal = getTok().getString();
525 if (IDVal == "f" || IDVal == "b"){
526 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
527 IDVal == "f" ? 1 : 0);
528 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
529 getContext());
530 if(IDVal == "b" && Sym->isUndefined())
531 return Error(Loc, "invalid reference to undefined symbol");
532 EndLoc = Lexer.getLoc();
533 Lex(); // Eat identifier.
534 }
535 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000536 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000537 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000538 case AsmToken::Dot: {
539 // This is a '.' reference, which references the current PC. Emit a
540 // temporary label to the streamer and refer to it.
541 MCSymbol *Sym = Ctx.CreateTempSymbol();
542 Out.EmitLabel(Sym);
543 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
544 EndLoc = Lexer.getLoc();
545 Lex(); // Eat identifier.
546 return false;
547 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000548
Daniel Dunbar3f872332009-07-28 16:08:33 +0000549 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000550 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000551 return ParseParenExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000552 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000553 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000554 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000555 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000556 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000557 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000558 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000559 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000560 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000561 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000562 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000563 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000564 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000565 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000566 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000567 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000568 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000569 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000570 }
571}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000572
Chris Lattnerb4307b32010-01-15 19:28:38 +0000573bool AsmParser::ParseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000574 SMLoc EndLoc;
575 return ParseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000576}
577
Daniel Dunbarcceba832010-09-17 02:47:07 +0000578const MCExpr *
579AsmParser::ApplyModifierToExpr(const MCExpr *E,
580 MCSymbolRefExpr::VariantKind Variant) {
581 // Recurse over the given expression, rebuilding it to apply the given variant
582 // if there is exactly one symbol.
583 switch (E->getKind()) {
584 case MCExpr::Target:
585 case MCExpr::Constant:
586 return 0;
587
588 case MCExpr::SymbolRef: {
589 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
590
591 if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
592 TokError("invalid variant on expression '" +
593 getTok().getIdentifier() + "' (already modified)");
594 return E;
595 }
596
597 return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
598 }
599
600 case MCExpr::Unary: {
601 const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
602 const MCExpr *Sub = ApplyModifierToExpr(UE->getSubExpr(), Variant);
603 if (!Sub)
604 return 0;
605 return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
606 }
607
608 case MCExpr::Binary: {
609 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
610 const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
611 const MCExpr *RHS = ApplyModifierToExpr(BE->getRHS(), Variant);
612
613 if (!LHS && !RHS)
614 return 0;
615
616 if (!LHS) LHS = BE->getLHS();
617 if (!RHS) RHS = BE->getRHS();
618
619 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
620 }
621 }
Daniel Dunbarf3f95c92010-09-17 16:34:24 +0000622
623 assert(0 && "Invalid expression kind!");
624 return 0;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000625}
626
Chris Lattner74ec1a32009-06-22 06:32:03 +0000627/// ParseExpression - Parse an expression and return it.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000628///
Chris Lattner74ec1a32009-06-22 06:32:03 +0000629/// expr ::= expr +,- expr -> lowest.
630/// expr ::= expr |,^,&,! expr -> middle.
631/// expr ::= expr *,/,%,<<,>> expr -> highest.
632/// expr ::= primaryexpr
633///
Chris Lattner54482b42010-01-15 19:39:23 +0000634bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000635 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000636 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000637 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
638 return true;
639
Daniel Dunbarcceba832010-09-17 02:47:07 +0000640 // As a special case, we support 'a op b @ modifier' by rewriting the
641 // expression to include the modifier. This is inefficient, but in general we
642 // expect users to use 'a@modifier op b'.
643 if (Lexer.getKind() == AsmToken::At) {
644 Lex();
645
646 if (Lexer.isNot(AsmToken::Identifier))
647 return TokError("unexpected symbol modifier following '@'");
648
649 MCSymbolRefExpr::VariantKind Variant =
650 MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
651 if (Variant == MCSymbolRefExpr::VK_Invalid)
652 return TokError("invalid variant '" + getTok().getIdentifier() + "'");
653
654 const MCExpr *ModifiedRes = ApplyModifierToExpr(Res, Variant);
655 if (!ModifiedRes) {
656 return TokError("invalid modifier '" + getTok().getIdentifier() +
657 "' (no symbols present)");
658 return true;
659 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000660
Daniel Dunbarcceba832010-09-17 02:47:07 +0000661 Res = ModifiedRes;
662 Lex();
663 }
664
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000665 // Try to constant fold it up front, if possible.
666 int64_t Value;
667 if (Res->EvaluateAsAbsolute(Value))
668 Res = MCConstantExpr::Create(Value, getContext());
669
670 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000671}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000672
Chris Lattnerb4307b32010-01-15 19:28:38 +0000673bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000674 Res = 0;
675 return ParseParenExpr(Res, EndLoc) ||
676 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000677}
678
Daniel Dunbar475839e2009-06-29 20:37:27 +0000679bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000680 const MCExpr *Expr;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000681
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000682 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar475839e2009-06-29 20:37:27 +0000683 if (ParseExpression(Expr))
684 return true;
685
Daniel Dunbare00b0112009-10-16 01:57:52 +0000686 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000687 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +0000688
689 return false;
690}
691
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000692static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000693 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000694 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000695 default:
696 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000697
Daniel Dunbarcceba832010-09-17 02:47:07 +0000698 // Lowest Precedence: &&, ||, @
Daniel Dunbar3f872332009-07-28 16:08:33 +0000699 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000700 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000701 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000702 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000703 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000704 return 1;
705
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000706
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000707 // Low Precedence: |, &, ^
Daniel Dunbar475839e2009-06-29 20:37:27 +0000708 //
709 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +0000710 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000711 Kind = MCBinaryExpr::Or;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000712 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000713 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000714 Kind = MCBinaryExpr::Xor;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000715 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000716 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000717 Kind = MCBinaryExpr::And;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000718 return 2;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000719
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000720 // Intermediate Precedence: +, -, ==, !=, <>, <, <=, >, >=
721 case AsmToken::Plus:
722 Kind = MCBinaryExpr::Add;
723 return 3;
724 case AsmToken::Minus:
725 Kind = MCBinaryExpr::Sub;
726 return 3;
727 case AsmToken::EqualEqual:
728 Kind = MCBinaryExpr::EQ;
729 return 3;
730 case AsmToken::ExclaimEqual:
731 case AsmToken::LessGreater:
732 Kind = MCBinaryExpr::NE;
733 return 3;
734 case AsmToken::Less:
735 Kind = MCBinaryExpr::LT;
736 return 3;
737 case AsmToken::LessEqual:
738 Kind = MCBinaryExpr::LTE;
739 return 3;
740 case AsmToken::Greater:
741 Kind = MCBinaryExpr::GT;
742 return 3;
743 case AsmToken::GreaterEqual:
744 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000745 return 3;
746
747 // Highest Precedence: *, /, %, <<, >>
Daniel Dunbar3f872332009-07-28 16:08:33 +0000748 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000749 Kind = MCBinaryExpr::Mul;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000750 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000751 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000752 Kind = MCBinaryExpr::Div;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000753 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000754 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000755 Kind = MCBinaryExpr::Mod;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000756 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000757 case AsmToken::LessLess:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000758 Kind = MCBinaryExpr::Shl;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000759 return 4;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000760 case AsmToken::GreaterGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000761 Kind = MCBinaryExpr::Shr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000762 return 4;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000763 }
764}
765
766
767/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
768/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000769bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
770 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000771 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000772 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000773 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000774
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000775 // If the next token is lower precedence than we are allowed to eat, return
776 // successfully with what we ate already.
777 if (TokPrec < Precedence)
778 return false;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000779
Sean Callanan79ed1a82010-01-19 20:22:31 +0000780 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000781
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000782 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000783 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000784 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000785
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000786 // If BinOp binds less tightly with RHS than the operator after RHS, let
787 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000788 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000789 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000790 if (TokPrec < NextTokPrec) {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000791 if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000792 }
793
Daniel Dunbar475839e2009-06-29 20:37:27 +0000794 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000795 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000796 }
797}
798
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000799
800
801
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000802/// ParseStatement:
803/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +0000804/// ::= Label* Directive ...Operands... EndOfStatement
805/// ::= Label* Identifier OperandList* EndOfStatement
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000806bool AsmParser::ParseStatement() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000807 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000808 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000809 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000810 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000811 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000812
813 // Statements always start with an identifier.
Sean Callanan18b83232010-01-19 21:44:56 +0000814 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +0000815 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000816 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000817 int64_t LocalLabelVal = -1;
818 // GUESS allow an integer followed by a ':' as a directional local label
819 if (Lexer.is(AsmToken::Integer)) {
820 LocalLabelVal = getTok().getIntVal();
821 if (LocalLabelVal < 0) {
822 if (!TheCondState.Ignore)
823 return TokError("unexpected token at start of statement");
824 IDVal = "";
825 }
826 else {
827 IDVal = getTok().getString();
828 Lex(); // Consume the integer token to be used as an identifier token.
829 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +0000830 if (!TheCondState.Ignore)
831 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000832 }
833 }
834 }
835 else if (ParseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +0000836 if (!TheCondState.Ignore)
837 return TokError("unexpected token at start of statement");
838 IDVal = "";
839 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000840
Chris Lattner7834fac2010-04-17 18:14:27 +0000841 // Handle conditional assembly here before checking for skipping. We
842 // have to do this so that .endif isn't skipped in a ".if 0" block for
843 // example.
844 if (IDVal == ".if")
845 return ParseDirectiveIf(IDLoc);
846 if (IDVal == ".elseif")
847 return ParseDirectiveElseIf(IDLoc);
848 if (IDVal == ".else")
849 return ParseDirectiveElse(IDLoc);
850 if (IDVal == ".endif")
851 return ParseDirectiveEndIf(IDLoc);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000852
Chris Lattner7834fac2010-04-17 18:14:27 +0000853 // If we are in a ".if 0" block, ignore this statement.
854 if (TheCondState.Ignore) {
855 EatToEndOfStatement();
856 return false;
857 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000858
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000859 // FIXME: Recurse on local labels?
860
861 // See what kind of statement we have.
862 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000863 case AsmToken::Colon: {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000864 CheckForValidSection();
865
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000866 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000867 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000868
869 // Diagnose attempt to use a variable as a label.
870 //
871 // FIXME: Diagnostics. Note the location of the definition as a label.
872 // FIXME: This doesn't diagnose assignment to a symbol which has been
873 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000874 MCSymbol *Sym;
875 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000876 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000877 else
878 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +0000879 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000880 return Error(IDLoc, "invalid symbol redefinition");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000881
Daniel Dunbar959fd882009-08-26 22:13:22 +0000882 // Emit the label.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000883 Out.EmitLabel(Sym);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000884
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000885 // Consume any end of statement token, if present, to avoid spurious
886 // AddBlankLine calls().
887 if (Lexer.is(AsmToken::EndOfStatement)) {
888 Lex();
889 if (Lexer.is(AsmToken::Eof))
890 return false;
891 }
892
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000893 return ParseStatement();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000894 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000895
Daniel Dunbar3f872332009-07-28 16:08:33 +0000896 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000897 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +0000898 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000899
Daniel Dunbare2ace502009-08-31 08:09:09 +0000900 return ParseAssignment(IDVal);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000901
902 default: // Normal instruction or directive.
903 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000904 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000905
906 // If macros are enabled, check to see if this is a macro instantiation.
907 if (MacrosEnabled)
908 if (const Macro *M = MacroMap.lookup(IDVal))
909 return HandleMacroEntry(IDVal, IDLoc, M);
910
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000911 // Otherwise, we have a normal instruction or directive.
Chris Lattner2cf5f142009-06-22 01:29:09 +0000912 if (IDVal[0] == '.') {
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000913 // Assembler features
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000914 if (IDVal == ".set")
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000915 return ParseDirectiveSet();
916
Daniel Dunbara0d14262009-06-24 23:30:00 +0000917 // Data directives
918
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000919 if (IDVal == ".ascii")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000920 return ParseDirectiveAscii(false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000921 if (IDVal == ".asciz")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000922 return ParseDirectiveAscii(true);
923
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000924 if (IDVal == ".byte")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000925 return ParseDirectiveValue(1);
Kevin Enderby9c656452009-09-10 20:51:44 +0000926 if (IDVal == ".short")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000927 return ParseDirectiveValue(2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000928 if (IDVal == ".long")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000929 return ParseDirectiveValue(4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000930 if (IDVal == ".quad")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000931 return ParseDirectiveValue(8);
Daniel Dunbarb95a0792010-09-24 01:59:56 +0000932 if (IDVal == ".single")
933 return ParseDirectiveRealValue(APFloat::IEEEsingle);
934 if (IDVal == ".double")
935 return ParseDirectiveRealValue(APFloat::IEEEdouble);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000936
Eli Friedman5d68ec22010-07-19 04:17:25 +0000937 if (IDVal == ".align") {
938 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
939 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
940 }
941 if (IDVal == ".align32") {
942 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
943 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
944 }
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000945 if (IDVal == ".balign")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000946 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000947 if (IDVal == ".balignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000948 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000949 if (IDVal == ".balignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000950 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000951 if (IDVal == ".p2align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000952 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000953 if (IDVal == ".p2alignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000954 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000955 if (IDVal == ".p2alignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000956 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
957
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000958 if (IDVal == ".org")
Daniel Dunbarc238b582009-06-25 22:44:51 +0000959 return ParseDirectiveOrg();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000960
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000961 if (IDVal == ".fill")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000962 return ParseDirectiveFill();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000963 if (IDVal == ".space")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000964 return ParseDirectiveSpace();
Rafael Espindola2ea2ac72010-09-16 15:03:59 +0000965 if (IDVal == ".zero")
966 return ParseDirectiveZero();
Daniel Dunbara0d14262009-06-24 23:30:00 +0000967
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000968 // Symbol attribute directives
Daniel Dunbard0c14d62009-08-11 04:24:50 +0000969
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000970 if (IDVal == ".globl" || IDVal == ".global")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000971 return ParseDirectiveSymbolAttribute(MCSA_Global);
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000972 // ELF only? Should it be here?
973 if (IDVal == ".local")
974 return ParseDirectiveSymbolAttribute(MCSA_Local);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000975 if (IDVal == ".hidden")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000976 return ParseDirectiveSymbolAttribute(MCSA_Hidden);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000977 if (IDVal == ".indirect_symbol")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000978 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000979 if (IDVal == ".internal")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000980 return ParseDirectiveSymbolAttribute(MCSA_Internal);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000981 if (IDVal == ".lazy_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000982 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000983 if (IDVal == ".no_dead_strip")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000984 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000985 if (IDVal == ".private_extern")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000986 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000987 if (IDVal == ".protected")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000988 return ParseDirectiveSymbolAttribute(MCSA_Protected);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000989 if (IDVal == ".reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000990 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000991 if (IDVal == ".weak")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000992 return ParseDirectiveSymbolAttribute(MCSA_Weak);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000993 if (IDVal == ".weak_definition")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000994 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000995 if (IDVal == ".weak_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000996 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000997 if (IDVal == ".weak_def_can_be_hidden")
998 return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
Daniel Dunbard7b267b2009-06-30 00:33:19 +0000999
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001000 if (IDVal == ".comm")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001001 return ParseDirectiveComm(/*IsLocal=*/false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001002 if (IDVal == ".lcomm")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001003 return ParseDirectiveComm(/*IsLocal=*/true);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001004
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001005 if (IDVal == ".abort")
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001006 return ParseDirectiveAbort();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001007 if (IDVal == ".include")
Kevin Enderby1f049b22009-07-14 23:21:55 +00001008 return ParseDirectiveInclude();
Kevin Enderbya5c78322009-07-13 21:03:15 +00001009
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001010 // Look up the handler in the handler table.
1011 std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
1012 DirectiveMap.lookup(IDVal);
1013 if (Handler.first)
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +00001014 return (*Handler.second)(Handler.first, IDVal, IDLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001015
Kevin Enderby9c656452009-09-10 20:51:44 +00001016 // Target hook for parsing target specific directives.
1017 if (!getTargetParser().ParseDirective(ID))
1018 return false;
1019
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001020 Warning(IDLoc, "ignoring directive for now");
Chris Lattner2cf5f142009-06-22 01:29:09 +00001021 EatToEndOfStatement();
1022 return false;
1023 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001024
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001025 CheckForValidSection();
1026
Chris Lattnera7f13542010-05-19 23:34:33 +00001027 // Canonicalize the opcode to lower case.
1028 SmallString<128> Opcode;
1029 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
1030 Opcode.push_back(tolower(IDVal[i]));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001031
Chris Lattner98986712010-01-14 22:21:20 +00001032 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
Chris Lattnera7f13542010-05-19 23:34:33 +00001033 bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc,
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001034 ParsedOperands);
Chris Lattner2cf5f142009-06-22 01:29:09 +00001035
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001036 // Dump the parsed representation, if requested.
1037 if (getShowParsedOperands()) {
1038 SmallString<256> Str;
1039 raw_svector_ostream OS(Str);
1040 OS << "parsed instruction: [";
1041 for (unsigned i = 0; i != ParsedOperands.size(); ++i) {
1042 if (i != 0)
1043 OS << ", ";
1044 ParsedOperands[i]->dump(OS);
1045 }
1046 OS << "]";
1047
1048 PrintMessage(IDLoc, OS.str(), "note");
1049 }
1050
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001051 // If parsing succeeded, match the instruction.
Chris Lattner7036f8b2010-09-29 01:42:58 +00001052 if (!HadError)
1053 HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, ParsedOperands,
1054 Out);
Chris Lattner98986712010-01-14 22:21:20 +00001055
Chris Lattner98986712010-01-14 22:21:20 +00001056 // Free any parsed operands.
1057 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
1058 delete ParsedOperands[i];
1059
Chris Lattnercbf8a982010-09-11 16:18:25 +00001060 // Don't skip the rest of the line, the instruction parser is responsible for
1061 // that.
1062 return false;
Chris Lattner27aa7d22009-06-21 20:16:42 +00001063}
Chris Lattner9a023f72009-06-24 04:43:34 +00001064
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001065MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
1066 const std::vector<std::vector<AsmToken> > &A)
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001067 : TheMacro(M), InstantiationLoc(IL), ExitLoc(EL)
1068{
1069 // Macro instantiation is lexical, unfortunately. We construct a new buffer
1070 // to hold the macro body with substitutions.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001071 SmallString<256> Buf;
1072 raw_svector_ostream OS(Buf);
1073
1074 StringRef Body = M->Body;
1075 while (!Body.empty()) {
1076 // Scan for the next substitution.
1077 std::size_t End = Body.size(), Pos = 0;
1078 for (; Pos != End; ++Pos) {
1079 // Check for a substitution or escape.
1080 if (Body[Pos] != '$' || Pos + 1 == End)
1081 continue;
1082
1083 char Next = Body[Pos + 1];
1084 if (Next == '$' || Next == 'n' || isdigit(Next))
1085 break;
1086 }
1087
1088 // Add the prefix.
1089 OS << Body.slice(0, Pos);
1090
1091 // Check if we reached the end.
1092 if (Pos == End)
1093 break;
1094
1095 switch (Body[Pos+1]) {
1096 // $$ => $
1097 case '$':
1098 OS << '$';
1099 break;
1100
1101 // $n => number of arguments
1102 case 'n':
1103 OS << A.size();
1104 break;
1105
1106 // $[0-9] => argument
1107 default: {
1108 // Missing arguments are ignored.
1109 unsigned Index = Body[Pos+1] - '0';
1110 if (Index >= A.size())
1111 break;
1112
1113 // Otherwise substitute with the token values, with spaces eliminated.
1114 for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
1115 ie = A[Index].end(); it != ie; ++it)
1116 OS << it->getString();
1117 break;
1118 }
1119 }
1120
1121 // Update the scan point.
1122 Body = Body.substr(Pos + 2);
1123 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001124
1125 // We include the .endmacro in the buffer as our queue to exit the macro
1126 // instantiation.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001127 OS << ".endmacro\n";
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001128
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001129 Instantiation = MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001130}
1131
1132bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
1133 const Macro *M) {
1134 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1135 // this, although we should protect against infinite loops.
1136 if (ActiveMacros.size() == 20)
1137 return TokError("macros cannot be nested more than 20 levels deep");
1138
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001139 // Parse the macro instantiation arguments.
1140 std::vector<std::vector<AsmToken> > MacroArguments;
1141 MacroArguments.push_back(std::vector<AsmToken>());
1142 unsigned ParenLevel = 0;
1143 for (;;) {
1144 if (Lexer.is(AsmToken::Eof))
1145 return TokError("unexpected token in macro instantiation");
1146 if (Lexer.is(AsmToken::EndOfStatement))
1147 break;
1148
1149 // If we aren't inside parentheses and this is a comma, start a new token
1150 // list.
1151 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1152 MacroArguments.push_back(std::vector<AsmToken>());
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001153 } else {
Daniel Dunbare25c6b92010-08-10 17:38:52 +00001154 // Adjust the current parentheses level.
1155 if (Lexer.is(AsmToken::LParen))
1156 ++ParenLevel;
1157 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1158 --ParenLevel;
1159
1160 // Append the token to the current argument list.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001161 MacroArguments.back().push_back(getTok());
1162 }
1163 Lex();
1164 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001165
1166 // Create the macro instantiation object and add to the current macro
1167 // instantiation stack.
1168 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001169 getTok().getLoc(),
1170 MacroArguments);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001171 ActiveMacros.push_back(MI);
1172
1173 // Jump to the macro instantiation and prime the lexer.
1174 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1175 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1176 Lex();
1177
1178 return false;
1179}
1180
1181void AsmParser::HandleMacroExit() {
1182 // Jump to the EndOfStatement we should return to, and consume it.
1183 JumpToLoc(ActiveMacros.back()->ExitLoc);
1184 Lex();
1185
1186 // Pop the instantiation entry.
1187 delete ActiveMacros.back();
1188 ActiveMacros.pop_back();
1189}
1190
Benjamin Kramer38e59892010-07-14 22:38:02 +00001191bool AsmParser::ParseAssignment(StringRef Name) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001192 // FIXME: Use better location, we should use proper tokens.
1193 SMLoc EqualLoc = Lexer.getLoc();
1194
Daniel Dunbar821e3332009-08-31 08:09:28 +00001195 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001196 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001197 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001198
Daniel Dunbar3f872332009-07-28 16:08:33 +00001199 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001200 return TokError("unexpected token in assignment");
1201
1202 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001203 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001204
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001205 // Validate that the LHS is allowed to be a variable (either it has not been
1206 // used as a symbol, or it is an absolute symbol).
1207 MCSymbol *Sym = getContext().LookupSymbol(Name);
1208 if (Sym) {
1209 // Diagnose assignment to a label.
1210 //
1211 // FIXME: Diagnostics. Note the location of the definition as a label.
1212 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001213 if (Sym->isUndefined() && !Sym->isUsedInExpr())
1214 ; // Allow redefinitions of undefined symbols only used in directives.
1215 else if (!Sym->isUndefined() && !Sym->isAbsolute())
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001216 return Error(EqualLoc, "redefinition of '" + Name + "'");
1217 else if (!Sym->isVariable())
1218 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00001219 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001220 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1221 Name + "'");
1222 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001223 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001224
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001225 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001226
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001227 Sym->setUsedInExpr(true);
1228
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001229 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00001230 Out.EmitAssignment(Sym, Value);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001231
1232 return false;
1233}
1234
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001235/// ParseIdentifier:
1236/// ::= identifier
1237/// ::= string
1238bool AsmParser::ParseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00001239 // The assembler has relaxed rules for accepting identifiers, in particular we
1240 // allow things like '.globl $foo', which would normally be separate
1241 // tokens. At this level, we have already lexed so we cannot (currently)
1242 // handle this as a context dependent token, instead we detect adjacent tokens
1243 // and return the combined identifier.
1244 if (Lexer.is(AsmToken::Dollar)) {
1245 SMLoc DollarLoc = getLexer().getLoc();
1246
1247 // Consume the dollar sign, and check for a following identifier.
1248 Lex();
1249 if (Lexer.isNot(AsmToken::Identifier))
1250 return true;
1251
1252 // We have a '$' followed by an identifier, make sure they are adjacent.
1253 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
1254 return true;
1255
1256 // Construct the joined identifier and consume the token.
1257 Res = StringRef(DollarLoc.getPointer(),
1258 getTok().getIdentifier().size() + 1);
1259 Lex();
1260 return false;
1261 }
1262
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001263 if (Lexer.isNot(AsmToken::Identifier) &&
1264 Lexer.isNot(AsmToken::String))
1265 return true;
1266
Sean Callanan18b83232010-01-19 21:44:56 +00001267 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001268
Sean Callanan79ed1a82010-01-19 20:22:31 +00001269 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001270
1271 return false;
1272}
1273
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001274/// ParseDirectiveSet:
1275/// ::= .set identifier ',' expression
1276bool AsmParser::ParseDirectiveSet() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001277 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001278
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001279 if (ParseIdentifier(Name))
1280 return TokError("expected identifier after '.set' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001281
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001282 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001283 return TokError("unexpected token in '.set'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001284 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001285
Daniel Dunbare2ace502009-08-31 08:09:09 +00001286 return ParseAssignment(Name);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001287}
1288
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001289bool AsmParser::ParseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001290 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001291
1292 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00001293 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001294 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1295 if (Str[i] != '\\') {
1296 Data += Str[i];
1297 continue;
1298 }
1299
1300 // Recognize escaped characters. Note that this escape semantics currently
1301 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1302 ++i;
1303 if (i == e)
1304 return TokError("unexpected backslash at end of string");
1305
1306 // Recognize octal sequences.
1307 if ((unsigned) (Str[i] - '0') <= 7) {
1308 // Consume up to three octal characters.
1309 unsigned Value = Str[i] - '0';
1310
1311 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1312 ++i;
1313 Value = Value * 8 + (Str[i] - '0');
1314
1315 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1316 ++i;
1317 Value = Value * 8 + (Str[i] - '0');
1318 }
1319 }
1320
1321 if (Value > 255)
1322 return TokError("invalid octal escape sequence (out of range)");
1323
1324 Data += (unsigned char) Value;
1325 continue;
1326 }
1327
1328 // Otherwise recognize individual escapes.
1329 switch (Str[i]) {
1330 default:
1331 // Just reject invalid escape sequences for now.
1332 return TokError("invalid escape sequence (unrecognized character)");
1333
1334 case 'b': Data += '\b'; break;
1335 case 'f': Data += '\f'; break;
1336 case 'n': Data += '\n'; break;
1337 case 'r': Data += '\r'; break;
1338 case 't': Data += '\t'; break;
1339 case '"': Data += '"'; break;
1340 case '\\': Data += '\\'; break;
1341 }
1342 }
1343
1344 return false;
1345}
1346
Daniel Dunbara0d14262009-06-24 23:30:00 +00001347/// ParseDirectiveAscii:
Daniel Dunbar475839e2009-06-29 20:37:27 +00001348/// ::= ( .ascii | .asciz ) [ "string" ( , "string" )* ]
Daniel Dunbara0d14262009-06-24 23:30:00 +00001349bool AsmParser::ParseDirectiveAscii(bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001350 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001351 CheckForValidSection();
1352
Daniel Dunbara0d14262009-06-24 23:30:00 +00001353 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001354 if (getLexer().isNot(AsmToken::String))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001355 return TokError("expected string in '.ascii' or '.asciz' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001356
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001357 std::string Data;
1358 if (ParseEscapedString(Data))
1359 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001360
1361 getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001362 if (ZeroTerminated)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001363 getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
1364
Sean Callanan79ed1a82010-01-19 20:22:31 +00001365 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001366
1367 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001368 break;
1369
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001370 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001371 return TokError("unexpected token in '.ascii' or '.asciz' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001372 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001373 }
1374 }
1375
Sean Callanan79ed1a82010-01-19 20:22:31 +00001376 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001377 return false;
1378}
1379
1380/// ParseDirectiveValue
1381/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
1382bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001383 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001384 CheckForValidSection();
1385
Daniel Dunbara0d14262009-06-24 23:30:00 +00001386 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001387 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001388 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001389 return true;
1390
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001391 // Special case constant expressions to match code generator.
1392 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value))
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001393 getStreamer().EmitIntValue(MCE->getValue(), Size, DEFAULT_ADDRSPACE);
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001394 else
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001395 getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001396
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001397 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001398 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001399
Daniel Dunbara0d14262009-06-24 23:30:00 +00001400 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001401 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001402 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001403 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001404 }
1405 }
1406
Sean Callanan79ed1a82010-01-19 20:22:31 +00001407 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001408 return false;
1409}
1410
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001411/// ParseDirectiveRealValue
1412/// ::= (.single | .double) [ expression (, expression)* ]
1413bool AsmParser::ParseDirectiveRealValue(const fltSemantics &Semantics) {
1414 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1415 CheckForValidSection();
1416
1417 for (;;) {
1418 // We don't truly support arithmetic on floating point expressions, so we
1419 // have to manually parse unary prefixes.
1420 bool IsNeg = false;
1421 if (getLexer().is(AsmToken::Minus)) {
1422 Lex();
1423 IsNeg = true;
1424 } else if (getLexer().is(AsmToken::Plus))
1425 Lex();
1426
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001427 if (getLexer().isNot(AsmToken::Integer) &&
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001428 getLexer().isNot(AsmToken::Real))
1429 return TokError("unexpected token in directive");
1430
1431 // Convert to an APFloat.
1432 APFloat Value(Semantics);
1433 if (Value.convertFromString(getTok().getString(),
1434 APFloat::rmNearestTiesToEven) ==
1435 APFloat::opInvalidOp)
1436 return TokError("invalid floating point literal");
1437 if (IsNeg)
1438 Value.changeSign();
1439
1440 // Consume the numeric token.
1441 Lex();
1442
1443 // Emit the value as an integer.
1444 APInt AsInt = Value.bitcastToAPInt();
1445 getStreamer().EmitIntValue(AsInt.getLimitedValue(),
1446 AsInt.getBitWidth() / 8, DEFAULT_ADDRSPACE);
1447
1448 if (getLexer().is(AsmToken::EndOfStatement))
1449 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001450
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001451 if (getLexer().isNot(AsmToken::Comma))
1452 return TokError("unexpected token in directive");
1453 Lex();
1454 }
1455 }
1456
1457 Lex();
1458 return false;
1459}
1460
Daniel Dunbara0d14262009-06-24 23:30:00 +00001461/// ParseDirectiveSpace
1462/// ::= .space expression [ , expression ]
1463bool AsmParser::ParseDirectiveSpace() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001464 CheckForValidSection();
1465
Daniel Dunbara0d14262009-06-24 23:30:00 +00001466 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001467 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001468 return true;
1469
1470 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001471 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1472 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001473 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001474 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001475
Daniel Dunbar475839e2009-06-29 20:37:27 +00001476 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001477 return true;
1478
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001479 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001480 return TokError("unexpected token in '.space' directive");
1481 }
1482
Sean Callanan79ed1a82010-01-19 20:22:31 +00001483 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001484
1485 if (NumBytes <= 0)
1486 return TokError("invalid number of bytes in '.space' directive");
1487
1488 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001489 getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001490
1491 return false;
1492}
1493
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001494/// ParseDirectiveZero
1495/// ::= .zero expression
1496bool AsmParser::ParseDirectiveZero() {
1497 CheckForValidSection();
1498
1499 int64_t NumBytes;
1500 if (ParseAbsoluteExpression(NumBytes))
1501 return true;
1502
Rafael Espindolae452b172010-10-05 19:42:57 +00001503 int64_t Val = 0;
1504 if (getLexer().is(AsmToken::Comma)) {
1505 Lex();
1506 if (ParseAbsoluteExpression(Val))
1507 return true;
1508 }
1509
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001510 if (getLexer().isNot(AsmToken::EndOfStatement))
1511 return TokError("unexpected token in '.zero' directive");
1512
1513 Lex();
1514
Rafael Espindolae452b172010-10-05 19:42:57 +00001515 getStreamer().EmitFill(NumBytes, Val, DEFAULT_ADDRSPACE);
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001516
1517 return false;
1518}
1519
Daniel Dunbara0d14262009-06-24 23:30:00 +00001520/// ParseDirectiveFill
1521/// ::= .fill expression , expression , expression
1522bool AsmParser::ParseDirectiveFill() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001523 CheckForValidSection();
1524
Daniel Dunbara0d14262009-06-24 23:30:00 +00001525 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001526 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001527 return true;
1528
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001529 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001530 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001531 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001532
Daniel Dunbara0d14262009-06-24 23:30:00 +00001533 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001534 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001535 return true;
1536
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001537 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001538 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001539 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001540
Daniel Dunbara0d14262009-06-24 23:30:00 +00001541 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001542 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001543 return true;
1544
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001545 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001546 return TokError("unexpected token in '.fill' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001547
Sean Callanan79ed1a82010-01-19 20:22:31 +00001548 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001549
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00001550 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
1551 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00001552
1553 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001554 getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001555
1556 return false;
1557}
Daniel Dunbarc238b582009-06-25 22:44:51 +00001558
1559/// ParseDirectiveOrg
1560/// ::= .org expression [ , expression ]
1561bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001562 CheckForValidSection();
1563
Daniel Dunbar821e3332009-08-31 08:09:28 +00001564 const MCExpr *Offset;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001565 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001566 return true;
1567
1568 // Parse optional fill expression.
1569 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001570 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1571 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001572 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001573 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001574
Daniel Dunbar475839e2009-06-29 20:37:27 +00001575 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001576 return true;
1577
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001578 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001579 return TokError("unexpected token in '.org' directive");
1580 }
1581
Sean Callanan79ed1a82010-01-19 20:22:31 +00001582 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001583
1584 // FIXME: Only limited forms of relocatable expressions are accepted here, it
1585 // has to be relative to the current section.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001586 getStreamer().EmitValueToOffset(Offset, FillExpr);
Daniel Dunbarc238b582009-06-25 22:44:51 +00001587
1588 return false;
1589}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001590
1591/// ParseDirectiveAlign
1592/// ::= {.align, ...} expression [ , expression [ , expression ]]
1593bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001594 CheckForValidSection();
1595
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001596 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001597 int64_t Alignment;
1598 if (ParseAbsoluteExpression(Alignment))
1599 return true;
1600
1601 SMLoc MaxBytesLoc;
1602 bool HasFillExpr = false;
1603 int64_t FillExpr = 0;
1604 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001605 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1606 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001607 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001608 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001609
1610 // The fill expression can be omitted while specifying a maximum number of
1611 // alignment bytes, e.g:
1612 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001613 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001614 HasFillExpr = true;
1615 if (ParseAbsoluteExpression(FillExpr))
1616 return true;
1617 }
1618
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001619 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1620 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001621 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001622 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001623
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001624 MaxBytesLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001625 if (ParseAbsoluteExpression(MaxBytesToFill))
1626 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001627
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001628 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001629 return TokError("unexpected token in directive");
1630 }
1631 }
1632
Sean Callanan79ed1a82010-01-19 20:22:31 +00001633 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001634
Daniel Dunbar648ac512010-05-17 21:54:30 +00001635 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001636 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001637
1638 // Compute alignment in bytes.
1639 if (IsPow2) {
1640 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001641 if (Alignment >= 32) {
1642 Error(AlignmentLoc, "invalid alignment value");
1643 Alignment = 31;
1644 }
1645
Benjamin Kramer12fd7672009-09-06 09:35:10 +00001646 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001647 }
1648
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001649 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001650 if (MaxBytesLoc.isValid()) {
1651 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001652 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
1653 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00001654 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001655 }
1656
1657 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001658 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
1659 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001660 MaxBytesToFill = 0;
1661 }
1662 }
1663
Daniel Dunbar648ac512010-05-17 21:54:30 +00001664 // Check whether we should use optimal code alignment for this .align
1665 // directive.
Jan Wen Voung083cf152010-10-04 17:32:41 +00001666 bool UseCodeAlign = getStreamer().getCurrentSection()->UseCodeAlign();
Daniel Dunbar648ac512010-05-17 21:54:30 +00001667 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
1668 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001669 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001670 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00001671 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00001672 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
1673 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001674 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001675
1676 return false;
1677}
1678
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001679/// ParseDirectiveSymbolAttribute
1680/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001681bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001682 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001683 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001684 StringRef Name;
1685
1686 if (ParseIdentifier(Name))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001687 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001688
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001689 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001690
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001691 getStreamer().EmitSymbolAttribute(Sym, Attr);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001692
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001693 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001694 break;
1695
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001696 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001697 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001698 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001699 }
1700 }
1701
Sean Callanan79ed1a82010-01-19 20:22:31 +00001702 Lex();
Jan Wen Vounga854a4b2010-09-30 01:09:20 +00001703 return false;
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001704}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001705
1706/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00001707/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
1708bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001709 CheckForValidSection();
1710
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001711 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001712 StringRef Name;
1713 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001714 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001715
Daniel Dunbar76c4d762009-07-31 21:55:09 +00001716 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001717 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001718
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001719 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001720 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001721 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001722
1723 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001724 SMLoc SizeLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001725 if (ParseAbsoluteExpression(Size))
1726 return true;
1727
1728 int64_t Pow2Alignment = 0;
1729 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001730 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00001731 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001732 Pow2AlignmentLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001733 if (ParseAbsoluteExpression(Pow2Alignment))
1734 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001735
Chris Lattner258281d2010-01-19 06:22:22 +00001736 // If this target takes alignments in bytes (not log) validate and convert.
1737 if (Lexer.getMAI().getAlignmentIsInBytes()) {
1738 if (!isPowerOf2_64(Pow2Alignment))
1739 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
1740 Pow2Alignment = Log2_64(Pow2Alignment);
1741 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001742 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001743
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001744 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00001745 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001746
Sean Callanan79ed1a82010-01-19 20:22:31 +00001747 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001748
Chris Lattner1fc3d752009-07-09 17:25:12 +00001749 // NOTE: a size of zero for a .comm should create a undefined symbol
1750 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001751 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001752 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
1753 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001754
Eric Christopherc260a3e2010-05-14 01:38:54 +00001755 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001756 // may internally end up wanting an alignment in bytes.
1757 // FIXME: Diagnose overflow.
1758 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001759 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
1760 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001761
Daniel Dunbar8906ff12009-08-22 07:22:36 +00001762 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001763 return Error(IDLoc, "invalid symbol redefinition");
1764
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001765 // '.lcomm' is equivalent to '.zerofill'.
Chris Lattner1fc3d752009-07-09 17:25:12 +00001766 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001767 if (IsLocal) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001768 getStreamer().EmitZerofill(Ctx.getMachOSection(
1769 "__DATA", "__bss", MCSectionMachO::S_ZEROFILL,
1770 0, SectionKind::getBSS()),
1771 Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001772 return false;
1773 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001774
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001775 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001776 return false;
1777}
Chris Lattner9be3fee2009-07-10 22:20:30 +00001778
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001779/// ParseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001780/// ::= .abort [... message ...]
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001781bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001782 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001783 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001784
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001785 StringRef Str = ParseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001786 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001787 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001788
Sean Callanan79ed1a82010-01-19 20:22:31 +00001789 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001790
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001791 if (Str.empty())
1792 Error(Loc, ".abort detected. Assembly stopping.");
1793 else
1794 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001795 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001796
1797 return false;
1798}
Kevin Enderby71148242009-07-14 21:35:03 +00001799
Kevin Enderby1f049b22009-07-14 23:21:55 +00001800/// ParseDirectiveInclude
1801/// ::= .include "filename"
1802bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001803 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001804 return TokError("expected string in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001805
Sean Callanan18b83232010-01-19 21:44:56 +00001806 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001807 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001808 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00001809
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001810 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001811 return TokError("unexpected token in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001812
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001813 // Strip the quotes.
1814 Filename = Filename.substr(1, Filename.size()-2);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001815
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001816 // Attempt to switch the lexer to the included file before consuming the end
1817 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00001818 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00001819 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001820 return true;
1821 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00001822
1823 return false;
1824}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001825
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001826/// ParseDirectiveIf
1827/// ::= .if expression
1828bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001829 TheCondStack.push_back(TheCondState);
1830 TheCondState.TheCond = AsmCond::IfCond;
1831 if(TheCondState.Ignore) {
1832 EatToEndOfStatement();
1833 }
1834 else {
1835 int64_t ExprValue;
1836 if (ParseAbsoluteExpression(ExprValue))
1837 return true;
1838
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001839 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001840 return TokError("unexpected token in '.if' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001841
Sean Callanan79ed1a82010-01-19 20:22:31 +00001842 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001843
1844 TheCondState.CondMet = ExprValue;
1845 TheCondState.Ignore = !TheCondState.CondMet;
1846 }
1847
1848 return false;
1849}
1850
1851/// ParseDirectiveElseIf
1852/// ::= .elseif expression
1853bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
1854 if (TheCondState.TheCond != AsmCond::IfCond &&
1855 TheCondState.TheCond != AsmCond::ElseIfCond)
1856 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
1857 " an .elseif");
1858 TheCondState.TheCond = AsmCond::ElseIfCond;
1859
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001860 bool LastIgnoreState = false;
1861 if (!TheCondStack.empty())
1862 LastIgnoreState = TheCondStack.back().Ignore;
1863 if (LastIgnoreState || TheCondState.CondMet) {
1864 TheCondState.Ignore = true;
1865 EatToEndOfStatement();
1866 }
1867 else {
1868 int64_t ExprValue;
1869 if (ParseAbsoluteExpression(ExprValue))
1870 return true;
1871
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001872 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001873 return TokError("unexpected token in '.elseif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001874
Sean Callanan79ed1a82010-01-19 20:22:31 +00001875 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001876 TheCondState.CondMet = ExprValue;
1877 TheCondState.Ignore = !TheCondState.CondMet;
1878 }
1879
1880 return false;
1881}
1882
1883/// ParseDirectiveElse
1884/// ::= .else
1885bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001886 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001887 return TokError("unexpected token in '.else' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001888
Sean Callanan79ed1a82010-01-19 20:22:31 +00001889 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001890
1891 if (TheCondState.TheCond != AsmCond::IfCond &&
1892 TheCondState.TheCond != AsmCond::ElseIfCond)
1893 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
1894 ".elseif");
1895 TheCondState.TheCond = AsmCond::ElseCond;
1896 bool LastIgnoreState = false;
1897 if (!TheCondStack.empty())
1898 LastIgnoreState = TheCondStack.back().Ignore;
1899 if (LastIgnoreState || TheCondState.CondMet)
1900 TheCondState.Ignore = true;
1901 else
1902 TheCondState.Ignore = false;
1903
1904 return false;
1905}
1906
1907/// ParseDirectiveEndIf
1908/// ::= .endif
1909bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001910 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001911 return TokError("unexpected token in '.endif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001912
Sean Callanan79ed1a82010-01-19 20:22:31 +00001913 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001914
1915 if ((TheCondState.TheCond == AsmCond::NoCond) ||
1916 TheCondStack.empty())
1917 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
1918 ".else");
1919 if (!TheCondStack.empty()) {
1920 TheCondState = TheCondStack.back();
1921 TheCondStack.pop_back();
1922 }
1923
1924 return false;
1925}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001926
1927/// ParseDirectiveFile
1928/// ::= .file [number] string
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001929bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001930 // FIXME: I'm not sure what this is.
1931 int64_t FileNumber = -1;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00001932 SMLoc FileNumberLoc = getLexer().getLoc();
Daniel Dunbareceec052010-07-12 17:45:27 +00001933 if (getLexer().is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001934 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001935 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00001936
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001937 if (FileNumber < 1)
1938 return TokError("file number less than one");
1939 }
1940
Daniel Dunbareceec052010-07-12 17:45:27 +00001941 if (getLexer().isNot(AsmToken::String))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001942 return TokError("unexpected token in '.file' directive");
Daniel Dunbareceec052010-07-12 17:45:27 +00001943
Chris Lattnerd32e8032010-01-25 19:02:58 +00001944 StringRef Filename = getTok().getString();
1945 Filename = Filename.substr(1, Filename.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00001946 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001947
Daniel Dunbareceec052010-07-12 17:45:27 +00001948 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001949 return TokError("unexpected token in '.file' directive");
1950
Chris Lattnerd32e8032010-01-25 19:02:58 +00001951 if (FileNumber == -1)
Daniel Dunbareceec052010-07-12 17:45:27 +00001952 getStreamer().EmitFileDirective(Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00001953 else {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001954 if (getContext().GetDwarfFile(Filename, FileNumber) == 0)
1955 Error(FileNumberLoc, "file number already allocated");
Daniel Dunbareceec052010-07-12 17:45:27 +00001956 getStreamer().EmitDwarfFileDirective(FileNumber, Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00001957 }
Daniel Dunbareceec052010-07-12 17:45:27 +00001958
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001959 return false;
1960}
1961
1962/// ParseDirectiveLine
1963/// ::= .line [number]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001964bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00001965 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1966 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001967 return TokError("unexpected token in '.line' directive");
1968
Sean Callanan18b83232010-01-19 21:44:56 +00001969 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001970 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00001971 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001972
1973 // FIXME: Do something with the .line.
1974 }
1975
Daniel Dunbareceec052010-07-12 17:45:27 +00001976 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbar839348a2010-07-01 20:20:01 +00001977 return TokError("unexpected token in '.line' directive");
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001978
1979 return false;
1980}
1981
1982
1983/// ParseDirectiveLoc
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00001984/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001985/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
1986/// The first number is a file number, must have been previously assigned with
1987/// a .file directive, the second number is the line number and optionally the
1988/// third number is a column position (zero if not specified). The remaining
1989/// optional items are .loc sub-directives.
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001990bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001991
Daniel Dunbareceec052010-07-12 17:45:27 +00001992 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001993 return TokError("unexpected token in '.loc' directive");
Sean Callanan18b83232010-01-19 21:44:56 +00001994 int64_t FileNumber = getTok().getIntVal();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001995 if (FileNumber < 1)
1996 return TokError("file number less than one in '.loc' directive");
Kevin Enderby3f55c242010-10-04 20:17:24 +00001997 if (!getContext().isValidDwarfFileNumber(FileNumber))
Kevin Enderbyc1840b32010-08-24 20:32:42 +00001998 return TokError("unassigned file number in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001999 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002000
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002001 int64_t LineNumber = 0;
2002 if (getLexer().is(AsmToken::Integer)) {
2003 LineNumber = getTok().getIntVal();
2004 if (LineNumber < 1)
2005 return TokError("line number less than one in '.loc' directive");
2006 Lex();
2007 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002008
2009 int64_t ColumnPos = 0;
2010 if (getLexer().is(AsmToken::Integer)) {
2011 ColumnPos = getTok().getIntVal();
2012 if (ColumnPos < 0)
2013 return TokError("column position less than zero in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002014 Lex();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002015 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002016
Kevin Enderbyc0957932010-09-30 16:52:03 +00002017 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002018 unsigned Isa = 0;
2019 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2020 for (;;) {
2021 if (getLexer().is(AsmToken::EndOfStatement))
2022 break;
2023
2024 StringRef Name;
2025 SMLoc Loc = getTok().getLoc();
2026 if (getParser().ParseIdentifier(Name))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002027 return TokError("unexpected token in '.loc' directive");
2028
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002029 if (Name == "basic_block")
2030 Flags |= DWARF2_FLAG_BASIC_BLOCK;
2031 else if (Name == "prologue_end")
2032 Flags |= DWARF2_FLAG_PROLOGUE_END;
2033 else if (Name == "epilogue_begin")
2034 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2035 else if (Name == "is_stmt") {
2036 SMLoc Loc = getTok().getLoc();
2037 const MCExpr *Value;
2038 if (getParser().ParseExpression(Value))
2039 return true;
2040 // The expression must be the constant 0 or 1.
2041 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2042 int Value = MCE->getValue();
2043 if (Value == 0)
2044 Flags &= ~DWARF2_FLAG_IS_STMT;
2045 else if (Value == 1)
2046 Flags |= DWARF2_FLAG_IS_STMT;
2047 else
2048 return Error(Loc, "is_stmt value not 0 or 1");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002049 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002050 else {
2051 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2052 }
2053 }
2054 else if (Name == "isa") {
2055 SMLoc Loc = getTok().getLoc();
2056 const MCExpr *Value;
2057 if (getParser().ParseExpression(Value))
2058 return true;
2059 // The expression must be a constant greater or equal to 0.
2060 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2061 int Value = MCE->getValue();
2062 if (Value < 0)
2063 return Error(Loc, "isa number less than zero");
2064 Isa = Value;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002065 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002066 else {
2067 return Error(Loc, "isa number not a constant value");
2068 }
2069 }
2070 else {
2071 return Error(Loc, "unknown sub-directive in '.loc' directive");
2072 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002073
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002074 if (getLexer().is(AsmToken::EndOfStatement))
2075 break;
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002076 }
2077 }
2078
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002079 getContext().setCurrentDwarfLoc(FileNumber, LineNumber, ColumnPos, Flags,Isa);
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002080
2081 return false;
2082}
2083
Daniel Dunbar138abae2010-10-16 04:56:42 +00002084/// ParseDirectiveStabs
2085/// ::= .stabs string, number, number, number
2086bool GenericAsmParser::ParseDirectiveStabs(StringRef Directive,
2087 SMLoc DirectiveLoc) {
2088 return TokError("unsupported directive '" + Directive + "'");
2089}
2090
Daniel Dunbar3c802de2010-07-18 18:38:02 +00002091/// ParseDirectiveMacrosOnOff
2092/// ::= .macros_on
2093/// ::= .macros_off
2094bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
2095 SMLoc DirectiveLoc) {
2096 if (getLexer().isNot(AsmToken::EndOfStatement))
2097 return Error(getLexer().getLoc(),
2098 "unexpected token in '" + Directive + "' directive");
2099
2100 getParser().MacrosEnabled = Directive == ".macros_on";
2101
2102 return false;
2103}
Daniel Dunbard1e3b442010-07-17 02:26:10 +00002104
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00002105/// ParseDirectiveMacro
2106/// ::= .macro name
2107bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
2108 SMLoc DirectiveLoc) {
2109 StringRef Name;
2110 if (getParser().ParseIdentifier(Name))
2111 return TokError("expected identifier in directive");
2112
2113 if (getLexer().isNot(AsmToken::EndOfStatement))
2114 return TokError("unexpected token in '.macro' directive");
2115
2116 // Eat the end of statement.
2117 Lex();
2118
2119 AsmToken EndToken, StartToken = getTok();
2120
2121 // Lex the macro definition.
2122 for (;;) {
2123 // Check whether we have reached the end of the file.
2124 if (getLexer().is(AsmToken::Eof))
2125 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
2126
2127 // Otherwise, check whether we have reach the .endmacro.
2128 if (getLexer().is(AsmToken::Identifier) &&
2129 (getTok().getIdentifier() == ".endm" ||
2130 getTok().getIdentifier() == ".endmacro")) {
2131 EndToken = getTok();
2132 Lex();
2133 if (getLexer().isNot(AsmToken::EndOfStatement))
2134 return TokError("unexpected token in '" + EndToken.getIdentifier() +
2135 "' directive");
2136 break;
2137 }
2138
2139 // Otherwise, scan til the end of the statement.
2140 getParser().EatToEndOfStatement();
2141 }
2142
2143 if (getParser().MacroMap.lookup(Name)) {
2144 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
2145 }
2146
2147 const char *BodyStart = StartToken.getLoc().getPointer();
2148 const char *BodyEnd = EndToken.getLoc().getPointer();
2149 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
2150 getParser().MacroMap[Name] = new Macro(Name, Body);
2151 return false;
2152}
2153
2154/// ParseDirectiveEndMacro
2155/// ::= .endm
2156/// ::= .endmacro
2157bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
2158 SMLoc DirectiveLoc) {
2159 if (getLexer().isNot(AsmToken::EndOfStatement))
2160 return TokError("unexpected token in '" + Directive + "' directive");
2161
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00002162 // If we are inside a macro instantiation, terminate the current
2163 // instantiation.
2164 if (!getParser().ActiveMacros.empty()) {
2165 getParser().HandleMacroExit();
2166 return false;
2167 }
2168
2169 // Otherwise, this .endmacro is a stray entry in the file; well formed
2170 // .endmacro directives are handled during the macro definition parsing.
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00002171 return TokError("unexpected '" + Directive + "' in file, "
2172 "no current macro definition");
2173}
2174
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002175void GenericAsmParser::ParseUleb128(uint64_t Value) {
2176 const uint64_t Mask = (1 << 7) - 1;
2177 do {
2178 unsigned Byte = Value & Mask;
2179 Value >>= 7;
2180 if (Value) // Not the last one
2181 Byte |= (1 << 7);
2182 getStreamer().EmitIntValue(Byte, 1, DEFAULT_ADDRSPACE);
2183 } while (Value);
2184}
2185
2186void GenericAsmParser::ParseSleb128(int64_t Value) {
2187 const int64_t Mask = (1 << 7) - 1;
2188 for(;;) {
2189 unsigned Byte = Value & Mask;
2190 Value >>= 7;
2191 bool Done = ((Value == 0 && (Byte & 0x40) == 0) ||
2192 (Value == -1 && (Byte & 0x40) != 0));
2193 if (!Done)
2194 Byte |= (1 << 7);
2195 getStreamer().EmitIntValue(Byte, 1, DEFAULT_ADDRSPACE);
2196 if (Done)
2197 break;
2198 }
2199}
2200
2201bool GenericAsmParser::ParseDirectiveLEB128(StringRef DirName, SMLoc) {
2202 int64_t Value;
2203 if (getParser().ParseAbsoluteExpression(Value))
2204 return true;
2205
2206 if (getLexer().isNot(AsmToken::EndOfStatement))
2207 return TokError("unexpected token in directive");
2208
2209 if (DirName[1] == 's')
2210 ParseSleb128(Value);
2211 else
2212 ParseUleb128(Value);
2213 return false;
2214}
2215
2216
Daniel Dunbard1e3b442010-07-17 02:26:10 +00002217/// \brief Create an MCAsmParser instance.
2218MCAsmParser *llvm::createMCAsmParser(const Target &T, SourceMgr &SM,
2219 MCContext &C, MCStreamer &Out,
2220 const MCAsmInfo &MAI) {
2221 return new AsmParser(T, SM, C, Out, MAI);
2222}