blob: a84917ffb86a685d3ab6a07ced4b7597cfabf528 [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"
Roman Divacky54b0f4f2011-01-27 17:16:37 +000033#include "llvm/Target/TargetAsmInfo.h"
Daniel Dunbara3af3702009-07-20 18:55:04 +000034#include "llvm/Target/TargetAsmParser.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000035#include <cctype>
Daniel Dunbaraef87e32010-07-18 18:31:38 +000036#include <vector>
Chris Lattner27aa7d22009-06-21 20:16:42 +000037using namespace llvm;
38
Daniel Dunbar81ea00f2010-07-12 17:54:38 +000039namespace {
40
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000041/// \brief Helper class for tracking macro definitions.
42struct Macro {
43 StringRef Name;
44 StringRef Body;
45
46public:
47 Macro(StringRef N, StringRef B) : Name(N), Body(B) {}
48};
49
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000050/// \brief Helper class for storing information about an active macro
51/// instantiation.
52struct MacroInstantiation {
53 /// The macro being instantiated.
54 const Macro *TheMacro;
55
56 /// The macro instantiation with substitutions.
57 MemoryBuffer *Instantiation;
58
59 /// The location of the instantiation.
60 SMLoc InstantiationLoc;
61
62 /// The location where parsing should resume upon instantiation completion.
63 SMLoc ExitLoc;
64
65public:
Daniel Dunbar7a570d02010-07-18 19:00:10 +000066 MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
67 const std::vector<std::vector<AsmToken> > &A);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000068};
69
Daniel Dunbaraef87e32010-07-18 18:31:38 +000070/// \brief The concrete assembly parser instance.
71class AsmParser : public MCAsmParser {
Daniel Dunbar3c802de2010-07-18 18:38:02 +000072 friend class GenericAsmParser;
73
Daniel Dunbaraef87e32010-07-18 18:31:38 +000074 AsmParser(const AsmParser &); // DO NOT IMPLEMENT
75 void operator=(const AsmParser &); // DO NOT IMPLEMENT
76private:
77 AsmLexer Lexer;
78 MCContext &Ctx;
79 MCStreamer &Out;
80 SourceMgr &SrcMgr;
81 MCAsmParserExtension *GenericParser;
82 MCAsmParserExtension *PlatformParser;
Daniel Dunbar3c802de2010-07-18 18:38:02 +000083
Daniel Dunbaraef87e32010-07-18 18:31:38 +000084 /// This is the current buffer index we're lexing from as managed by the
85 /// SourceMgr object.
86 int CurBuffer;
87
88 AsmCond TheCondState;
89 std::vector<AsmCond> TheCondStack;
90
91 /// DirectiveMap - This is a table handlers for directives. Each handler is
92 /// invoked after the directive identifier is read and is responsible for
93 /// parsing and validating the rest of the directive. The handler is passed
94 /// in the directive name and the location of the directive keyword.
95 StringMap<std::pair<MCAsmParserExtension*, DirectiveHandler> > DirectiveMap;
Daniel Dunbar3c802de2010-07-18 18:38:02 +000096
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000097 /// MacroMap - Map of currently defined macros.
98 StringMap<Macro*> MacroMap;
99
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000100 /// ActiveMacros - Stack of active macro instantiations.
101 std::vector<MacroInstantiation*> ActiveMacros;
102
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000103 /// Boolean tracking whether macro substitution is enabled.
104 unsigned MacrosEnabled : 1;
105
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000106 /// Flag tracking whether any errors have been encountered.
107 unsigned HadError : 1;
108
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000109public:
110 AsmParser(const Target &T, SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
111 const MCAsmInfo &MAI);
112 ~AsmParser();
113
114 virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
115
116 void AddDirectiveHandler(MCAsmParserExtension *Object,
117 StringRef Directive,
118 DirectiveHandler Handler) {
119 DirectiveMap[Directive] = std::make_pair(Object, Handler);
120 }
121
122public:
123 /// @name MCAsmParser Interface
124 /// {
125
126 virtual SourceMgr &getSourceManager() { return SrcMgr; }
127 virtual MCAsmLexer &getLexer() { return Lexer; }
128 virtual MCContext &getContext() { return Ctx; }
129 virtual MCStreamer &getStreamer() { return Out; }
130
131 virtual void Warning(SMLoc L, const Twine &Meg);
132 virtual bool Error(SMLoc L, const Twine &Msg);
133
134 const AsmToken &Lex();
135
136 bool ParseExpression(const MCExpr *&Res);
137 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
138 virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
139 virtual bool ParseAbsoluteExpression(int64_t &Res);
140
141 /// }
142
143private:
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000144 void CheckForValidSection();
145
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000146 bool ParseStatement();
147
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000148 bool HandleMacroEntry(StringRef Name, SMLoc NameLoc, const Macro *M);
149 void HandleMacroExit();
150
151 void PrintMacroInstantiations();
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000152 void PrintMessage(SMLoc Loc, const Twine &Msg, const char *Type) const {
153 SrcMgr.PrintMessage(Loc, Msg, Type);
154 }
155
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000156 /// EnterIncludeFile - Enter the specified file. This returns true on failure.
157 bool EnterIncludeFile(const std::string &Filename);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000158
159 /// \brief Reset the current lexer position to that given by \arg Loc. The
160 /// current token is not set; clients should ensure Lex() is called
161 /// subsequently.
162 void JumpToLoc(SMLoc Loc);
163
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000164 void EatToEndOfStatement();
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000165
166 /// \brief Parse up to the end of statement and a return the contents from the
167 /// current token until the end of the statement; the current token on exit
168 /// will be either the EndOfStatement or EOF.
169 StringRef ParseStringToEndOfStatement();
170
Nico Weber4c4c7322011-01-28 03:04:41 +0000171 bool ParseAssignment(StringRef Name, bool allow_redef);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000172
173 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
174 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
175 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000176 bool ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000177
178 /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
179 /// and set \arg Res to the identifier contents.
180 bool ParseIdentifier(StringRef &Res);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000181
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000182 // Directive Parsing.
Rafael Espindola787c3372010-10-28 20:02:27 +0000183
184 // ".ascii", ".asciiz", ".string"
185 bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000186 bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
Daniel Dunbarb95a0792010-09-24 01:59:56 +0000187 bool ParseDirectiveRealValue(const fltSemantics &); // ".single", ...
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000188 bool ParseDirectiveFill(); // ".fill"
189 bool ParseDirectiveSpace(); // ".space"
Rafael Espindola2ea2ac72010-09-16 15:03:59 +0000190 bool ParseDirectiveZero(); // ".zero"
Nico Weber4c4c7322011-01-28 03:04:41 +0000191 bool ParseDirectiveSet(StringRef IDVal, bool allow_redef); // ".set", ".equ", ".equiv"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000192 bool ParseDirectiveOrg(); // ".org"
193 // ".align{,32}", ".p2align{,w,l}"
194 bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
195
196 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
197 /// accepts a single symbol (which should be a label or an external).
198 bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000199
200 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
201
202 bool ParseDirectiveAbort(); // ".abort"
203 bool ParseDirectiveInclude(); // ".include"
204
205 bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +0000206 // ".ifdef" or ".ifndef", depending on expect_defined
207 bool ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000208 bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
209 bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
210 bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
211
212 /// ParseEscapedString - Parse the current token as a string which may include
213 /// escaped characters and return the string contents.
214 bool ParseEscapedString(std::string &Data);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000215
216 const MCExpr *ApplyModifierToExpr(const MCExpr *E,
217 MCSymbolRefExpr::VariantKind Variant);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000218};
219
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000220/// \brief Generic implementations of directive handling, etc. which is shared
221/// (or the default, at least) for all assembler parser.
222class GenericAsmParser : public MCAsmParserExtension {
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000223 template<bool (GenericAsmParser::*Handler)(StringRef, SMLoc)>
224 void AddDirectiveHandler(StringRef Directive) {
225 getParser().AddDirectiveHandler(this, Directive,
226 HandleDirective<GenericAsmParser, Handler>);
227 }
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000228public:
229 GenericAsmParser() {}
230
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000231 AsmParser &getParser() {
232 return (AsmParser&) this->MCAsmParserExtension::getParser();
233 }
234
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000235 virtual void Initialize(MCAsmParser &Parser) {
236 // Call the base implementation.
237 this->MCAsmParserExtension::Initialize(Parser);
238
239 // Debugging directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000240 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveFile>(".file");
241 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLine>(".line");
242 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLoc>(".loc");
Daniel Dunbar138abae2010-10-16 04:56:42 +0000243 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveStabs>(".stabs");
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000244
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000245 // CFI directives.
246 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIStartProc>(
247 ".cfi_startproc");
248 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIEndProc>(
249 ".cfi_endproc");
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000250 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfa>(
251 ".cfi_def_cfa");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000252 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaOffset>(
253 ".cfi_def_cfa_offset");
254 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaRegister>(
255 ".cfi_def_cfa_register");
256 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIOffset>(
257 ".cfi_offset");
258 AddDirectiveHandler<
259 &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_personality");
260 AddDirectiveHandler<
261 &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_lsda");
Rafael Espindolafe024d02010-12-28 18:36:23 +0000262 AddDirectiveHandler<
263 &GenericAsmParser::ParseDirectiveCFIRememberState>(".cfi_remember_state");
264 AddDirectiveHandler<
265 &GenericAsmParser::ParseDirectiveCFIRestoreState>(".cfi_restore_state");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000266
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000267 // Macro directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000268 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
269 ".macros_on");
270 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
271 ".macros_off");
272 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacro>(".macro");
273 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endm");
274 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endmacro");
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000275
276 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".sleb128");
277 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".uleb128");
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000278 }
279
Roman Divacky54b0f4f2011-01-27 17:16:37 +0000280 bool ParseRegisterOrRegisterNumber(int64_t &Register, SMLoc DirectiveLoc);
281
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000282 bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
283 bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
284 bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar138abae2010-10-16 04:56:42 +0000285 bool ParseDirectiveStabs(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000286 bool ParseDirectiveCFIStartProc(StringRef, SMLoc DirectiveLoc);
287 bool ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc);
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000288 bool ParseDirectiveCFIDefCfa(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000289 bool ParseDirectiveCFIDefCfaOffset(StringRef, SMLoc DirectiveLoc);
290 bool ParseDirectiveCFIDefCfaRegister(StringRef, SMLoc DirectiveLoc);
291 bool ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc);
292 bool ParseDirectiveCFIPersonalityOrLsda(StringRef, SMLoc DirectiveLoc);
Rafael Espindolafe024d02010-12-28 18:36:23 +0000293 bool ParseDirectiveCFIRememberState(StringRef, SMLoc DirectiveLoc);
294 bool ParseDirectiveCFIRestoreState(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000295
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000296 bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000297 bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
298 bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000299
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000300 bool ParseDirectiveLEB128(StringRef, SMLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000301};
302
303}
304
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000305namespace llvm {
306
307extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000308extern MCAsmParserExtension *createELFAsmParser();
Michael J. Spencer7d490042010-10-09 11:01:07 +0000309extern MCAsmParserExtension *createCOFFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000310
311}
312
Chris Lattneraaec2052010-01-19 19:46:13 +0000313enum { DEFAULT_ADDRSPACE = 0 };
314
Daniel Dunbar9186fa62010-07-01 20:41:56 +0000315AsmParser::AsmParser(const Target &T, SourceMgr &_SM, MCContext &_Ctx,
316 MCStreamer &_Out, const MCAsmInfo &_MAI)
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000317 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM),
Daniel Dunbare4749702010-07-12 18:12:02 +0000318 GenericParser(new GenericAsmParser), PlatformParser(0),
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000319 CurBuffer(0), MacrosEnabled(true) {
Sean Callananfd0b0282010-01-21 00:19:58 +0000320 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000321
322 // Initialize the generic parser.
323 GenericParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000324
325 // Initialize the platform / file format parser.
326 //
327 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
328 // created.
Michael J. Spencer7d490042010-10-09 11:01:07 +0000329 if (_MAI.hasMicrosoftFastStdCallMangling()) {
330 PlatformParser = createCOFFAsmParser();
331 PlatformParser->Initialize(*this);
332 } else if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000333 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000334 PlatformParser->Initialize(*this);
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000335 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000336 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000337 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000338 }
Chris Lattnerebb89b42009-09-27 21:16:52 +0000339}
340
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000341AsmParser::~AsmParser() {
Daniel Dunbar56491302010-07-29 01:51:55 +0000342 assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
343
344 // Destroy any macros.
345 for (StringMap<Macro*>::iterator it = MacroMap.begin(),
346 ie = MacroMap.end(); it != ie; ++it)
347 delete it->getValue();
348
Daniel Dunbare4749702010-07-12 18:12:02 +0000349 delete PlatformParser;
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000350 delete GenericParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000351}
352
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000353void AsmParser::PrintMacroInstantiations() {
354 // Print the active macro instantiation stack.
355 for (std::vector<MacroInstantiation*>::const_reverse_iterator
356 it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
357 PrintMessage((*it)->InstantiationLoc, "while in macro instantiation",
358 "note");
359}
360
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000361void AsmParser::Warning(SMLoc L, const Twine &Msg) {
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000362 PrintMessage(L, Msg, "warning");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000363 PrintMacroInstantiations();
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000364}
365
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000366bool AsmParser::Error(SMLoc L, const Twine &Msg) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000367 HadError = true;
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000368 PrintMessage(L, Msg, "error");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000369 PrintMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000370 return true;
371}
372
Sean Callananfd0b0282010-01-21 00:19:58 +0000373bool AsmParser::EnterIncludeFile(const std::string &Filename) {
374 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc());
375 if (NewBuf == -1)
376 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000377
Sean Callananfd0b0282010-01-21 00:19:58 +0000378 CurBuffer = NewBuf;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000379
Sean Callananfd0b0282010-01-21 00:19:58 +0000380 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000381
Sean Callananfd0b0282010-01-21 00:19:58 +0000382 return false;
383}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000384
385void AsmParser::JumpToLoc(SMLoc Loc) {
386 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
387 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
388}
389
Sean Callananfd0b0282010-01-21 00:19:58 +0000390const AsmToken &AsmParser::Lex() {
391 const AsmToken *tok = &Lexer.Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000392
Sean Callananfd0b0282010-01-21 00:19:58 +0000393 if (tok->is(AsmToken::Eof)) {
394 // If this is the end of an included file, pop the parent file off the
395 // include stack.
396 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
397 if (ParentIncludeLoc != SMLoc()) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000398 JumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000399 tok = &Lexer.Lex();
400 }
401 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000402
Sean Callananfd0b0282010-01-21 00:19:58 +0000403 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000404 Error(Lexer.getErrLoc(), Lexer.getErr());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000405
Sean Callananfd0b0282010-01-21 00:19:58 +0000406 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000407}
408
Chris Lattner79180e22010-04-05 23:15:42 +0000409bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000410 // Create the initial section, if requested.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000411 if (!NoInitialTextSection)
Rafael Espindolad80781b2010-09-15 21:48:40 +0000412 Out.InitSections();
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000413
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000414 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000415 Lex();
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000416
417 HadError = false;
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000418 AsmCond StartingCondState = TheCondState;
419
Chris Lattnerb717fb02009-07-02 21:53:43 +0000420 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000421 while (Lexer.isNot(AsmToken::Eof)) {
Chris Lattnerb717fb02009-07-02 21:53:43 +0000422 if (!ParseStatement()) continue;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000423
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000424 // We had an error, validate that one was emitted and recover by skipping to
425 // the next line.
426 assert(HadError && "Parse statement returned an error, but none emitted!");
Chris Lattnerb717fb02009-07-02 21:53:43 +0000427 EatToEndOfStatement();
428 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000429
430 if (TheCondState.TheCond != StartingCondState.TheCond ||
431 TheCondState.Ignore != StartingCondState.Ignore)
432 return TokError("unmatched .ifs or .elses");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000433
434 // Check to see there are no empty DwarfFile slots.
435 const std::vector<MCDwarfFile *> &MCDwarfFiles =
436 getContext().getMCDwarfFiles();
437 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000438 if (!MCDwarfFiles[i])
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000439 TokError("unassigned file number: " + Twine(i) + " for .file directives");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000440 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000441
Chris Lattner79180e22010-04-05 23:15:42 +0000442 // Finalize the output stream if there are no errors and if the client wants
443 // us to.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000444 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000445 Out.Finish();
446
Chris Lattnerb717fb02009-07-02 21:53:43 +0000447 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000448}
449
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000450void AsmParser::CheckForValidSection() {
451 if (!getStreamer().getCurrentSection()) {
452 TokError("expected section directive before assembly directive");
453 Out.SwitchSection(Ctx.getMachOSection(
454 "__TEXT", "__text",
455 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
456 0, SectionKind::getText()));
457 }
458}
459
Chris Lattner2cf5f142009-06-22 01:29:09 +0000460/// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
461void AsmParser::EatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000462 while (Lexer.isNot(AsmToken::EndOfStatement) &&
463 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000464 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000465
Chris Lattner2cf5f142009-06-22 01:29:09 +0000466 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000467 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000468 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000469}
470
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000471StringRef AsmParser::ParseStringToEndOfStatement() {
472 const char *Start = getTok().getLoc().getPointer();
473
474 while (Lexer.isNot(AsmToken::EndOfStatement) &&
475 Lexer.isNot(AsmToken::Eof))
476 Lex();
477
478 const char *End = getTok().getLoc().getPointer();
479 return StringRef(Start, End - Start);
480}
Chris Lattnerc4193832009-06-22 05:51:26 +0000481
Chris Lattner74ec1a32009-06-22 06:32:03 +0000482/// ParseParenExpr - Parse a paren expression and return it.
483/// NOTE: This assumes the leading '(' has already been consumed.
484///
485/// parenexpr ::= expr)
486///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000487bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner74ec1a32009-06-22 06:32:03 +0000488 if (ParseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000489 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000490 return TokError("expected ')' in parentheses expression");
Chris Lattnerb4307b32010-01-15 19:28:38 +0000491 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000492 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000493 return false;
494}
Chris Lattnerc4193832009-06-22 05:51:26 +0000495
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000496/// ParseBracketExpr - Parse a bracket expression and return it.
497/// NOTE: This assumes the leading '[' has already been consumed.
498///
499/// bracketexpr ::= expr]
500///
501bool AsmParser::ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc) {
502 if (ParseExpression(Res)) return true;
503 if (Lexer.isNot(AsmToken::RBrac))
504 return TokError("expected ']' in brackets expression");
505 EndLoc = Lexer.getLoc();
506 Lex();
507 return false;
508}
509
Chris Lattner74ec1a32009-06-22 06:32:03 +0000510/// ParsePrimaryExpr - Parse a primary expression and return it.
511/// primaryexpr ::= (parenexpr
512/// primaryexpr ::= symbol
513/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000514/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000515/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000516bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000517 switch (Lexer.getKind()) {
518 default:
519 return TokError("unknown token in expression");
Daniel Dunbar3f872332009-07-28 16:08:33 +0000520 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000521 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000522 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000523 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000524 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000525 return false;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000526 case AsmToken::Dollar:
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000527 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000528 case AsmToken::Identifier: {
Daniel Dunbare17edff2010-08-24 19:13:42 +0000529 EndLoc = Lexer.getLoc();
530
531 StringRef Identifier;
532 if (ParseIdentifier(Identifier))
533 return false;
534
Daniel Dunbarfffff912009-10-16 01:34:54 +0000535 // This is a symbol reference.
Daniel Dunbare17edff2010-08-24 19:13:42 +0000536 std::pair<StringRef, StringRef> Split = Identifier.split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000537 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000538
539 // Lookup the symbol variant if used.
540 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000541 if (Split.first.size() != Identifier.size()) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000542 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000543 if (Variant == MCSymbolRefExpr::VK_Invalid) {
544 Variant = MCSymbolRefExpr::VK_None;
Jim Grosbach4121e8a2011-01-19 23:06:07 +0000545 return TokError("invalid variant '" + Split.second + "'");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000546 }
547 }
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000548
Daniel Dunbarfffff912009-10-16 01:34:54 +0000549 // If this is an absolute variable reference, substitute it now to preserve
550 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000551 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000552 if (Variant)
Daniel Dunbar603abd52010-11-08 17:53:02 +0000553 return Error(EndLoc, "unexpected modifier on variable reference");
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000554
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000555 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000556 return false;
557 }
558
559 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000560 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000561 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000562 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000563 case AsmToken::Integer: {
564 SMLoc Loc = getTok().getLoc();
565 int64_t IntVal = getTok().getIntVal();
566 Res = MCConstantExpr::Create(IntVal, getContext());
Chris Lattnerb4307b32010-01-15 19:28:38 +0000567 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000568 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000569 // Look for 'b' or 'f' following an Integer as a directional label
570 if (Lexer.getKind() == AsmToken::Identifier) {
571 StringRef IDVal = getTok().getString();
572 if (IDVal == "f" || IDVal == "b"){
573 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
574 IDVal == "f" ? 1 : 0);
575 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
576 getContext());
577 if(IDVal == "b" && Sym->isUndefined())
578 return Error(Loc, "invalid reference to undefined symbol");
579 EndLoc = Lexer.getLoc();
580 Lex(); // Eat identifier.
581 }
582 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000583 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000584 }
Bill Wendling69c4ef32011-01-25 21:26:41 +0000585 case AsmToken::Real: {
586 APFloat RealVal(APFloat::IEEEdouble, getTok().getString());
Bob Wilson720b9182011-02-03 23:17:47 +0000587 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
Bill Wendling69c4ef32011-01-25 21:26:41 +0000588 Res = MCConstantExpr::Create(IntVal, getContext());
589 Lex(); // Eat token.
590 return false;
591 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000592 case AsmToken::Dot: {
593 // This is a '.' reference, which references the current PC. Emit a
594 // temporary label to the streamer and refer to it.
595 MCSymbol *Sym = Ctx.CreateTempSymbol();
596 Out.EmitLabel(Sym);
597 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
598 EndLoc = Lexer.getLoc();
599 Lex(); // Eat identifier.
600 return false;
601 }
Daniel Dunbar3f872332009-07-28 16:08:33 +0000602 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000603 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000604 return ParseParenExpr(Res, EndLoc);
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000605 case AsmToken::LBrac:
606 if (!PlatformParser->HasBracketExpressions())
607 return TokError("brackets expression not supported on this target");
608 Lex(); // Eat the '['.
609 return ParseBracketExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000610 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000611 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000612 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000613 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000614 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000615 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000616 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000617 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000618 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000619 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000620 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000621 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000622 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000623 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000624 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000625 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000626 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000627 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000628 }
629}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000630
Chris Lattnerb4307b32010-01-15 19:28:38 +0000631bool AsmParser::ParseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000632 SMLoc EndLoc;
633 return ParseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000634}
635
Daniel Dunbarcceba832010-09-17 02:47:07 +0000636const MCExpr *
637AsmParser::ApplyModifierToExpr(const MCExpr *E,
638 MCSymbolRefExpr::VariantKind Variant) {
639 // Recurse over the given expression, rebuilding it to apply the given variant
640 // if there is exactly one symbol.
641 switch (E->getKind()) {
642 case MCExpr::Target:
643 case MCExpr::Constant:
644 return 0;
645
646 case MCExpr::SymbolRef: {
647 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
648
649 if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
650 TokError("invalid variant on expression '" +
651 getTok().getIdentifier() + "' (already modified)");
652 return E;
653 }
654
655 return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
656 }
657
658 case MCExpr::Unary: {
659 const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
660 const MCExpr *Sub = ApplyModifierToExpr(UE->getSubExpr(), Variant);
661 if (!Sub)
662 return 0;
663 return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
664 }
665
666 case MCExpr::Binary: {
667 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
668 const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
669 const MCExpr *RHS = ApplyModifierToExpr(BE->getRHS(), Variant);
670
671 if (!LHS && !RHS)
672 return 0;
673
674 if (!LHS) LHS = BE->getLHS();
675 if (!RHS) RHS = BE->getRHS();
676
677 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
678 }
679 }
Daniel Dunbarf3f95c92010-09-17 16:34:24 +0000680
681 assert(0 && "Invalid expression kind!");
682 return 0;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000683}
684
Chris Lattner74ec1a32009-06-22 06:32:03 +0000685/// ParseExpression - Parse an expression and return it.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000686///
Chris Lattner74ec1a32009-06-22 06:32:03 +0000687/// expr ::= expr +,- expr -> lowest.
688/// expr ::= expr |,^,&,! expr -> middle.
689/// expr ::= expr *,/,%,<<,>> expr -> highest.
690/// expr ::= primaryexpr
691///
Chris Lattner54482b42010-01-15 19:39:23 +0000692bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000693 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000694 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000695 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
696 return true;
697
Daniel Dunbarcceba832010-09-17 02:47:07 +0000698 // As a special case, we support 'a op b @ modifier' by rewriting the
699 // expression to include the modifier. This is inefficient, but in general we
700 // expect users to use 'a@modifier op b'.
701 if (Lexer.getKind() == AsmToken::At) {
702 Lex();
703
704 if (Lexer.isNot(AsmToken::Identifier))
705 return TokError("unexpected symbol modifier following '@'");
706
707 MCSymbolRefExpr::VariantKind Variant =
708 MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
709 if (Variant == MCSymbolRefExpr::VK_Invalid)
710 return TokError("invalid variant '" + getTok().getIdentifier() + "'");
711
712 const MCExpr *ModifiedRes = ApplyModifierToExpr(Res, Variant);
713 if (!ModifiedRes) {
714 return TokError("invalid modifier '" + getTok().getIdentifier() +
715 "' (no symbols present)");
716 return true;
717 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000718
Daniel Dunbarcceba832010-09-17 02:47:07 +0000719 Res = ModifiedRes;
720 Lex();
721 }
722
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000723 // Try to constant fold it up front, if possible.
724 int64_t Value;
725 if (Res->EvaluateAsAbsolute(Value))
726 Res = MCConstantExpr::Create(Value, getContext());
727
728 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000729}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000730
Chris Lattnerb4307b32010-01-15 19:28:38 +0000731bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000732 Res = 0;
733 return ParseParenExpr(Res, EndLoc) ||
734 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000735}
736
Daniel Dunbar475839e2009-06-29 20:37:27 +0000737bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000738 const MCExpr *Expr;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000739
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000740 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar475839e2009-06-29 20:37:27 +0000741 if (ParseExpression(Expr))
742 return true;
743
Daniel Dunbare00b0112009-10-16 01:57:52 +0000744 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000745 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +0000746
747 return false;
748}
749
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000750static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000751 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000752 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000753 default:
754 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000755
Daniel Dunbarcceba832010-09-17 02:47:07 +0000756 // Lowest Precedence: &&, ||, @
Daniel Dunbar3f872332009-07-28 16:08:33 +0000757 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000758 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000759 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000760 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000761 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000762 return 1;
763
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000764
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000765 // Low Precedence: |, &, ^
Daniel Dunbar475839e2009-06-29 20:37:27 +0000766 //
767 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +0000768 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000769 Kind = MCBinaryExpr::Or;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000770 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000771 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000772 Kind = MCBinaryExpr::Xor;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000773 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000774 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000775 Kind = MCBinaryExpr::And;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000776 return 2;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000777
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000778 // Low Intermediate Precedence: ==, !=, <>, <, <=, >, >=
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000779 case AsmToken::EqualEqual:
780 Kind = MCBinaryExpr::EQ;
781 return 3;
782 case AsmToken::ExclaimEqual:
783 case AsmToken::LessGreater:
784 Kind = MCBinaryExpr::NE;
785 return 3;
786 case AsmToken::Less:
787 Kind = MCBinaryExpr::LT;
788 return 3;
789 case AsmToken::LessEqual:
790 Kind = MCBinaryExpr::LTE;
791 return 3;
792 case AsmToken::Greater:
793 Kind = MCBinaryExpr::GT;
794 return 3;
795 case AsmToken::GreaterEqual:
796 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000797 return 3;
798
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000799 // High Intermediate Precedence: +, -
800 case AsmToken::Plus:
801 Kind = MCBinaryExpr::Add;
802 return 4;
803 case AsmToken::Minus:
804 Kind = MCBinaryExpr::Sub;
805 return 4;
806
Daniel Dunbar475839e2009-06-29 20:37:27 +0000807 // Highest Precedence: *, /, %, <<, >>
Daniel Dunbar3f872332009-07-28 16:08:33 +0000808 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000809 Kind = MCBinaryExpr::Mul;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000810 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000811 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000812 Kind = MCBinaryExpr::Div;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000813 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000814 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000815 Kind = MCBinaryExpr::Mod;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000816 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000817 case AsmToken::LessLess:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000818 Kind = MCBinaryExpr::Shl;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000819 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000820 case AsmToken::GreaterGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000821 Kind = MCBinaryExpr::Shr;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000822 return 5;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000823 }
824}
825
826
827/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
828/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000829bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
830 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000831 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000832 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000833 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000834
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000835 // If the next token is lower precedence than we are allowed to eat, return
836 // successfully with what we ate already.
837 if (TokPrec < Precedence)
838 return false;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000839
Sean Callanan79ed1a82010-01-19 20:22:31 +0000840 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000841
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000842 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000843 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000844 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000845
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000846 // If BinOp binds less tightly with RHS than the operator after RHS, let
847 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000848 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000849 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000850 if (TokPrec < NextTokPrec) {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000851 if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000852 }
853
Daniel Dunbar475839e2009-06-29 20:37:27 +0000854 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000855 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000856 }
857}
858
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000859
860
861
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000862/// ParseStatement:
863/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +0000864/// ::= Label* Directive ...Operands... EndOfStatement
865/// ::= Label* Identifier OperandList* EndOfStatement
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000866bool AsmParser::ParseStatement() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000867 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000868 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000869 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000870 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000871 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000872
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +0000873 // Statements always start with an identifier or are a full line comment.
Sean Callanan18b83232010-01-19 21:44:56 +0000874 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +0000875 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000876 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000877 int64_t LocalLabelVal = -1;
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +0000878 // A full line comment is a '#' as the first token.
879 if (Lexer.is(AsmToken::Hash)) {
880 EatToEndOfStatement();
881 return false;
882 }
883 // Allow an integer followed by a ':' as a directional local label.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000884 if (Lexer.is(AsmToken::Integer)) {
885 LocalLabelVal = getTok().getIntVal();
886 if (LocalLabelVal < 0) {
887 if (!TheCondState.Ignore)
888 return TokError("unexpected token at start of statement");
889 IDVal = "";
890 }
891 else {
892 IDVal = getTok().getString();
893 Lex(); // Consume the integer token to be used as an identifier token.
894 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +0000895 if (!TheCondState.Ignore)
896 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000897 }
898 }
899 }
900 else if (ParseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +0000901 if (!TheCondState.Ignore)
902 return TokError("unexpected token at start of statement");
903 IDVal = "";
904 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000905
Chris Lattner7834fac2010-04-17 18:14:27 +0000906 // Handle conditional assembly here before checking for skipping. We
907 // have to do this so that .endif isn't skipped in a ".if 0" block for
908 // example.
909 if (IDVal == ".if")
910 return ParseDirectiveIf(IDLoc);
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +0000911 if (IDVal == ".ifdef")
912 return ParseDirectiveIfdef(IDLoc, true);
913 if (IDVal == ".ifndef" || IDVal == ".ifnotdef")
914 return ParseDirectiveIfdef(IDLoc, false);
Chris Lattner7834fac2010-04-17 18:14:27 +0000915 if (IDVal == ".elseif")
916 return ParseDirectiveElseIf(IDLoc);
917 if (IDVal == ".else")
918 return ParseDirectiveElse(IDLoc);
919 if (IDVal == ".endif")
920 return ParseDirectiveEndIf(IDLoc);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000921
Chris Lattner7834fac2010-04-17 18:14:27 +0000922 // If we are in a ".if 0" block, ignore this statement.
923 if (TheCondState.Ignore) {
924 EatToEndOfStatement();
925 return false;
926 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000927
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000928 // FIXME: Recurse on local labels?
929
930 // See what kind of statement we have.
931 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000932 case AsmToken::Colon: {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000933 CheckForValidSection();
934
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000935 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000936 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000937
938 // Diagnose attempt to use a variable as a label.
939 //
940 // FIXME: Diagnostics. Note the location of the definition as a label.
941 // FIXME: This doesn't diagnose assignment to a symbol which has been
942 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000943 MCSymbol *Sym;
944 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000945 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000946 else
947 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +0000948 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000949 return Error(IDLoc, "invalid symbol redefinition");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000950
Daniel Dunbar959fd882009-08-26 22:13:22 +0000951 // Emit the label.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000952 Out.EmitLabel(Sym);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000953
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000954 // Consume any end of statement token, if present, to avoid spurious
955 // AddBlankLine calls().
956 if (Lexer.is(AsmToken::EndOfStatement)) {
957 Lex();
958 if (Lexer.is(AsmToken::Eof))
959 return false;
960 }
961
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000962 return ParseStatement();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000963 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000964
Daniel Dunbar3f872332009-07-28 16:08:33 +0000965 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000966 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +0000967 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000968
Nico Weber4c4c7322011-01-28 03:04:41 +0000969 return ParseAssignment(IDVal, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000970
971 default: // Normal instruction or directive.
972 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000973 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000974
975 // If macros are enabled, check to see if this is a macro instantiation.
976 if (MacrosEnabled)
977 if (const Macro *M = MacroMap.lookup(IDVal))
978 return HandleMacroEntry(IDVal, IDLoc, M);
979
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000980 // Otherwise, we have a normal instruction or directive.
Chris Lattner2cf5f142009-06-22 01:29:09 +0000981 if (IDVal[0] == '.') {
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000982 // Assembler features
Roman Divacky50e7a782010-10-28 16:22:58 +0000983 if (IDVal == ".set" || IDVal == ".equ")
Nico Weber4c4c7322011-01-28 03:04:41 +0000984 return ParseDirectiveSet(IDVal, true);
985 if (IDVal == ".equiv")
986 return ParseDirectiveSet(IDVal, false);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000987
Daniel Dunbara0d14262009-06-24 23:30:00 +0000988 // Data directives
989
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000990 if (IDVal == ".ascii")
Rafael Espindola787c3372010-10-28 20:02:27 +0000991 return ParseDirectiveAscii(IDVal, false);
992 if (IDVal == ".asciz" || IDVal == ".string")
993 return ParseDirectiveAscii(IDVal, true);
Daniel Dunbara0d14262009-06-24 23:30:00 +0000994
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000995 if (IDVal == ".byte")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000996 return ParseDirectiveValue(1);
Kevin Enderby9c656452009-09-10 20:51:44 +0000997 if (IDVal == ".short")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000998 return ParseDirectiveValue(2);
Rafael Espindolacc3acee2010-11-01 15:29:07 +0000999 if (IDVal == ".value")
1000 return ParseDirectiveValue(2);
Rafael Espindola110f22a2010-11-17 16:15:42 +00001001 if (IDVal == ".2byte")
1002 return ParseDirectiveValue(2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001003 if (IDVal == ".long")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001004 return ParseDirectiveValue(4);
Rafael Espindola435279b2010-11-17 16:24:40 +00001005 if (IDVal == ".int")
1006 return ParseDirectiveValue(4);
Rafael Espindola110f22a2010-11-17 16:15:42 +00001007 if (IDVal == ".4byte")
1008 return ParseDirectiveValue(4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001009 if (IDVal == ".quad")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001010 return ParseDirectiveValue(8);
Rafael Espindola110f22a2010-11-17 16:15:42 +00001011 if (IDVal == ".8byte")
1012 return ParseDirectiveValue(8);
Roman Divacky14e66552011-01-28 14:20:32 +00001013 if (IDVal == ".single" || IDVal == ".float")
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001014 return ParseDirectiveRealValue(APFloat::IEEEsingle);
1015 if (IDVal == ".double")
1016 return ParseDirectiveRealValue(APFloat::IEEEdouble);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001017
Eli Friedman5d68ec22010-07-19 04:17:25 +00001018 if (IDVal == ".align") {
1019 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
1020 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
1021 }
1022 if (IDVal == ".align32") {
1023 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
1024 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
1025 }
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001026 if (IDVal == ".balign")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001027 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001028 if (IDVal == ".balignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001029 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001030 if (IDVal == ".balignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001031 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001032 if (IDVal == ".p2align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001033 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001034 if (IDVal == ".p2alignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001035 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001036 if (IDVal == ".p2alignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001037 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
1038
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001039 if (IDVal == ".org")
Daniel Dunbarc238b582009-06-25 22:44:51 +00001040 return ParseDirectiveOrg();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001041
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001042 if (IDVal == ".fill")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001043 return ParseDirectiveFill();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001044 if (IDVal == ".space")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001045 return ParseDirectiveSpace();
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001046 if (IDVal == ".zero")
1047 return ParseDirectiveZero();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001048
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001049 // Symbol attribute directives
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001050
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001051 if (IDVal == ".globl" || IDVal == ".global")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001052 return ParseDirectiveSymbolAttribute(MCSA_Global);
Rafael Espindolaf7c10a32010-09-21 00:24:38 +00001053 // ELF only? Should it be here?
1054 if (IDVal == ".local")
1055 return ParseDirectiveSymbolAttribute(MCSA_Local);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001056 if (IDVal == ".hidden")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001057 return ParseDirectiveSymbolAttribute(MCSA_Hidden);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001058 if (IDVal == ".indirect_symbol")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001059 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001060 if (IDVal == ".internal")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001061 return ParseDirectiveSymbolAttribute(MCSA_Internal);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001062 if (IDVal == ".lazy_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001063 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001064 if (IDVal == ".no_dead_strip")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001065 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Kevin Enderbye8e98d72010-11-19 18:39:33 +00001066 if (IDVal == ".symbol_resolver")
1067 return ParseDirectiveSymbolAttribute(MCSA_SymbolResolver);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001068 if (IDVal == ".private_extern")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001069 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001070 if (IDVal == ".protected")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001071 return ParseDirectiveSymbolAttribute(MCSA_Protected);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001072 if (IDVal == ".reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001073 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001074 if (IDVal == ".weak")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001075 return ParseDirectiveSymbolAttribute(MCSA_Weak);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001076 if (IDVal == ".weak_definition")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001077 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001078 if (IDVal == ".weak_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001079 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Kevin Enderbyf59cac52010-07-08 17:22:42 +00001080 if (IDVal == ".weak_def_can_be_hidden")
1081 return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001082
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001083 if (IDVal == ".comm")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001084 return ParseDirectiveComm(/*IsLocal=*/false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001085 if (IDVal == ".lcomm")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001086 return ParseDirectiveComm(/*IsLocal=*/true);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001087
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001088 if (IDVal == ".abort")
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001089 return ParseDirectiveAbort();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001090 if (IDVal == ".include")
Kevin Enderby1f049b22009-07-14 23:21:55 +00001091 return ParseDirectiveInclude();
Kevin Enderbya5c78322009-07-13 21:03:15 +00001092
Roman Divackybb6d14f2011-01-31 21:19:43 +00001093 if (IDVal == ".code16" || IDVal == ".code32" || IDVal == ".code64")
Roman Divackyf6fbd842011-01-31 20:56:49 +00001094 return TokError(Twine(IDVal) + " not supported yet");
Roman Divackycb727802011-01-28 19:29:48 +00001095
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001096 // Look up the handler in the handler table.
1097 std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
1098 DirectiveMap.lookup(IDVal);
1099 if (Handler.first)
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +00001100 return (*Handler.second)(Handler.first, IDVal, IDLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001101
Kevin Enderby9c656452009-09-10 20:51:44 +00001102 // Target hook for parsing target specific directives.
1103 if (!getTargetParser().ParseDirective(ID))
1104 return false;
1105
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001106 Warning(IDLoc, "ignoring directive for now");
Chris Lattner2cf5f142009-06-22 01:29:09 +00001107 EatToEndOfStatement();
1108 return false;
1109 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001110
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001111 CheckForValidSection();
1112
Chris Lattnera7f13542010-05-19 23:34:33 +00001113 // Canonicalize the opcode to lower case.
1114 SmallString<128> Opcode;
1115 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
1116 Opcode.push_back(tolower(IDVal[i]));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001117
Chris Lattner98986712010-01-14 22:21:20 +00001118 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
Chris Lattnera7f13542010-05-19 23:34:33 +00001119 bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc,
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001120 ParsedOperands);
Chris Lattner2cf5f142009-06-22 01:29:09 +00001121
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001122 // Dump the parsed representation, if requested.
1123 if (getShowParsedOperands()) {
1124 SmallString<256> Str;
1125 raw_svector_ostream OS(Str);
1126 OS << "parsed instruction: [";
1127 for (unsigned i = 0; i != ParsedOperands.size(); ++i) {
1128 if (i != 0)
1129 OS << ", ";
1130 ParsedOperands[i]->dump(OS);
1131 }
1132 OS << "]";
1133
1134 PrintMessage(IDLoc, OS.str(), "note");
1135 }
1136
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001137 // If parsing succeeded, match the instruction.
Chris Lattner7036f8b2010-09-29 01:42:58 +00001138 if (!HadError)
1139 HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, ParsedOperands,
1140 Out);
Chris Lattner98986712010-01-14 22:21:20 +00001141
Chris Lattner98986712010-01-14 22:21:20 +00001142 // Free any parsed operands.
1143 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
1144 delete ParsedOperands[i];
1145
Chris Lattnercbf8a982010-09-11 16:18:25 +00001146 // Don't skip the rest of the line, the instruction parser is responsible for
1147 // that.
1148 return false;
Chris Lattner27aa7d22009-06-21 20:16:42 +00001149}
Chris Lattner9a023f72009-06-24 04:43:34 +00001150
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001151MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
1152 const std::vector<std::vector<AsmToken> > &A)
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001153 : TheMacro(M), InstantiationLoc(IL), ExitLoc(EL)
1154{
1155 // Macro instantiation is lexical, unfortunately. We construct a new buffer
1156 // to hold the macro body with substitutions.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001157 SmallString<256> Buf;
1158 raw_svector_ostream OS(Buf);
1159
1160 StringRef Body = M->Body;
1161 while (!Body.empty()) {
1162 // Scan for the next substitution.
1163 std::size_t End = Body.size(), Pos = 0;
1164 for (; Pos != End; ++Pos) {
1165 // Check for a substitution or escape.
1166 if (Body[Pos] != '$' || Pos + 1 == End)
1167 continue;
1168
1169 char Next = Body[Pos + 1];
1170 if (Next == '$' || Next == 'n' || isdigit(Next))
1171 break;
1172 }
1173
1174 // Add the prefix.
1175 OS << Body.slice(0, Pos);
1176
1177 // Check if we reached the end.
1178 if (Pos == End)
1179 break;
1180
1181 switch (Body[Pos+1]) {
1182 // $$ => $
1183 case '$':
1184 OS << '$';
1185 break;
1186
1187 // $n => number of arguments
1188 case 'n':
1189 OS << A.size();
1190 break;
1191
1192 // $[0-9] => argument
1193 default: {
1194 // Missing arguments are ignored.
1195 unsigned Index = Body[Pos+1] - '0';
1196 if (Index >= A.size())
1197 break;
1198
1199 // Otherwise substitute with the token values, with spaces eliminated.
1200 for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
1201 ie = A[Index].end(); it != ie; ++it)
1202 OS << it->getString();
1203 break;
1204 }
1205 }
1206
1207 // Update the scan point.
1208 Body = Body.substr(Pos + 2);
1209 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001210
1211 // We include the .endmacro in the buffer as our queue to exit the macro
1212 // instantiation.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001213 OS << ".endmacro\n";
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001214
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001215 Instantiation = MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001216}
1217
1218bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
1219 const Macro *M) {
1220 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1221 // this, although we should protect against infinite loops.
1222 if (ActiveMacros.size() == 20)
1223 return TokError("macros cannot be nested more than 20 levels deep");
1224
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001225 // Parse the macro instantiation arguments.
1226 std::vector<std::vector<AsmToken> > MacroArguments;
1227 MacroArguments.push_back(std::vector<AsmToken>());
1228 unsigned ParenLevel = 0;
1229 for (;;) {
1230 if (Lexer.is(AsmToken::Eof))
1231 return TokError("unexpected token in macro instantiation");
1232 if (Lexer.is(AsmToken::EndOfStatement))
1233 break;
1234
1235 // If we aren't inside parentheses and this is a comma, start a new token
1236 // list.
1237 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1238 MacroArguments.push_back(std::vector<AsmToken>());
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001239 } else {
Daniel Dunbare25c6b92010-08-10 17:38:52 +00001240 // Adjust the current parentheses level.
1241 if (Lexer.is(AsmToken::LParen))
1242 ++ParenLevel;
1243 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1244 --ParenLevel;
1245
1246 // Append the token to the current argument list.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001247 MacroArguments.back().push_back(getTok());
1248 }
1249 Lex();
1250 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001251
1252 // Create the macro instantiation object and add to the current macro
1253 // instantiation stack.
1254 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001255 getTok().getLoc(),
1256 MacroArguments);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001257 ActiveMacros.push_back(MI);
1258
1259 // Jump to the macro instantiation and prime the lexer.
1260 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1261 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1262 Lex();
1263
1264 return false;
1265}
1266
1267void AsmParser::HandleMacroExit() {
1268 // Jump to the EndOfStatement we should return to, and consume it.
1269 JumpToLoc(ActiveMacros.back()->ExitLoc);
1270 Lex();
1271
1272 // Pop the instantiation entry.
1273 delete ActiveMacros.back();
1274 ActiveMacros.pop_back();
1275}
1276
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001277static void MarkUsed(const MCExpr *Value) {
1278 switch (Value->getKind()) {
1279 case MCExpr::Binary:
1280 MarkUsed(static_cast<const MCBinaryExpr*>(Value)->getLHS());
1281 MarkUsed(static_cast<const MCBinaryExpr*>(Value)->getRHS());
1282 break;
1283 case MCExpr::Target:
1284 case MCExpr::Constant:
1285 break;
1286 case MCExpr::SymbolRef: {
1287 static_cast<const MCSymbolRefExpr*>(Value)->getSymbol().setUsed(true);
1288 break;
1289 }
1290 case MCExpr::Unary:
1291 MarkUsed(static_cast<const MCUnaryExpr*>(Value)->getSubExpr());
1292 break;
1293 }
1294}
1295
Nico Weber4c4c7322011-01-28 03:04:41 +00001296bool AsmParser::ParseAssignment(StringRef Name, bool allow_redef) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001297 // FIXME: Use better location, we should use proper tokens.
1298 SMLoc EqualLoc = Lexer.getLoc();
1299
Daniel Dunbar821e3332009-08-31 08:09:28 +00001300 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001301 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001302 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001303
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001304 MarkUsed(Value);
1305
Daniel Dunbar3f872332009-07-28 16:08:33 +00001306 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001307 return TokError("unexpected token in assignment");
1308
1309 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001310 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001311
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001312 // Validate that the LHS is allowed to be a variable (either it has not been
1313 // used as a symbol, or it is an absolute symbol).
1314 MCSymbol *Sym = getContext().LookupSymbol(Name);
1315 if (Sym) {
1316 // Diagnose assignment to a label.
1317 //
1318 // FIXME: Diagnostics. Note the location of the definition as a label.
1319 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001320 if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001321 ; // Allow redefinitions of undefined symbols only used in directives.
Nico Weber4c4c7322011-01-28 03:04:41 +00001322 else if (!Sym->isUndefined() && (!Sym->isAbsolute() || !allow_redef))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001323 return Error(EqualLoc, "redefinition of '" + Name + "'");
1324 else if (!Sym->isVariable())
1325 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00001326 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001327 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1328 Name + "'");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001329
1330 // Don't count these checks as uses.
1331 Sym->setUsed(false);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001332 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001333 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001334
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001335 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001336
1337 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00001338 Out.EmitAssignment(Sym, Value);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001339
1340 return false;
1341}
1342
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001343/// ParseIdentifier:
1344/// ::= identifier
1345/// ::= string
1346bool AsmParser::ParseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00001347 // The assembler has relaxed rules for accepting identifiers, in particular we
1348 // allow things like '.globl $foo', which would normally be separate
1349 // tokens. At this level, we have already lexed so we cannot (currently)
1350 // handle this as a context dependent token, instead we detect adjacent tokens
1351 // and return the combined identifier.
1352 if (Lexer.is(AsmToken::Dollar)) {
1353 SMLoc DollarLoc = getLexer().getLoc();
1354
1355 // Consume the dollar sign, and check for a following identifier.
1356 Lex();
1357 if (Lexer.isNot(AsmToken::Identifier))
1358 return true;
1359
1360 // We have a '$' followed by an identifier, make sure they are adjacent.
1361 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
1362 return true;
1363
1364 // Construct the joined identifier and consume the token.
1365 Res = StringRef(DollarLoc.getPointer(),
1366 getTok().getIdentifier().size() + 1);
1367 Lex();
1368 return false;
1369 }
1370
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001371 if (Lexer.isNot(AsmToken::Identifier) &&
1372 Lexer.isNot(AsmToken::String))
1373 return true;
1374
Sean Callanan18b83232010-01-19 21:44:56 +00001375 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001376
Sean Callanan79ed1a82010-01-19 20:22:31 +00001377 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001378
1379 return false;
1380}
1381
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001382/// ParseDirectiveSet:
Nico Weber4c4c7322011-01-28 03:04:41 +00001383/// ::= .equ identifier ',' expression
1384/// ::= .equiv identifier ',' expression
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001385/// ::= .set identifier ',' expression
Nico Weber4c4c7322011-01-28 03:04:41 +00001386bool AsmParser::ParseDirectiveSet(StringRef IDVal, bool allow_redef) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001387 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001388
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001389 if (ParseIdentifier(Name))
Roman Divackyf9d17522010-10-28 16:57:58 +00001390 return TokError("expected identifier after '" + Twine(IDVal) + "'");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001391
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001392 if (getLexer().isNot(AsmToken::Comma))
Roman Divackyf9d17522010-10-28 16:57:58 +00001393 return TokError("unexpected token in '" + Twine(IDVal) + "'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001394 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001395
Nico Weber4c4c7322011-01-28 03:04:41 +00001396 return ParseAssignment(Name, allow_redef);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001397}
1398
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001399bool AsmParser::ParseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001400 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001401
1402 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00001403 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001404 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1405 if (Str[i] != '\\') {
1406 Data += Str[i];
1407 continue;
1408 }
1409
1410 // Recognize escaped characters. Note that this escape semantics currently
1411 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1412 ++i;
1413 if (i == e)
1414 return TokError("unexpected backslash at end of string");
1415
1416 // Recognize octal sequences.
1417 if ((unsigned) (Str[i] - '0') <= 7) {
1418 // Consume up to three octal characters.
1419 unsigned Value = Str[i] - '0';
1420
1421 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1422 ++i;
1423 Value = Value * 8 + (Str[i] - '0');
1424
1425 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1426 ++i;
1427 Value = Value * 8 + (Str[i] - '0');
1428 }
1429 }
1430
1431 if (Value > 255)
1432 return TokError("invalid octal escape sequence (out of range)");
1433
1434 Data += (unsigned char) Value;
1435 continue;
1436 }
1437
1438 // Otherwise recognize individual escapes.
1439 switch (Str[i]) {
1440 default:
1441 // Just reject invalid escape sequences for now.
1442 return TokError("invalid escape sequence (unrecognized character)");
1443
1444 case 'b': Data += '\b'; break;
1445 case 'f': Data += '\f'; break;
1446 case 'n': Data += '\n'; break;
1447 case 'r': Data += '\r'; break;
1448 case 't': Data += '\t'; break;
1449 case '"': Data += '"'; break;
1450 case '\\': Data += '\\'; break;
1451 }
1452 }
1453
1454 return false;
1455}
1456
Daniel Dunbara0d14262009-06-24 23:30:00 +00001457/// ParseDirectiveAscii:
Rafael Espindola787c3372010-10-28 20:02:27 +00001458/// ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
1459bool AsmParser::ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001460 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001461 CheckForValidSection();
1462
Daniel Dunbara0d14262009-06-24 23:30:00 +00001463 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001464 if (getLexer().isNot(AsmToken::String))
Rafael Espindola787c3372010-10-28 20:02:27 +00001465 return TokError("expected string in '" + Twine(IDVal) + "' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001466
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001467 std::string Data;
1468 if (ParseEscapedString(Data))
1469 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001470
1471 getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001472 if (ZeroTerminated)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001473 getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
1474
Sean Callanan79ed1a82010-01-19 20:22:31 +00001475 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001476
1477 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001478 break;
1479
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001480 if (getLexer().isNot(AsmToken::Comma))
Rafael Espindola787c3372010-10-28 20:02:27 +00001481 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001482 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001483 }
1484 }
1485
Sean Callanan79ed1a82010-01-19 20:22:31 +00001486 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001487 return false;
1488}
1489
1490/// ParseDirectiveValue
1491/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
1492bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001493 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001494 CheckForValidSection();
1495
Daniel Dunbara0d14262009-06-24 23:30:00 +00001496 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001497 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001498 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001499 return true;
1500
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001501 // Special case constant expressions to match code generator.
1502 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value))
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001503 getStreamer().EmitIntValue(MCE->getValue(), Size, DEFAULT_ADDRSPACE);
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001504 else
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001505 getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001506
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001507 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001508 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001509
Daniel Dunbara0d14262009-06-24 23:30:00 +00001510 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001511 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001512 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001513 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001514 }
1515 }
1516
Sean Callanan79ed1a82010-01-19 20:22:31 +00001517 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001518 return false;
1519}
1520
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001521/// ParseDirectiveRealValue
1522/// ::= (.single | .double) [ expression (, expression)* ]
1523bool AsmParser::ParseDirectiveRealValue(const fltSemantics &Semantics) {
1524 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1525 CheckForValidSection();
1526
1527 for (;;) {
1528 // We don't truly support arithmetic on floating point expressions, so we
1529 // have to manually parse unary prefixes.
1530 bool IsNeg = false;
1531 if (getLexer().is(AsmToken::Minus)) {
1532 Lex();
1533 IsNeg = true;
1534 } else if (getLexer().is(AsmToken::Plus))
1535 Lex();
1536
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001537 if (getLexer().isNot(AsmToken::Integer) &&
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001538 getLexer().isNot(AsmToken::Real))
1539 return TokError("unexpected token in directive");
1540
1541 // Convert to an APFloat.
1542 APFloat Value(Semantics);
1543 if (Value.convertFromString(getTok().getString(),
1544 APFloat::rmNearestTiesToEven) ==
1545 APFloat::opInvalidOp)
1546 return TokError("invalid floating point literal");
1547 if (IsNeg)
1548 Value.changeSign();
1549
1550 // Consume the numeric token.
1551 Lex();
1552
1553 // Emit the value as an integer.
1554 APInt AsInt = Value.bitcastToAPInt();
1555 getStreamer().EmitIntValue(AsInt.getLimitedValue(),
1556 AsInt.getBitWidth() / 8, DEFAULT_ADDRSPACE);
1557
1558 if (getLexer().is(AsmToken::EndOfStatement))
1559 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001560
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001561 if (getLexer().isNot(AsmToken::Comma))
1562 return TokError("unexpected token in directive");
1563 Lex();
1564 }
1565 }
1566
1567 Lex();
1568 return false;
1569}
1570
Daniel Dunbara0d14262009-06-24 23:30:00 +00001571/// ParseDirectiveSpace
1572/// ::= .space expression [ , expression ]
1573bool AsmParser::ParseDirectiveSpace() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001574 CheckForValidSection();
1575
Daniel Dunbara0d14262009-06-24 23:30:00 +00001576 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001577 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001578 return true;
1579
1580 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001581 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1582 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001583 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001584 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001585
Daniel Dunbar475839e2009-06-29 20:37:27 +00001586 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001587 return true;
1588
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001589 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001590 return TokError("unexpected token in '.space' directive");
1591 }
1592
Sean Callanan79ed1a82010-01-19 20:22:31 +00001593 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001594
1595 if (NumBytes <= 0)
1596 return TokError("invalid number of bytes in '.space' directive");
1597
1598 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001599 getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001600
1601 return false;
1602}
1603
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001604/// ParseDirectiveZero
1605/// ::= .zero expression
1606bool AsmParser::ParseDirectiveZero() {
1607 CheckForValidSection();
1608
1609 int64_t NumBytes;
1610 if (ParseAbsoluteExpression(NumBytes))
1611 return true;
1612
Rafael Espindolae452b172010-10-05 19:42:57 +00001613 int64_t Val = 0;
1614 if (getLexer().is(AsmToken::Comma)) {
1615 Lex();
1616 if (ParseAbsoluteExpression(Val))
1617 return true;
1618 }
1619
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001620 if (getLexer().isNot(AsmToken::EndOfStatement))
1621 return TokError("unexpected token in '.zero' directive");
1622
1623 Lex();
1624
Rafael Espindolae452b172010-10-05 19:42:57 +00001625 getStreamer().EmitFill(NumBytes, Val, DEFAULT_ADDRSPACE);
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001626
1627 return false;
1628}
1629
Daniel Dunbara0d14262009-06-24 23:30:00 +00001630/// ParseDirectiveFill
1631/// ::= .fill expression , expression , expression
1632bool AsmParser::ParseDirectiveFill() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001633 CheckForValidSection();
1634
Daniel Dunbara0d14262009-06-24 23:30:00 +00001635 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001636 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001637 return true;
1638
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001639 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001640 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001641 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001642
Daniel Dunbara0d14262009-06-24 23:30:00 +00001643 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001644 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001645 return true;
1646
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001647 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001648 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001649 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001650
Daniel Dunbara0d14262009-06-24 23:30:00 +00001651 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001652 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001653 return true;
1654
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001655 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001656 return TokError("unexpected token in '.fill' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001657
Sean Callanan79ed1a82010-01-19 20:22:31 +00001658 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001659
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00001660 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
1661 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00001662
1663 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001664 getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001665
1666 return false;
1667}
Daniel Dunbarc238b582009-06-25 22:44:51 +00001668
1669/// ParseDirectiveOrg
1670/// ::= .org expression [ , expression ]
1671bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001672 CheckForValidSection();
1673
Daniel Dunbar821e3332009-08-31 08:09:28 +00001674 const MCExpr *Offset;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001675 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001676 return true;
1677
1678 // Parse optional fill expression.
1679 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001680 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1681 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001682 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001683 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001684
Daniel Dunbar475839e2009-06-29 20:37:27 +00001685 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001686 return true;
1687
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001688 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001689 return TokError("unexpected token in '.org' directive");
1690 }
1691
Sean Callanan79ed1a82010-01-19 20:22:31 +00001692 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001693
1694 // FIXME: Only limited forms of relocatable expressions are accepted here, it
1695 // has to be relative to the current section.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001696 getStreamer().EmitValueToOffset(Offset, FillExpr);
Daniel Dunbarc238b582009-06-25 22:44:51 +00001697
1698 return false;
1699}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001700
1701/// ParseDirectiveAlign
1702/// ::= {.align, ...} expression [ , expression [ , expression ]]
1703bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001704 CheckForValidSection();
1705
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001706 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001707 int64_t Alignment;
1708 if (ParseAbsoluteExpression(Alignment))
1709 return true;
1710
1711 SMLoc MaxBytesLoc;
1712 bool HasFillExpr = false;
1713 int64_t FillExpr = 0;
1714 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001715 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1716 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001717 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001718 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001719
1720 // The fill expression can be omitted while specifying a maximum number of
1721 // alignment bytes, e.g:
1722 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001723 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001724 HasFillExpr = true;
1725 if (ParseAbsoluteExpression(FillExpr))
1726 return true;
1727 }
1728
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001729 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1730 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001731 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001732 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001733
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001734 MaxBytesLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001735 if (ParseAbsoluteExpression(MaxBytesToFill))
1736 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001737
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001738 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001739 return TokError("unexpected token in directive");
1740 }
1741 }
1742
Sean Callanan79ed1a82010-01-19 20:22:31 +00001743 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001744
Daniel Dunbar648ac512010-05-17 21:54:30 +00001745 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001746 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001747
1748 // Compute alignment in bytes.
1749 if (IsPow2) {
1750 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001751 if (Alignment >= 32) {
1752 Error(AlignmentLoc, "invalid alignment value");
1753 Alignment = 31;
1754 }
1755
Benjamin Kramer12fd7672009-09-06 09:35:10 +00001756 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001757 }
1758
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001759 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001760 if (MaxBytesLoc.isValid()) {
1761 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001762 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
1763 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00001764 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001765 }
1766
1767 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001768 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
1769 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001770 MaxBytesToFill = 0;
1771 }
1772 }
1773
Daniel Dunbar648ac512010-05-17 21:54:30 +00001774 // Check whether we should use optimal code alignment for this .align
1775 // directive.
Jan Wen Voung083cf152010-10-04 17:32:41 +00001776 bool UseCodeAlign = getStreamer().getCurrentSection()->UseCodeAlign();
Daniel Dunbar648ac512010-05-17 21:54:30 +00001777 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
1778 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001779 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001780 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00001781 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00001782 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
1783 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001784 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001785
1786 return false;
1787}
1788
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001789/// ParseDirectiveSymbolAttribute
1790/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001791bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001792 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001793 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001794 StringRef Name;
1795
1796 if (ParseIdentifier(Name))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001797 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001798
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001799 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001800
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001801 getStreamer().EmitSymbolAttribute(Sym, Attr);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001802
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001803 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001804 break;
1805
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001806 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001807 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001808 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001809 }
1810 }
1811
Sean Callanan79ed1a82010-01-19 20:22:31 +00001812 Lex();
Jan Wen Vounga854a4b2010-09-30 01:09:20 +00001813 return false;
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001814}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001815
1816/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00001817/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
1818bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001819 CheckForValidSection();
1820
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001821 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001822 StringRef Name;
1823 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001824 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001825
Daniel Dunbar76c4d762009-07-31 21:55:09 +00001826 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001827 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001828
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001829 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001830 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001831 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001832
1833 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001834 SMLoc SizeLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001835 if (ParseAbsoluteExpression(Size))
1836 return true;
1837
1838 int64_t Pow2Alignment = 0;
1839 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001840 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00001841 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001842 Pow2AlignmentLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001843 if (ParseAbsoluteExpression(Pow2Alignment))
1844 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001845
Chris Lattner258281d2010-01-19 06:22:22 +00001846 // If this target takes alignments in bytes (not log) validate and convert.
1847 if (Lexer.getMAI().getAlignmentIsInBytes()) {
1848 if (!isPowerOf2_64(Pow2Alignment))
1849 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
1850 Pow2Alignment = Log2_64(Pow2Alignment);
1851 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001852 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001853
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001854 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00001855 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001856
Sean Callanan79ed1a82010-01-19 20:22:31 +00001857 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001858
Chris Lattner1fc3d752009-07-09 17:25:12 +00001859 // NOTE: a size of zero for a .comm should create a undefined symbol
1860 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001861 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001862 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
1863 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001864
Eric Christopherc260a3e2010-05-14 01:38:54 +00001865 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001866 // may internally end up wanting an alignment in bytes.
1867 // FIXME: Diagnose overflow.
1868 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001869 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
1870 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001871
Daniel Dunbar8906ff12009-08-22 07:22:36 +00001872 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001873 return Error(IDLoc, "invalid symbol redefinition");
1874
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001875 // '.lcomm' is equivalent to '.zerofill'.
Chris Lattner1fc3d752009-07-09 17:25:12 +00001876 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001877 if (IsLocal) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001878 getStreamer().EmitZerofill(Ctx.getMachOSection(
1879 "__DATA", "__bss", MCSectionMachO::S_ZEROFILL,
1880 0, SectionKind::getBSS()),
1881 Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001882 return false;
1883 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001884
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001885 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001886 return false;
1887}
Chris Lattner9be3fee2009-07-10 22:20:30 +00001888
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001889/// ParseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001890/// ::= .abort [... message ...]
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001891bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001892 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001893 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001894
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001895 StringRef Str = ParseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001896 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001897 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001898
Sean Callanan79ed1a82010-01-19 20:22:31 +00001899 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001900
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001901 if (Str.empty())
1902 Error(Loc, ".abort detected. Assembly stopping.");
1903 else
1904 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001905 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001906
1907 return false;
1908}
Kevin Enderby71148242009-07-14 21:35:03 +00001909
Kevin Enderby1f049b22009-07-14 23:21:55 +00001910/// ParseDirectiveInclude
1911/// ::= .include "filename"
1912bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001913 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001914 return TokError("expected string in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001915
Sean Callanan18b83232010-01-19 21:44:56 +00001916 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001917 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001918 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00001919
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001920 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001921 return TokError("unexpected token in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001922
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001923 // Strip the quotes.
1924 Filename = Filename.substr(1, Filename.size()-2);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001925
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001926 // Attempt to switch the lexer to the included file before consuming the end
1927 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00001928 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00001929 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001930 return true;
1931 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00001932
1933 return false;
1934}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001935
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001936/// ParseDirectiveIf
1937/// ::= .if expression
1938bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001939 TheCondStack.push_back(TheCondState);
1940 TheCondState.TheCond = AsmCond::IfCond;
1941 if(TheCondState.Ignore) {
1942 EatToEndOfStatement();
1943 }
1944 else {
1945 int64_t ExprValue;
1946 if (ParseAbsoluteExpression(ExprValue))
1947 return true;
1948
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001949 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001950 return TokError("unexpected token in '.if' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001951
Sean Callanan79ed1a82010-01-19 20:22:31 +00001952 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001953
1954 TheCondState.CondMet = ExprValue;
1955 TheCondState.Ignore = !TheCondState.CondMet;
1956 }
1957
1958 return false;
1959}
1960
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00001961bool AsmParser::ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined) {
1962 StringRef Name;
1963 TheCondStack.push_back(TheCondState);
1964 TheCondState.TheCond = AsmCond::IfCond;
1965
1966 if (TheCondState.Ignore) {
1967 EatToEndOfStatement();
1968 } else {
1969 if (ParseIdentifier(Name))
1970 return TokError("expected identifier after '.ifdef'");
1971
1972 Lex();
1973
1974 MCSymbol *Sym = getContext().LookupSymbol(Name);
1975
1976 if (expect_defined)
1977 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
1978 else
1979 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
1980 TheCondState.Ignore = !TheCondState.CondMet;
1981 }
1982
1983 return false;
1984}
1985
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001986/// ParseDirectiveElseIf
1987/// ::= .elseif expression
1988bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
1989 if (TheCondState.TheCond != AsmCond::IfCond &&
1990 TheCondState.TheCond != AsmCond::ElseIfCond)
1991 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
1992 " an .elseif");
1993 TheCondState.TheCond = AsmCond::ElseIfCond;
1994
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001995 bool LastIgnoreState = false;
1996 if (!TheCondStack.empty())
1997 LastIgnoreState = TheCondStack.back().Ignore;
1998 if (LastIgnoreState || TheCondState.CondMet) {
1999 TheCondState.Ignore = true;
2000 EatToEndOfStatement();
2001 }
2002 else {
2003 int64_t ExprValue;
2004 if (ParseAbsoluteExpression(ExprValue))
2005 return true;
2006
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002007 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002008 return TokError("unexpected token in '.elseif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002009
Sean Callanan79ed1a82010-01-19 20:22:31 +00002010 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002011 TheCondState.CondMet = ExprValue;
2012 TheCondState.Ignore = !TheCondState.CondMet;
2013 }
2014
2015 return false;
2016}
2017
2018/// ParseDirectiveElse
2019/// ::= .else
2020bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002021 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002022 return TokError("unexpected token in '.else' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002023
Sean Callanan79ed1a82010-01-19 20:22:31 +00002024 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002025
2026 if (TheCondState.TheCond != AsmCond::IfCond &&
2027 TheCondState.TheCond != AsmCond::ElseIfCond)
2028 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
2029 ".elseif");
2030 TheCondState.TheCond = AsmCond::ElseCond;
2031 bool LastIgnoreState = false;
2032 if (!TheCondStack.empty())
2033 LastIgnoreState = TheCondStack.back().Ignore;
2034 if (LastIgnoreState || TheCondState.CondMet)
2035 TheCondState.Ignore = true;
2036 else
2037 TheCondState.Ignore = false;
2038
2039 return false;
2040}
2041
2042/// ParseDirectiveEndIf
2043/// ::= .endif
2044bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002045 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002046 return TokError("unexpected token in '.endif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002047
Sean Callanan79ed1a82010-01-19 20:22:31 +00002048 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002049
2050 if ((TheCondState.TheCond == AsmCond::NoCond) ||
2051 TheCondStack.empty())
2052 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
2053 ".else");
2054 if (!TheCondStack.empty()) {
2055 TheCondState = TheCondStack.back();
2056 TheCondStack.pop_back();
2057 }
2058
2059 return false;
2060}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002061
2062/// ParseDirectiveFile
2063/// ::= .file [number] string
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002064bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002065 // FIXME: I'm not sure what this is.
2066 int64_t FileNumber = -1;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002067 SMLoc FileNumberLoc = getLexer().getLoc();
Daniel Dunbareceec052010-07-12 17:45:27 +00002068 if (getLexer().is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00002069 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00002070 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00002071
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002072 if (FileNumber < 1)
2073 return TokError("file number less than one");
2074 }
2075
Daniel Dunbareceec052010-07-12 17:45:27 +00002076 if (getLexer().isNot(AsmToken::String))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002077 return TokError("unexpected token in '.file' directive");
Daniel Dunbareceec052010-07-12 17:45:27 +00002078
Chris Lattnerd32e8032010-01-25 19:02:58 +00002079 StringRef Filename = getTok().getString();
2080 Filename = Filename.substr(1, Filename.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00002081 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002082
Daniel Dunbareceec052010-07-12 17:45:27 +00002083 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002084 return TokError("unexpected token in '.file' directive");
2085
Chris Lattnerd32e8032010-01-25 19:02:58 +00002086 if (FileNumber == -1)
Daniel Dunbareceec052010-07-12 17:45:27 +00002087 getStreamer().EmitFileDirective(Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002088 else {
Rafael Espindolaaf6b58082010-11-16 21:20:32 +00002089 if (getStreamer().EmitDwarfFileDirective(FileNumber, Filename))
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002090 Error(FileNumberLoc, "file number already allocated");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002091 }
Daniel Dunbareceec052010-07-12 17:45:27 +00002092
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002093 return false;
2094}
2095
2096/// ParseDirectiveLine
2097/// ::= .line [number]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002098bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00002099 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2100 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002101 return TokError("unexpected token in '.line' directive");
2102
Sean Callanan18b83232010-01-19 21:44:56 +00002103 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002104 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00002105 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002106
2107 // FIXME: Do something with the .line.
2108 }
2109
Daniel Dunbareceec052010-07-12 17:45:27 +00002110 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbar839348a2010-07-01 20:20:01 +00002111 return TokError("unexpected token in '.line' directive");
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002112
2113 return false;
2114}
2115
2116
2117/// ParseDirectiveLoc
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002118/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002119/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2120/// The first number is a file number, must have been previously assigned with
2121/// a .file directive, the second number is the line number and optionally the
2122/// third number is a column position (zero if not specified). The remaining
2123/// optional items are .loc sub-directives.
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002124bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002125
Daniel Dunbareceec052010-07-12 17:45:27 +00002126 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002127 return TokError("unexpected token in '.loc' directive");
Sean Callanan18b83232010-01-19 21:44:56 +00002128 int64_t FileNumber = getTok().getIntVal();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002129 if (FileNumber < 1)
2130 return TokError("file number less than one in '.loc' directive");
Kevin Enderby3f55c242010-10-04 20:17:24 +00002131 if (!getContext().isValidDwarfFileNumber(FileNumber))
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002132 return TokError("unassigned file number in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002133 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002134
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002135 int64_t LineNumber = 0;
2136 if (getLexer().is(AsmToken::Integer)) {
2137 LineNumber = getTok().getIntVal();
2138 if (LineNumber < 1)
2139 return TokError("line number less than one in '.loc' directive");
2140 Lex();
2141 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002142
2143 int64_t ColumnPos = 0;
2144 if (getLexer().is(AsmToken::Integer)) {
2145 ColumnPos = getTok().getIntVal();
2146 if (ColumnPos < 0)
2147 return TokError("column position less than zero in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002148 Lex();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002149 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002150
Kevin Enderbyc0957932010-09-30 16:52:03 +00002151 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002152 unsigned Isa = 0;
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002153 int64_t Discriminator = 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002154 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2155 for (;;) {
2156 if (getLexer().is(AsmToken::EndOfStatement))
2157 break;
2158
2159 StringRef Name;
2160 SMLoc Loc = getTok().getLoc();
2161 if (getParser().ParseIdentifier(Name))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002162 return TokError("unexpected token in '.loc' directive");
2163
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002164 if (Name == "basic_block")
2165 Flags |= DWARF2_FLAG_BASIC_BLOCK;
2166 else if (Name == "prologue_end")
2167 Flags |= DWARF2_FLAG_PROLOGUE_END;
2168 else if (Name == "epilogue_begin")
2169 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2170 else if (Name == "is_stmt") {
2171 SMLoc Loc = getTok().getLoc();
2172 const MCExpr *Value;
2173 if (getParser().ParseExpression(Value))
2174 return true;
2175 // The expression must be the constant 0 or 1.
2176 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2177 int Value = MCE->getValue();
2178 if (Value == 0)
2179 Flags &= ~DWARF2_FLAG_IS_STMT;
2180 else if (Value == 1)
2181 Flags |= DWARF2_FLAG_IS_STMT;
2182 else
2183 return Error(Loc, "is_stmt value not 0 or 1");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002184 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002185 else {
2186 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2187 }
2188 }
2189 else if (Name == "isa") {
2190 SMLoc Loc = getTok().getLoc();
2191 const MCExpr *Value;
2192 if (getParser().ParseExpression(Value))
2193 return true;
2194 // The expression must be a constant greater or equal to 0.
2195 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2196 int Value = MCE->getValue();
2197 if (Value < 0)
2198 return Error(Loc, "isa number less than zero");
2199 Isa = Value;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002200 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002201 else {
2202 return Error(Loc, "isa number not a constant value");
2203 }
2204 }
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002205 else if (Name == "discriminator") {
2206 if (getParser().ParseAbsoluteExpression(Discriminator))
2207 return true;
2208 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002209 else {
2210 return Error(Loc, "unknown sub-directive in '.loc' directive");
2211 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002212
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002213 if (getLexer().is(AsmToken::EndOfStatement))
2214 break;
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002215 }
2216 }
2217
Rafael Espindolaaf6b58082010-11-16 21:20:32 +00002218 getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,
2219 Isa, Discriminator);
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002220
2221 return false;
2222}
2223
Daniel Dunbar138abae2010-10-16 04:56:42 +00002224/// ParseDirectiveStabs
2225/// ::= .stabs string, number, number, number
2226bool GenericAsmParser::ParseDirectiveStabs(StringRef Directive,
2227 SMLoc DirectiveLoc) {
2228 return TokError("unsupported directive '" + Directive + "'");
2229}
2230
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002231/// ParseDirectiveCFIStartProc
2232/// ::= .cfi_startproc
2233bool GenericAsmParser::ParseDirectiveCFIStartProc(StringRef,
2234 SMLoc DirectiveLoc) {
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002235 return getStreamer().EmitCFIStartProc();
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002236}
2237
2238/// ParseDirectiveCFIEndProc
2239/// ::= .cfi_endproc
2240bool GenericAsmParser::ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc) {
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002241 return getStreamer().EmitCFIEndProc();
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002242}
2243
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002244/// ParseRegisterOrRegisterNumber - parse register name or number.
2245bool GenericAsmParser::ParseRegisterOrRegisterNumber(int64_t &Register,
2246 SMLoc DirectiveLoc) {
2247 unsigned RegNo;
2248
2249 if (getLexer().is(AsmToken::Percent)) {
2250 if (getParser().getTargetParser().ParseRegister(RegNo, DirectiveLoc,
2251 DirectiveLoc))
2252 return true;
2253 Register = getContext().getTargetAsmInfo().getDwarfRegNum(RegNo, true);
2254 } else
2255 return getParser().ParseAbsoluteExpression(Register);
Jim Grosbachde2f5f42011-02-11 19:05:56 +00002256
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002257 return false;
2258}
2259
Rafael Espindolab40a71f2010-12-29 01:42:56 +00002260/// ParseDirectiveCFIDefCfa
2261/// ::= .cfi_def_cfa register, offset
2262bool GenericAsmParser::ParseDirectiveCFIDefCfa(StringRef,
2263 SMLoc DirectiveLoc) {
2264 int64_t Register = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002265 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindolab40a71f2010-12-29 01:42:56 +00002266 return true;
2267
2268 if (getLexer().isNot(AsmToken::Comma))
2269 return TokError("unexpected token in directive");
2270 Lex();
2271
2272 int64_t Offset = 0;
2273 if (getParser().ParseAbsoluteExpression(Offset))
2274 return true;
2275
2276 return getStreamer().EmitCFIDefCfa(Register, Offset);
2277}
2278
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002279/// ParseDirectiveCFIDefCfaOffset
2280/// ::= .cfi_def_cfa_offset offset
2281bool GenericAsmParser::ParseDirectiveCFIDefCfaOffset(StringRef,
2282 SMLoc DirectiveLoc) {
2283 int64_t Offset = 0;
2284 if (getParser().ParseAbsoluteExpression(Offset))
2285 return true;
2286
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002287 return getStreamer().EmitCFIDefCfaOffset(Offset);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002288}
2289
2290/// ParseDirectiveCFIDefCfaRegister
2291/// ::= .cfi_def_cfa_register register
2292bool GenericAsmParser::ParseDirectiveCFIDefCfaRegister(StringRef,
2293 SMLoc DirectiveLoc) {
2294 int64_t Register = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002295 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002296 return true;
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002297
2298 return getStreamer().EmitCFIDefCfaRegister(Register);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002299}
2300
2301/// ParseDirectiveCFIOffset
2302/// ::= .cfi_off register, offset
2303bool GenericAsmParser::ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc) {
2304 int64_t Register = 0;
2305 int64_t Offset = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002306
2307 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002308 return true;
2309
2310 if (getLexer().isNot(AsmToken::Comma))
2311 return TokError("unexpected token in directive");
2312 Lex();
2313
2314 if (getParser().ParseAbsoluteExpression(Offset))
2315 return true;
2316
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002317 return getStreamer().EmitCFIOffset(Register, Offset);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002318}
2319
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002320static bool isValidEncoding(int64_t Encoding) {
2321 if (Encoding & ~0xff)
2322 return false;
2323
2324 if (Encoding == dwarf::DW_EH_PE_omit)
2325 return true;
2326
2327 const unsigned Format = Encoding & 0xf;
2328 if (Format != dwarf::DW_EH_PE_absptr && Format != dwarf::DW_EH_PE_udata2 &&
2329 Format != dwarf::DW_EH_PE_udata4 && Format != dwarf::DW_EH_PE_udata8 &&
2330 Format != dwarf::DW_EH_PE_sdata2 && Format != dwarf::DW_EH_PE_sdata4 &&
2331 Format != dwarf::DW_EH_PE_sdata8 && Format != dwarf::DW_EH_PE_signed)
2332 return false;
2333
Rafael Espindolacaf11582010-12-29 04:31:26 +00002334 const unsigned Application = Encoding & 0x70;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002335 if (Application != dwarf::DW_EH_PE_absptr &&
Rafael Espindolacaf11582010-12-29 04:31:26 +00002336 Application != dwarf::DW_EH_PE_pcrel)
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002337 return false;
2338
2339 return true;
2340}
2341
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002342/// ParseDirectiveCFIPersonalityOrLsda
2343/// ::= .cfi_personality encoding, [symbol_name]
2344/// ::= .cfi_lsda encoding, [symbol_name]
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002345bool GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda(StringRef IDVal,
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002346 SMLoc DirectiveLoc) {
2347 int64_t Encoding = 0;
2348 if (getParser().ParseAbsoluteExpression(Encoding))
2349 return true;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002350 if (Encoding == dwarf::DW_EH_PE_omit)
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002351 return false;
2352
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002353 if (!isValidEncoding(Encoding))
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002354 return TokError("unsupported encoding.");
2355
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002356 if (getLexer().isNot(AsmToken::Comma))
2357 return TokError("unexpected token in directive");
2358 Lex();
2359
2360 StringRef Name;
2361 if (getParser().ParseIdentifier(Name))
2362 return TokError("expected identifier in directive");
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002363
2364 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
2365
2366 if (IDVal == ".cfi_personality")
Rafael Espindola3a83c402010-12-27 00:36:05 +00002367 return getStreamer().EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002368 else {
2369 assert(IDVal == ".cfi_lsda");
Rafael Espindolabdc31672010-12-27 15:56:22 +00002370 return getStreamer().EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002371 }
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002372}
2373
Rafael Espindolafe024d02010-12-28 18:36:23 +00002374/// ParseDirectiveCFIRememberState
2375/// ::= .cfi_remember_state
2376bool GenericAsmParser::ParseDirectiveCFIRememberState(StringRef IDVal,
2377 SMLoc DirectiveLoc) {
2378 return getStreamer().EmitCFIRememberState();
2379}
2380
2381/// ParseDirectiveCFIRestoreState
2382/// ::= .cfi_remember_state
2383bool GenericAsmParser::ParseDirectiveCFIRestoreState(StringRef IDVal,
2384 SMLoc DirectiveLoc) {
2385 return getStreamer().EmitCFIRestoreState();
2386}
2387
Daniel Dunbar3c802de2010-07-18 18:38:02 +00002388/// ParseDirectiveMacrosOnOff
2389/// ::= .macros_on
2390/// ::= .macros_off
2391bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
2392 SMLoc DirectiveLoc) {
2393 if (getLexer().isNot(AsmToken::EndOfStatement))
2394 return Error(getLexer().getLoc(),
2395 "unexpected token in '" + Directive + "' directive");
2396
2397 getParser().MacrosEnabled = Directive == ".macros_on";
2398
2399 return false;
2400}
Daniel Dunbard1e3b442010-07-17 02:26:10 +00002401
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00002402/// ParseDirectiveMacro
2403/// ::= .macro name
2404bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
2405 SMLoc DirectiveLoc) {
2406 StringRef Name;
2407 if (getParser().ParseIdentifier(Name))
2408 return TokError("expected identifier in directive");
2409
2410 if (getLexer().isNot(AsmToken::EndOfStatement))
2411 return TokError("unexpected token in '.macro' directive");
2412
2413 // Eat the end of statement.
2414 Lex();
2415
2416 AsmToken EndToken, StartToken = getTok();
2417
2418 // Lex the macro definition.
2419 for (;;) {
2420 // Check whether we have reached the end of the file.
2421 if (getLexer().is(AsmToken::Eof))
2422 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
2423
2424 // Otherwise, check whether we have reach the .endmacro.
2425 if (getLexer().is(AsmToken::Identifier) &&
2426 (getTok().getIdentifier() == ".endm" ||
2427 getTok().getIdentifier() == ".endmacro")) {
2428 EndToken = getTok();
2429 Lex();
2430 if (getLexer().isNot(AsmToken::EndOfStatement))
2431 return TokError("unexpected token in '" + EndToken.getIdentifier() +
2432 "' directive");
2433 break;
2434 }
2435
2436 // Otherwise, scan til the end of the statement.
2437 getParser().EatToEndOfStatement();
2438 }
2439
2440 if (getParser().MacroMap.lookup(Name)) {
2441 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
2442 }
2443
2444 const char *BodyStart = StartToken.getLoc().getPointer();
2445 const char *BodyEnd = EndToken.getLoc().getPointer();
2446 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
2447 getParser().MacroMap[Name] = new Macro(Name, Body);
2448 return false;
2449}
2450
2451/// ParseDirectiveEndMacro
2452/// ::= .endm
2453/// ::= .endmacro
2454bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
2455 SMLoc DirectiveLoc) {
2456 if (getLexer().isNot(AsmToken::EndOfStatement))
2457 return TokError("unexpected token in '" + Directive + "' directive");
2458
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00002459 // If we are inside a macro instantiation, terminate the current
2460 // instantiation.
2461 if (!getParser().ActiveMacros.empty()) {
2462 getParser().HandleMacroExit();
2463 return false;
2464 }
2465
2466 // Otherwise, this .endmacro is a stray entry in the file; well formed
2467 // .endmacro directives are handled during the macro definition parsing.
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00002468 return TokError("unexpected '" + Directive + "' in file, "
2469 "no current macro definition");
2470}
2471
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002472bool GenericAsmParser::ParseDirectiveLEB128(StringRef DirName, SMLoc) {
Rafael Espindola3ff57092010-11-02 17:22:24 +00002473 getParser().CheckForValidSection();
2474
2475 const MCExpr *Value;
2476
2477 if (getParser().ParseExpression(Value))
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002478 return true;
2479
2480 if (getLexer().isNot(AsmToken::EndOfStatement))
2481 return TokError("unexpected token in directive");
2482
2483 if (DirName[1] == 's')
Rafael Espindola3ff57092010-11-02 17:22:24 +00002484 getStreamer().EmitSLEB128Value(Value);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002485 else
Rafael Espindola3ff57092010-11-02 17:22:24 +00002486 getStreamer().EmitULEB128Value(Value);
2487
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002488 return false;
2489}
2490
2491
Daniel Dunbard1e3b442010-07-17 02:26:10 +00002492/// \brief Create an MCAsmParser instance.
2493MCAsmParser *llvm::createMCAsmParser(const Target &T, SourceMgr &SM,
2494 MCContext &C, MCStreamer &Out,
2495 const MCAsmInfo &MAI) {
2496 return new AsmParser(T, SM, C, Out, MAI);
2497}