blob: 9105ad5146b5ce5486c89e5e350cbcab0967cd42 [file] [log] [blame]
Chris Lattner27aa7d22009-06-21 20:16:42 +00001//===- AsmParser.cpp - Parser for Assembly Files --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This class implements the parser for assembly files.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbarb95a0792010-09-24 01:59:56 +000014#include "llvm/ADT/APFloat.h"
Daniel Dunbar7c0a3342009-08-26 22:49:51 +000015#include "llvm/ADT/SmallString.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000016#include "llvm/ADT/StringMap.h"
Matt Fleming924c5e52010-05-21 11:36:59 +000017#include "llvm/ADT/StringSwitch.h"
Daniel Dunbarf9507ff2009-07-27 23:20:52 +000018#include "llvm/ADT/Twine.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000019#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000020#include "llvm/MC/MCContext.h"
Daniel Dunbar28c251b2009-08-31 08:06:59 +000021#include "llvm/MC/MCExpr.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000022#include "llvm/MC/MCParser/AsmCond.h"
23#include "llvm/MC/MCParser/AsmLexer.h"
24#include "llvm/MC/MCParser/MCAsmParser.h"
25#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
26#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000027#include "llvm/MC/MCStreamer.h"
Daniel Dunbardce0f3c2009-06-29 23:43:14 +000028#include "llvm/MC/MCSymbol.h"
Kevin Enderby7cbf73a2010-07-28 20:55:35 +000029#include "llvm/MC/MCDwarf.h"
Kevin Enderbyf187ac52010-06-28 21:45:58 +000030#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000031#include "llvm/Support/SourceMgr.h"
Chris Lattnerb0789ed2009-06-21 20:54:55 +000032#include "llvm/Support/raw_ostream.h"
Daniel Dunbara3af3702009-07-20 18:55:04 +000033#include "llvm/Target/TargetAsmParser.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000034#include <cctype>
Daniel Dunbaraef87e32010-07-18 18:31:38 +000035#include <vector>
Chris Lattner27aa7d22009-06-21 20:16:42 +000036using namespace llvm;
37
Daniel Dunbar81ea00f2010-07-12 17:54:38 +000038namespace {
39
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000040/// \brief Helper class for tracking macro definitions.
41struct Macro {
42 StringRef Name;
43 StringRef Body;
44
45public:
46 Macro(StringRef N, StringRef B) : Name(N), Body(B) {}
47};
48
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000049/// \brief Helper class for storing information about an active macro
50/// instantiation.
51struct MacroInstantiation {
52 /// The macro being instantiated.
53 const Macro *TheMacro;
54
55 /// The macro instantiation with substitutions.
56 MemoryBuffer *Instantiation;
57
58 /// The location of the instantiation.
59 SMLoc InstantiationLoc;
60
61 /// The location where parsing should resume upon instantiation completion.
62 SMLoc ExitLoc;
63
64public:
Daniel Dunbar7a570d02010-07-18 19:00:10 +000065 MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
66 const std::vector<std::vector<AsmToken> > &A);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000067};
68
Daniel Dunbaraef87e32010-07-18 18:31:38 +000069/// \brief The concrete assembly parser instance.
70class AsmParser : public MCAsmParser {
Daniel Dunbar3c802de2010-07-18 18:38:02 +000071 friend class GenericAsmParser;
72
Daniel Dunbaraef87e32010-07-18 18:31:38 +000073 AsmParser(const AsmParser &); // DO NOT IMPLEMENT
74 void operator=(const AsmParser &); // DO NOT IMPLEMENT
75private:
76 AsmLexer Lexer;
77 MCContext &Ctx;
78 MCStreamer &Out;
79 SourceMgr &SrcMgr;
80 MCAsmParserExtension *GenericParser;
81 MCAsmParserExtension *PlatformParser;
Daniel Dunbar3c802de2010-07-18 18:38:02 +000082
Daniel Dunbaraef87e32010-07-18 18:31:38 +000083 /// This is the current buffer index we're lexing from as managed by the
84 /// SourceMgr object.
85 int CurBuffer;
86
87 AsmCond TheCondState;
88 std::vector<AsmCond> TheCondStack;
89
90 /// DirectiveMap - This is a table handlers for directives. Each handler is
91 /// invoked after the directive identifier is read and is responsible for
92 /// parsing and validating the rest of the directive. The handler is passed
93 /// in the directive name and the location of the directive keyword.
94 StringMap<std::pair<MCAsmParserExtension*, DirectiveHandler> > DirectiveMap;
Daniel Dunbar3c802de2010-07-18 18:38:02 +000095
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000096 /// MacroMap - Map of currently defined macros.
97 StringMap<Macro*> MacroMap;
98
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000099 /// ActiveMacros - Stack of active macro instantiations.
100 std::vector<MacroInstantiation*> ActiveMacros;
101
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000102 /// Boolean tracking whether macro substitution is enabled.
103 unsigned MacrosEnabled : 1;
104
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000105 /// Flag tracking whether any errors have been encountered.
106 unsigned HadError : 1;
107
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000108public:
109 AsmParser(const Target &T, SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
110 const MCAsmInfo &MAI);
111 ~AsmParser();
112
113 virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
114
115 void AddDirectiveHandler(MCAsmParserExtension *Object,
116 StringRef Directive,
117 DirectiveHandler Handler) {
118 DirectiveMap[Directive] = std::make_pair(Object, Handler);
119 }
120
121public:
122 /// @name MCAsmParser Interface
123 /// {
124
125 virtual SourceMgr &getSourceManager() { return SrcMgr; }
126 virtual MCAsmLexer &getLexer() { return Lexer; }
127 virtual MCContext &getContext() { return Ctx; }
128 virtual MCStreamer &getStreamer() { return Out; }
129
130 virtual void Warning(SMLoc L, const Twine &Meg);
131 virtual bool Error(SMLoc L, const Twine &Msg);
132
133 const AsmToken &Lex();
134
135 bool ParseExpression(const MCExpr *&Res);
136 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
137 virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
138 virtual bool ParseAbsoluteExpression(int64_t &Res);
139
140 /// }
141
142private:
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000143 void CheckForValidSection();
144
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000145 bool ParseStatement();
146
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000147 bool HandleMacroEntry(StringRef Name, SMLoc NameLoc, const Macro *M);
148 void HandleMacroExit();
149
150 void PrintMacroInstantiations();
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000151 void PrintMessage(SMLoc Loc, const Twine &Msg, const char *Type) const {
152 SrcMgr.PrintMessage(Loc, Msg, Type);
153 }
154
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000155 /// EnterIncludeFile - Enter the specified file. This returns true on failure.
156 bool EnterIncludeFile(const std::string &Filename);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000157
158 /// \brief Reset the current lexer position to that given by \arg Loc. The
159 /// current token is not set; clients should ensure Lex() is called
160 /// subsequently.
161 void JumpToLoc(SMLoc Loc);
162
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000163 void EatToEndOfStatement();
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000164
165 /// \brief Parse up to the end of statement and a return the contents from the
166 /// current token until the end of the statement; the current token on exit
167 /// will be either the EndOfStatement or EOF.
168 StringRef ParseStringToEndOfStatement();
169
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000170 bool ParseAssignment(StringRef Name);
171
172 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
173 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
174 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
175
176 /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
177 /// and set \arg Res to the identifier contents.
178 bool ParseIdentifier(StringRef &Res);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000179
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000180 // Directive Parsing.
Rafael Espindola787c3372010-10-28 20:02:27 +0000181
182 // ".ascii", ".asciiz", ".string"
183 bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000184 bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
Daniel Dunbarb95a0792010-09-24 01:59:56 +0000185 bool ParseDirectiveRealValue(const fltSemantics &); // ".single", ...
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000186 bool ParseDirectiveFill(); // ".fill"
187 bool ParseDirectiveSpace(); // ".space"
Rafael Espindola2ea2ac72010-09-16 15:03:59 +0000188 bool ParseDirectiveZero(); // ".zero"
Roman Divacky50e7a782010-10-28 16:22:58 +0000189 bool ParseDirectiveSet(StringRef IDVal); // ".set" or ".equ"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000190 bool ParseDirectiveOrg(); // ".org"
191 // ".align{,32}", ".p2align{,w,l}"
192 bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
193
194 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
195 /// accepts a single symbol (which should be a label or an external).
196 bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000197
198 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
199
200 bool ParseDirectiveAbort(); // ".abort"
201 bool ParseDirectiveInclude(); // ".include"
202
203 bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
204 bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
205 bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
206 bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
207
208 /// ParseEscapedString - Parse the current token as a string which may include
209 /// escaped characters and return the string contents.
210 bool ParseEscapedString(std::string &Data);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000211
212 const MCExpr *ApplyModifierToExpr(const MCExpr *E,
213 MCSymbolRefExpr::VariantKind Variant);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000214};
215
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000216/// \brief Generic implementations of directive handling, etc. which is shared
217/// (or the default, at least) for all assembler parser.
218class GenericAsmParser : public MCAsmParserExtension {
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000219 template<bool (GenericAsmParser::*Handler)(StringRef, SMLoc)>
220 void AddDirectiveHandler(StringRef Directive) {
221 getParser().AddDirectiveHandler(this, Directive,
222 HandleDirective<GenericAsmParser, Handler>);
223 }
224
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000225public:
226 GenericAsmParser() {}
227
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000228 AsmParser &getParser() {
229 return (AsmParser&) this->MCAsmParserExtension::getParser();
230 }
231
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000232 virtual void Initialize(MCAsmParser &Parser) {
233 // Call the base implementation.
234 this->MCAsmParserExtension::Initialize(Parser);
235
236 // Debugging directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000237 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveFile>(".file");
238 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLine>(".line");
239 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLoc>(".loc");
Daniel Dunbar138abae2010-10-16 04:56:42 +0000240 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveStabs>(".stabs");
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000241
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000242 // CFI directives.
243 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIStartProc>(
244 ".cfi_startproc");
245 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIEndProc>(
246 ".cfi_endproc");
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000247 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfa>(
248 ".cfi_def_cfa");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000249 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaOffset>(
250 ".cfi_def_cfa_offset");
251 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaRegister>(
252 ".cfi_def_cfa_register");
253 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIOffset>(
254 ".cfi_offset");
255 AddDirectiveHandler<
256 &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_personality");
257 AddDirectiveHandler<
258 &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_lsda");
Rafael Espindolafe024d02010-12-28 18:36:23 +0000259 AddDirectiveHandler<
260 &GenericAsmParser::ParseDirectiveCFIRememberState>(".cfi_remember_state");
261 AddDirectiveHandler<
262 &GenericAsmParser::ParseDirectiveCFIRestoreState>(".cfi_restore_state");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000263
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000264 // Macro directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000265 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
266 ".macros_on");
267 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
268 ".macros_off");
269 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacro>(".macro");
270 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endm");
271 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endmacro");
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000272
273 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".sleb128");
274 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".uleb128");
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000275 }
276
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000277 bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
278 bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
279 bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar138abae2010-10-16 04:56:42 +0000280 bool ParseDirectiveStabs(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000281 bool ParseDirectiveCFIStartProc(StringRef, SMLoc DirectiveLoc);
282 bool ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc);
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000283 bool ParseDirectiveCFIDefCfa(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000284 bool ParseDirectiveCFIDefCfaOffset(StringRef, SMLoc DirectiveLoc);
285 bool ParseDirectiveCFIDefCfaRegister(StringRef, SMLoc DirectiveLoc);
286 bool ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc);
287 bool ParseDirectiveCFIPersonalityOrLsda(StringRef, SMLoc DirectiveLoc);
Rafael Espindolafe024d02010-12-28 18:36:23 +0000288 bool ParseDirectiveCFIRememberState(StringRef, SMLoc DirectiveLoc);
289 bool ParseDirectiveCFIRestoreState(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000290
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000291 bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000292 bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
293 bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000294
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000295 bool ParseDirectiveLEB128(StringRef, SMLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000296};
297
298}
299
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000300namespace llvm {
301
302extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000303extern MCAsmParserExtension *createELFAsmParser();
Michael J. Spencer7d490042010-10-09 11:01:07 +0000304extern MCAsmParserExtension *createCOFFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000305
306}
307
Chris Lattneraaec2052010-01-19 19:46:13 +0000308enum { DEFAULT_ADDRSPACE = 0 };
309
Daniel Dunbar9186fa62010-07-01 20:41:56 +0000310AsmParser::AsmParser(const Target &T, SourceMgr &_SM, MCContext &_Ctx,
311 MCStreamer &_Out, const MCAsmInfo &_MAI)
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000312 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM),
Daniel Dunbare4749702010-07-12 18:12:02 +0000313 GenericParser(new GenericAsmParser), PlatformParser(0),
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000314 CurBuffer(0), MacrosEnabled(true) {
Sean Callananfd0b0282010-01-21 00:19:58 +0000315 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000316
317 // Initialize the generic parser.
318 GenericParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000319
320 // Initialize the platform / file format parser.
321 //
322 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
323 // created.
Michael J. Spencer7d490042010-10-09 11:01:07 +0000324 if (_MAI.hasMicrosoftFastStdCallMangling()) {
325 PlatformParser = createCOFFAsmParser();
326 PlatformParser->Initialize(*this);
327 } else if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000328 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000329 PlatformParser->Initialize(*this);
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000330 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000331 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000332 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000333 }
Chris Lattnerebb89b42009-09-27 21:16:52 +0000334}
335
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000336AsmParser::~AsmParser() {
Daniel Dunbar56491302010-07-29 01:51:55 +0000337 assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
338
339 // Destroy any macros.
340 for (StringMap<Macro*>::iterator it = MacroMap.begin(),
341 ie = MacroMap.end(); it != ie; ++it)
342 delete it->getValue();
343
Daniel Dunbare4749702010-07-12 18:12:02 +0000344 delete PlatformParser;
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000345 delete GenericParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000346}
347
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000348void AsmParser::PrintMacroInstantiations() {
349 // Print the active macro instantiation stack.
350 for (std::vector<MacroInstantiation*>::const_reverse_iterator
351 it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
352 PrintMessage((*it)->InstantiationLoc, "while in macro instantiation",
353 "note");
354}
355
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000356void AsmParser::Warning(SMLoc L, const Twine &Msg) {
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000357 PrintMessage(L, Msg, "warning");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000358 PrintMacroInstantiations();
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000359}
360
Daniel Dunbarf9507ff2009-07-27 23:20:52 +0000361bool AsmParser::Error(SMLoc L, const Twine &Msg) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000362 HadError = true;
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000363 PrintMessage(L, Msg, "error");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000364 PrintMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000365 return true;
366}
367
Sean Callananfd0b0282010-01-21 00:19:58 +0000368bool AsmParser::EnterIncludeFile(const std::string &Filename) {
369 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc());
370 if (NewBuf == -1)
371 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000372
Sean Callananfd0b0282010-01-21 00:19:58 +0000373 CurBuffer = NewBuf;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000374
Sean Callananfd0b0282010-01-21 00:19:58 +0000375 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000376
Sean Callananfd0b0282010-01-21 00:19:58 +0000377 return false;
378}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000379
380void AsmParser::JumpToLoc(SMLoc Loc) {
381 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
382 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
383}
384
Sean Callananfd0b0282010-01-21 00:19:58 +0000385const AsmToken &AsmParser::Lex() {
386 const AsmToken *tok = &Lexer.Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000387
Sean Callananfd0b0282010-01-21 00:19:58 +0000388 if (tok->is(AsmToken::Eof)) {
389 // If this is the end of an included file, pop the parent file off the
390 // include stack.
391 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
392 if (ParentIncludeLoc != SMLoc()) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000393 JumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000394 tok = &Lexer.Lex();
395 }
396 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000397
Sean Callananfd0b0282010-01-21 00:19:58 +0000398 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000399 Error(Lexer.getErrLoc(), Lexer.getErr());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000400
Sean Callananfd0b0282010-01-21 00:19:58 +0000401 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000402}
403
Chris Lattner79180e22010-04-05 23:15:42 +0000404bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000405 // Create the initial section, if requested.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000406 if (!NoInitialTextSection)
Rafael Espindolad80781b2010-09-15 21:48:40 +0000407 Out.InitSections();
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000408
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000409 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000410 Lex();
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000411
412 HadError = false;
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000413 AsmCond StartingCondState = TheCondState;
414
Chris Lattnerb717fb02009-07-02 21:53:43 +0000415 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000416 while (Lexer.isNot(AsmToken::Eof)) {
Chris Lattnerb717fb02009-07-02 21:53:43 +0000417 if (!ParseStatement()) continue;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000418
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000419 // We had an error, validate that one was emitted and recover by skipping to
420 // the next line.
421 assert(HadError && "Parse statement returned an error, but none emitted!");
Chris Lattnerb717fb02009-07-02 21:53:43 +0000422 EatToEndOfStatement();
423 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000424
425 if (TheCondState.TheCond != StartingCondState.TheCond ||
426 TheCondState.Ignore != StartingCondState.Ignore)
427 return TokError("unmatched .ifs or .elses");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000428
429 // Check to see there are no empty DwarfFile slots.
430 const std::vector<MCDwarfFile *> &MCDwarfFiles =
431 getContext().getMCDwarfFiles();
432 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000433 if (!MCDwarfFiles[i])
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000434 TokError("unassigned file number: " + Twine(i) + " for .file directives");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000435 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000436
Chris Lattner79180e22010-04-05 23:15:42 +0000437 // Finalize the output stream if there are no errors and if the client wants
438 // us to.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000439 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000440 Out.Finish();
441
Chris Lattnerb717fb02009-07-02 21:53:43 +0000442 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000443}
444
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000445void AsmParser::CheckForValidSection() {
446 if (!getStreamer().getCurrentSection()) {
447 TokError("expected section directive before assembly directive");
448 Out.SwitchSection(Ctx.getMachOSection(
449 "__TEXT", "__text",
450 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
451 0, SectionKind::getText()));
452 }
453}
454
Chris Lattner2cf5f142009-06-22 01:29:09 +0000455/// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
456void AsmParser::EatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000457 while (Lexer.isNot(AsmToken::EndOfStatement) &&
458 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000459 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000460
Chris Lattner2cf5f142009-06-22 01:29:09 +0000461 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000462 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000463 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000464}
465
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000466StringRef AsmParser::ParseStringToEndOfStatement() {
467 const char *Start = getTok().getLoc().getPointer();
468
469 while (Lexer.isNot(AsmToken::EndOfStatement) &&
470 Lexer.isNot(AsmToken::Eof))
471 Lex();
472
473 const char *End = getTok().getLoc().getPointer();
474 return StringRef(Start, End - Start);
475}
Chris Lattnerc4193832009-06-22 05:51:26 +0000476
Chris Lattner74ec1a32009-06-22 06:32:03 +0000477/// ParseParenExpr - Parse a paren expression and return it.
478/// NOTE: This assumes the leading '(' has already been consumed.
479///
480/// parenexpr ::= expr)
481///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000482bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner74ec1a32009-06-22 06:32:03 +0000483 if (ParseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000484 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000485 return TokError("expected ')' in parentheses expression");
Chris Lattnerb4307b32010-01-15 19:28:38 +0000486 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000487 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000488 return false;
489}
Chris Lattnerc4193832009-06-22 05:51:26 +0000490
Chris Lattner74ec1a32009-06-22 06:32:03 +0000491/// ParsePrimaryExpr - Parse a primary expression and return it.
492/// primaryexpr ::= (parenexpr
493/// primaryexpr ::= symbol
494/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000495/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000496/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000497bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000498 switch (Lexer.getKind()) {
499 default:
500 return TokError("unknown token in expression");
Daniel Dunbar3f872332009-07-28 16:08:33 +0000501 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000502 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000503 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000504 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000505 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000506 return false;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000507 case AsmToken::Dollar:
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000508 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000509 case AsmToken::Identifier: {
Daniel Dunbare17edff2010-08-24 19:13:42 +0000510 EndLoc = Lexer.getLoc();
511
512 StringRef Identifier;
513 if (ParseIdentifier(Identifier))
514 return false;
515
Daniel Dunbarfffff912009-10-16 01:34:54 +0000516 // This is a symbol reference.
Daniel Dunbare17edff2010-08-24 19:13:42 +0000517 std::pair<StringRef, StringRef> Split = Identifier.split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000518 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000519
520 // Lookup the symbol variant if used.
521 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000522 if (Split.first.size() != Identifier.size()) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000523 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000524 if (Variant == MCSymbolRefExpr::VK_Invalid) {
525 Variant = MCSymbolRefExpr::VK_None;
526 TokError("invalid variant '" + Split.second + "'");
527 }
528 }
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000529
Daniel Dunbarfffff912009-10-16 01:34:54 +0000530 // If this is an absolute variable reference, substitute it now to preserve
531 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000532 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000533 if (Variant)
Daniel Dunbar603abd52010-11-08 17:53:02 +0000534 return Error(EndLoc, "unexpected modifier on variable reference");
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000535
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000536 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000537 return false;
538 }
539
540 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000541 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000542 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000543 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000544 case AsmToken::Integer: {
545 SMLoc Loc = getTok().getLoc();
546 int64_t IntVal = getTok().getIntVal();
547 Res = MCConstantExpr::Create(IntVal, getContext());
Chris Lattnerb4307b32010-01-15 19:28:38 +0000548 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000549 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000550 // Look for 'b' or 'f' following an Integer as a directional label
551 if (Lexer.getKind() == AsmToken::Identifier) {
552 StringRef IDVal = getTok().getString();
553 if (IDVal == "f" || IDVal == "b"){
554 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
555 IDVal == "f" ? 1 : 0);
556 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
557 getContext());
558 if(IDVal == "b" && Sym->isUndefined())
559 return Error(Loc, "invalid reference to undefined symbol");
560 EndLoc = Lexer.getLoc();
561 Lex(); // Eat identifier.
562 }
563 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000564 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000565 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000566 case AsmToken::Dot: {
567 // This is a '.' reference, which references the current PC. Emit a
568 // temporary label to the streamer and refer to it.
569 MCSymbol *Sym = Ctx.CreateTempSymbol();
570 Out.EmitLabel(Sym);
571 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
572 EndLoc = Lexer.getLoc();
573 Lex(); // Eat identifier.
574 return false;
575 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000576
Daniel Dunbar3f872332009-07-28 16:08:33 +0000577 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000578 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000579 return ParseParenExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000580 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000581 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000582 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000583 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000584 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000585 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000586 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000587 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000588 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000589 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000590 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000591 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000592 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000593 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000594 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000595 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000596 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000597 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000598 }
599}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000600
Chris Lattnerb4307b32010-01-15 19:28:38 +0000601bool AsmParser::ParseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000602 SMLoc EndLoc;
603 return ParseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000604}
605
Daniel Dunbarcceba832010-09-17 02:47:07 +0000606const MCExpr *
607AsmParser::ApplyModifierToExpr(const MCExpr *E,
608 MCSymbolRefExpr::VariantKind Variant) {
609 // Recurse over the given expression, rebuilding it to apply the given variant
610 // if there is exactly one symbol.
611 switch (E->getKind()) {
612 case MCExpr::Target:
613 case MCExpr::Constant:
614 return 0;
615
616 case MCExpr::SymbolRef: {
617 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
618
619 if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
620 TokError("invalid variant on expression '" +
621 getTok().getIdentifier() + "' (already modified)");
622 return E;
623 }
624
625 return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
626 }
627
628 case MCExpr::Unary: {
629 const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
630 const MCExpr *Sub = ApplyModifierToExpr(UE->getSubExpr(), Variant);
631 if (!Sub)
632 return 0;
633 return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
634 }
635
636 case MCExpr::Binary: {
637 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
638 const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
639 const MCExpr *RHS = ApplyModifierToExpr(BE->getRHS(), Variant);
640
641 if (!LHS && !RHS)
642 return 0;
643
644 if (!LHS) LHS = BE->getLHS();
645 if (!RHS) RHS = BE->getRHS();
646
647 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
648 }
649 }
Daniel Dunbarf3f95c92010-09-17 16:34:24 +0000650
651 assert(0 && "Invalid expression kind!");
652 return 0;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000653}
654
Chris Lattner74ec1a32009-06-22 06:32:03 +0000655/// ParseExpression - Parse an expression and return it.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000656///
Chris Lattner74ec1a32009-06-22 06:32:03 +0000657/// expr ::= expr +,- expr -> lowest.
658/// expr ::= expr |,^,&,! expr -> middle.
659/// expr ::= expr *,/,%,<<,>> expr -> highest.
660/// expr ::= primaryexpr
661///
Chris Lattner54482b42010-01-15 19:39:23 +0000662bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000663 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000664 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000665 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
666 return true;
667
Daniel Dunbarcceba832010-09-17 02:47:07 +0000668 // As a special case, we support 'a op b @ modifier' by rewriting the
669 // expression to include the modifier. This is inefficient, but in general we
670 // expect users to use 'a@modifier op b'.
671 if (Lexer.getKind() == AsmToken::At) {
672 Lex();
673
674 if (Lexer.isNot(AsmToken::Identifier))
675 return TokError("unexpected symbol modifier following '@'");
676
677 MCSymbolRefExpr::VariantKind Variant =
678 MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
679 if (Variant == MCSymbolRefExpr::VK_Invalid)
680 return TokError("invalid variant '" + getTok().getIdentifier() + "'");
681
682 const MCExpr *ModifiedRes = ApplyModifierToExpr(Res, Variant);
683 if (!ModifiedRes) {
684 return TokError("invalid modifier '" + getTok().getIdentifier() +
685 "' (no symbols present)");
686 return true;
687 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000688
Daniel Dunbarcceba832010-09-17 02:47:07 +0000689 Res = ModifiedRes;
690 Lex();
691 }
692
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000693 // Try to constant fold it up front, if possible.
694 int64_t Value;
695 if (Res->EvaluateAsAbsolute(Value))
696 Res = MCConstantExpr::Create(Value, getContext());
697
698 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000699}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000700
Chris Lattnerb4307b32010-01-15 19:28:38 +0000701bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000702 Res = 0;
703 return ParseParenExpr(Res, EndLoc) ||
704 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000705}
706
Daniel Dunbar475839e2009-06-29 20:37:27 +0000707bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000708 const MCExpr *Expr;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000709
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000710 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar475839e2009-06-29 20:37:27 +0000711 if (ParseExpression(Expr))
712 return true;
713
Daniel Dunbare00b0112009-10-16 01:57:52 +0000714 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000715 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +0000716
717 return false;
718}
719
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000720static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000721 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000722 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000723 default:
724 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000725
Daniel Dunbarcceba832010-09-17 02:47:07 +0000726 // Lowest Precedence: &&, ||, @
Daniel Dunbar3f872332009-07-28 16:08:33 +0000727 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000728 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000729 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000730 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000731 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000732 return 1;
733
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000734
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000735 // Low Precedence: |, &, ^
Daniel Dunbar475839e2009-06-29 20:37:27 +0000736 //
737 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +0000738 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000739 Kind = MCBinaryExpr::Or;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000740 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000741 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000742 Kind = MCBinaryExpr::Xor;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000743 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000744 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000745 Kind = MCBinaryExpr::And;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000746 return 2;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000747
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000748 // Low Intermediate Precedence: ==, !=, <>, <, <=, >, >=
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000749 case AsmToken::EqualEqual:
750 Kind = MCBinaryExpr::EQ;
751 return 3;
752 case AsmToken::ExclaimEqual:
753 case AsmToken::LessGreater:
754 Kind = MCBinaryExpr::NE;
755 return 3;
756 case AsmToken::Less:
757 Kind = MCBinaryExpr::LT;
758 return 3;
759 case AsmToken::LessEqual:
760 Kind = MCBinaryExpr::LTE;
761 return 3;
762 case AsmToken::Greater:
763 Kind = MCBinaryExpr::GT;
764 return 3;
765 case AsmToken::GreaterEqual:
766 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000767 return 3;
768
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000769 // High Intermediate Precedence: +, -
770 case AsmToken::Plus:
771 Kind = MCBinaryExpr::Add;
772 return 4;
773 case AsmToken::Minus:
774 Kind = MCBinaryExpr::Sub;
775 return 4;
776
Daniel Dunbar475839e2009-06-29 20:37:27 +0000777 // Highest Precedence: *, /, %, <<, >>
Daniel Dunbar3f872332009-07-28 16:08:33 +0000778 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000779 Kind = MCBinaryExpr::Mul;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000780 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000781 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000782 Kind = MCBinaryExpr::Div;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000783 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000784 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000785 Kind = MCBinaryExpr::Mod;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000786 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000787 case AsmToken::LessLess:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000788 Kind = MCBinaryExpr::Shl;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000789 return 5;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000790 case AsmToken::GreaterGreater:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000791 Kind = MCBinaryExpr::Shr;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000792 return 5;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000793 }
794}
795
796
797/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
798/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000799bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
800 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000801 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000802 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000803 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000804
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000805 // If the next token is lower precedence than we are allowed to eat, return
806 // successfully with what we ate already.
807 if (TokPrec < Precedence)
808 return false;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000809
Sean Callanan79ed1a82010-01-19 20:22:31 +0000810 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000811
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000812 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000813 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000814 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000815
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000816 // If BinOp binds less tightly with RHS than the operator after RHS, let
817 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000818 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000819 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000820 if (TokPrec < NextTokPrec) {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000821 if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000822 }
823
Daniel Dunbar475839e2009-06-29 20:37:27 +0000824 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000825 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000826 }
827}
828
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000829
830
831
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000832/// ParseStatement:
833/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +0000834/// ::= Label* Directive ...Operands... EndOfStatement
835/// ::= Label* Identifier OperandList* EndOfStatement
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000836bool AsmParser::ParseStatement() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000837 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000838 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000839 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000840 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000841 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000842
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +0000843 // Statements always start with an identifier or are a full line comment.
Sean Callanan18b83232010-01-19 21:44:56 +0000844 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +0000845 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000846 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000847 int64_t LocalLabelVal = -1;
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +0000848 // A full line comment is a '#' as the first token.
849 if (Lexer.is(AsmToken::Hash)) {
850 EatToEndOfStatement();
851 return false;
852 }
853 // Allow an integer followed by a ':' as a directional local label.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000854 if (Lexer.is(AsmToken::Integer)) {
855 LocalLabelVal = getTok().getIntVal();
856 if (LocalLabelVal < 0) {
857 if (!TheCondState.Ignore)
858 return TokError("unexpected token at start of statement");
859 IDVal = "";
860 }
861 else {
862 IDVal = getTok().getString();
863 Lex(); // Consume the integer token to be used as an identifier token.
864 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +0000865 if (!TheCondState.Ignore)
866 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000867 }
868 }
869 }
870 else if (ParseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +0000871 if (!TheCondState.Ignore)
872 return TokError("unexpected token at start of statement");
873 IDVal = "";
874 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000875
Chris Lattner7834fac2010-04-17 18:14:27 +0000876 // Handle conditional assembly here before checking for skipping. We
877 // have to do this so that .endif isn't skipped in a ".if 0" block for
878 // example.
879 if (IDVal == ".if")
880 return ParseDirectiveIf(IDLoc);
881 if (IDVal == ".elseif")
882 return ParseDirectiveElseIf(IDLoc);
883 if (IDVal == ".else")
884 return ParseDirectiveElse(IDLoc);
885 if (IDVal == ".endif")
886 return ParseDirectiveEndIf(IDLoc);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000887
Chris Lattner7834fac2010-04-17 18:14:27 +0000888 // If we are in a ".if 0" block, ignore this statement.
889 if (TheCondState.Ignore) {
890 EatToEndOfStatement();
891 return false;
892 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000893
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +0000894 // FIXME: Recurse on local labels?
895
896 // See what kind of statement we have.
897 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000898 case AsmToken::Colon: {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000899 CheckForValidSection();
900
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000901 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000902 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000903
904 // Diagnose attempt to use a variable as a label.
905 //
906 // FIXME: Diagnostics. Note the location of the definition as a label.
907 // FIXME: This doesn't diagnose assignment to a symbol which has been
908 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000909 MCSymbol *Sym;
910 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000911 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000912 else
913 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +0000914 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000915 return Error(IDLoc, "invalid symbol redefinition");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000916
Daniel Dunbar959fd882009-08-26 22:13:22 +0000917 // Emit the label.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000918 Out.EmitLabel(Sym);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000919
Daniel Dunbar01777ff2010-05-23 18:36:34 +0000920 // Consume any end of statement token, if present, to avoid spurious
921 // AddBlankLine calls().
922 if (Lexer.is(AsmToken::EndOfStatement)) {
923 Lex();
924 if (Lexer.is(AsmToken::Eof))
925 return false;
926 }
927
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000928 return ParseStatement();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +0000929 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000930
Daniel Dunbar3f872332009-07-28 16:08:33 +0000931 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000932 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +0000933 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000934
Daniel Dunbare2ace502009-08-31 08:09:09 +0000935 return ParseAssignment(IDVal);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000936
937 default: // Normal instruction or directive.
938 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000939 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000940
941 // If macros are enabled, check to see if this is a macro instantiation.
942 if (MacrosEnabled)
943 if (const Macro *M = MacroMap.lookup(IDVal))
944 return HandleMacroEntry(IDVal, IDLoc, M);
945
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000946 // Otherwise, we have a normal instruction or directive.
Chris Lattner2cf5f142009-06-22 01:29:09 +0000947 if (IDVal[0] == '.') {
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000948 // Assembler features
Roman Divacky50e7a782010-10-28 16:22:58 +0000949 if (IDVal == ".set" || IDVal == ".equ")
950 return ParseDirectiveSet(IDVal);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +0000951
Daniel Dunbara0d14262009-06-24 23:30:00 +0000952 // Data directives
953
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000954 if (IDVal == ".ascii")
Rafael Espindola787c3372010-10-28 20:02:27 +0000955 return ParseDirectiveAscii(IDVal, false);
956 if (IDVal == ".asciz" || IDVal == ".string")
957 return ParseDirectiveAscii(IDVal, true);
Daniel Dunbara0d14262009-06-24 23:30:00 +0000958
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000959 if (IDVal == ".byte")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000960 return ParseDirectiveValue(1);
Kevin Enderby9c656452009-09-10 20:51:44 +0000961 if (IDVal == ".short")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000962 return ParseDirectiveValue(2);
Rafael Espindolacc3acee2010-11-01 15:29:07 +0000963 if (IDVal == ".value")
964 return ParseDirectiveValue(2);
Rafael Espindola110f22a2010-11-17 16:15:42 +0000965 if (IDVal == ".2byte")
966 return ParseDirectiveValue(2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000967 if (IDVal == ".long")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000968 return ParseDirectiveValue(4);
Rafael Espindola435279b2010-11-17 16:24:40 +0000969 if (IDVal == ".int")
970 return ParseDirectiveValue(4);
Rafael Espindola110f22a2010-11-17 16:15:42 +0000971 if (IDVal == ".4byte")
972 return ParseDirectiveValue(4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000973 if (IDVal == ".quad")
Daniel Dunbara0d14262009-06-24 23:30:00 +0000974 return ParseDirectiveValue(8);
Rafael Espindola110f22a2010-11-17 16:15:42 +0000975 if (IDVal == ".8byte")
976 return ParseDirectiveValue(8);
Daniel Dunbarb95a0792010-09-24 01:59:56 +0000977 if (IDVal == ".single")
978 return ParseDirectiveRealValue(APFloat::IEEEsingle);
979 if (IDVal == ".double")
980 return ParseDirectiveRealValue(APFloat::IEEEdouble);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000981
Eli Friedman5d68ec22010-07-19 04:17:25 +0000982 if (IDVal == ".align") {
983 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
984 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
985 }
986 if (IDVal == ".align32") {
987 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
988 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
989 }
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000990 if (IDVal == ".balign")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000991 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000992 if (IDVal == ".balignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000993 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000994 if (IDVal == ".balignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000995 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000996 if (IDVal == ".p2align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000997 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000998 if (IDVal == ".p2alignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000999 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001000 if (IDVal == ".p2alignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001001 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
1002
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001003 if (IDVal == ".org")
Daniel Dunbarc238b582009-06-25 22:44:51 +00001004 return ParseDirectiveOrg();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001005
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001006 if (IDVal == ".fill")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001007 return ParseDirectiveFill();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001008 if (IDVal == ".space")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001009 return ParseDirectiveSpace();
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001010 if (IDVal == ".zero")
1011 return ParseDirectiveZero();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001012
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001013 // Symbol attribute directives
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001014
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001015 if (IDVal == ".globl" || IDVal == ".global")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001016 return ParseDirectiveSymbolAttribute(MCSA_Global);
Rafael Espindolaf7c10a32010-09-21 00:24:38 +00001017 // ELF only? Should it be here?
1018 if (IDVal == ".local")
1019 return ParseDirectiveSymbolAttribute(MCSA_Local);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001020 if (IDVal == ".hidden")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001021 return ParseDirectiveSymbolAttribute(MCSA_Hidden);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001022 if (IDVal == ".indirect_symbol")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001023 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001024 if (IDVal == ".internal")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001025 return ParseDirectiveSymbolAttribute(MCSA_Internal);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001026 if (IDVal == ".lazy_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001027 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001028 if (IDVal == ".no_dead_strip")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001029 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Kevin Enderbye8e98d72010-11-19 18:39:33 +00001030 if (IDVal == ".symbol_resolver")
1031 return ParseDirectiveSymbolAttribute(MCSA_SymbolResolver);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001032 if (IDVal == ".private_extern")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001033 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001034 if (IDVal == ".protected")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001035 return ParseDirectiveSymbolAttribute(MCSA_Protected);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001036 if (IDVal == ".reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001037 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001038 if (IDVal == ".weak")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001039 return ParseDirectiveSymbolAttribute(MCSA_Weak);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001040 if (IDVal == ".weak_definition")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001041 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001042 if (IDVal == ".weak_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001043 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Kevin Enderbyf59cac52010-07-08 17:22:42 +00001044 if (IDVal == ".weak_def_can_be_hidden")
1045 return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001046
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001047 if (IDVal == ".comm")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001048 return ParseDirectiveComm(/*IsLocal=*/false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001049 if (IDVal == ".lcomm")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001050 return ParseDirectiveComm(/*IsLocal=*/true);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001051
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001052 if (IDVal == ".abort")
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001053 return ParseDirectiveAbort();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001054 if (IDVal == ".include")
Kevin Enderby1f049b22009-07-14 23:21:55 +00001055 return ParseDirectiveInclude();
Kevin Enderbya5c78322009-07-13 21:03:15 +00001056
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001057 // Look up the handler in the handler table.
1058 std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
1059 DirectiveMap.lookup(IDVal);
1060 if (Handler.first)
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +00001061 return (*Handler.second)(Handler.first, IDVal, IDLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001062
Kevin Enderby9c656452009-09-10 20:51:44 +00001063 // Target hook for parsing target specific directives.
1064 if (!getTargetParser().ParseDirective(ID))
1065 return false;
1066
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001067 Warning(IDLoc, "ignoring directive for now");
Chris Lattner2cf5f142009-06-22 01:29:09 +00001068 EatToEndOfStatement();
1069 return false;
1070 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001071
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001072 CheckForValidSection();
1073
Chris Lattnera7f13542010-05-19 23:34:33 +00001074 // Canonicalize the opcode to lower case.
1075 SmallString<128> Opcode;
1076 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
1077 Opcode.push_back(tolower(IDVal[i]));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001078
Chris Lattner98986712010-01-14 22:21:20 +00001079 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
Chris Lattnera7f13542010-05-19 23:34:33 +00001080 bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc,
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001081 ParsedOperands);
Chris Lattner2cf5f142009-06-22 01:29:09 +00001082
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001083 // Dump the parsed representation, if requested.
1084 if (getShowParsedOperands()) {
1085 SmallString<256> Str;
1086 raw_svector_ostream OS(Str);
1087 OS << "parsed instruction: [";
1088 for (unsigned i = 0; i != ParsedOperands.size(); ++i) {
1089 if (i != 0)
1090 OS << ", ";
1091 ParsedOperands[i]->dump(OS);
1092 }
1093 OS << "]";
1094
1095 PrintMessage(IDLoc, OS.str(), "note");
1096 }
1097
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001098 // If parsing succeeded, match the instruction.
Chris Lattner7036f8b2010-09-29 01:42:58 +00001099 if (!HadError)
1100 HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, ParsedOperands,
1101 Out);
Chris Lattner98986712010-01-14 22:21:20 +00001102
Chris Lattner98986712010-01-14 22:21:20 +00001103 // Free any parsed operands.
1104 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
1105 delete ParsedOperands[i];
1106
Chris Lattnercbf8a982010-09-11 16:18:25 +00001107 // Don't skip the rest of the line, the instruction parser is responsible for
1108 // that.
1109 return false;
Chris Lattner27aa7d22009-06-21 20:16:42 +00001110}
Chris Lattner9a023f72009-06-24 04:43:34 +00001111
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001112MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
1113 const std::vector<std::vector<AsmToken> > &A)
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001114 : TheMacro(M), InstantiationLoc(IL), ExitLoc(EL)
1115{
1116 // Macro instantiation is lexical, unfortunately. We construct a new buffer
1117 // to hold the macro body with substitutions.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001118 SmallString<256> Buf;
1119 raw_svector_ostream OS(Buf);
1120
1121 StringRef Body = M->Body;
1122 while (!Body.empty()) {
1123 // Scan for the next substitution.
1124 std::size_t End = Body.size(), Pos = 0;
1125 for (; Pos != End; ++Pos) {
1126 // Check for a substitution or escape.
1127 if (Body[Pos] != '$' || Pos + 1 == End)
1128 continue;
1129
1130 char Next = Body[Pos + 1];
1131 if (Next == '$' || Next == 'n' || isdigit(Next))
1132 break;
1133 }
1134
1135 // Add the prefix.
1136 OS << Body.slice(0, Pos);
1137
1138 // Check if we reached the end.
1139 if (Pos == End)
1140 break;
1141
1142 switch (Body[Pos+1]) {
1143 // $$ => $
1144 case '$':
1145 OS << '$';
1146 break;
1147
1148 // $n => number of arguments
1149 case 'n':
1150 OS << A.size();
1151 break;
1152
1153 // $[0-9] => argument
1154 default: {
1155 // Missing arguments are ignored.
1156 unsigned Index = Body[Pos+1] - '0';
1157 if (Index >= A.size())
1158 break;
1159
1160 // Otherwise substitute with the token values, with spaces eliminated.
1161 for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
1162 ie = A[Index].end(); it != ie; ++it)
1163 OS << it->getString();
1164 break;
1165 }
1166 }
1167
1168 // Update the scan point.
1169 Body = Body.substr(Pos + 2);
1170 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001171
1172 // We include the .endmacro in the buffer as our queue to exit the macro
1173 // instantiation.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001174 OS << ".endmacro\n";
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001175
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001176 Instantiation = MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001177}
1178
1179bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
1180 const Macro *M) {
1181 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1182 // this, although we should protect against infinite loops.
1183 if (ActiveMacros.size() == 20)
1184 return TokError("macros cannot be nested more than 20 levels deep");
1185
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001186 // Parse the macro instantiation arguments.
1187 std::vector<std::vector<AsmToken> > MacroArguments;
1188 MacroArguments.push_back(std::vector<AsmToken>());
1189 unsigned ParenLevel = 0;
1190 for (;;) {
1191 if (Lexer.is(AsmToken::Eof))
1192 return TokError("unexpected token in macro instantiation");
1193 if (Lexer.is(AsmToken::EndOfStatement))
1194 break;
1195
1196 // If we aren't inside parentheses and this is a comma, start a new token
1197 // list.
1198 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1199 MacroArguments.push_back(std::vector<AsmToken>());
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001200 } else {
Daniel Dunbare25c6b92010-08-10 17:38:52 +00001201 // Adjust the current parentheses level.
1202 if (Lexer.is(AsmToken::LParen))
1203 ++ParenLevel;
1204 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1205 --ParenLevel;
1206
1207 // Append the token to the current argument list.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001208 MacroArguments.back().push_back(getTok());
1209 }
1210 Lex();
1211 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001212
1213 // Create the macro instantiation object and add to the current macro
1214 // instantiation stack.
1215 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001216 getTok().getLoc(),
1217 MacroArguments);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001218 ActiveMacros.push_back(MI);
1219
1220 // Jump to the macro instantiation and prime the lexer.
1221 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1222 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1223 Lex();
1224
1225 return false;
1226}
1227
1228void AsmParser::HandleMacroExit() {
1229 // Jump to the EndOfStatement we should return to, and consume it.
1230 JumpToLoc(ActiveMacros.back()->ExitLoc);
1231 Lex();
1232
1233 // Pop the instantiation entry.
1234 delete ActiveMacros.back();
1235 ActiveMacros.pop_back();
1236}
1237
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001238static void MarkUsed(const MCExpr *Value) {
1239 switch (Value->getKind()) {
1240 case MCExpr::Binary:
1241 MarkUsed(static_cast<const MCBinaryExpr*>(Value)->getLHS());
1242 MarkUsed(static_cast<const MCBinaryExpr*>(Value)->getRHS());
1243 break;
1244 case MCExpr::Target:
1245 case MCExpr::Constant:
1246 break;
1247 case MCExpr::SymbolRef: {
1248 static_cast<const MCSymbolRefExpr*>(Value)->getSymbol().setUsed(true);
1249 break;
1250 }
1251 case MCExpr::Unary:
1252 MarkUsed(static_cast<const MCUnaryExpr*>(Value)->getSubExpr());
1253 break;
1254 }
1255}
1256
Benjamin Kramer38e59892010-07-14 22:38:02 +00001257bool AsmParser::ParseAssignment(StringRef Name) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001258 // FIXME: Use better location, we should use proper tokens.
1259 SMLoc EqualLoc = Lexer.getLoc();
1260
Daniel Dunbar821e3332009-08-31 08:09:28 +00001261 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001262 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001263 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001264
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001265 MarkUsed(Value);
1266
Daniel Dunbar3f872332009-07-28 16:08:33 +00001267 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001268 return TokError("unexpected token in assignment");
1269
1270 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001271 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001272
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001273 // Validate that the LHS is allowed to be a variable (either it has not been
1274 // used as a symbol, or it is an absolute symbol).
1275 MCSymbol *Sym = getContext().LookupSymbol(Name);
1276 if (Sym) {
1277 // Diagnose assignment to a label.
1278 //
1279 // FIXME: Diagnostics. Note the location of the definition as a label.
1280 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001281 if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001282 ; // Allow redefinitions of undefined symbols only used in directives.
1283 else if (!Sym->isUndefined() && !Sym->isAbsolute())
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001284 return Error(EqualLoc, "redefinition of '" + Name + "'");
1285 else if (!Sym->isVariable())
1286 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00001287 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001288 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1289 Name + "'");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001290
1291 // Don't count these checks as uses.
1292 Sym->setUsed(false);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001293 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001294 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001295
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001296 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001297
1298 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00001299 Out.EmitAssignment(Sym, Value);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001300
1301 return false;
1302}
1303
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001304/// ParseIdentifier:
1305/// ::= identifier
1306/// ::= string
1307bool AsmParser::ParseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00001308 // The assembler has relaxed rules for accepting identifiers, in particular we
1309 // allow things like '.globl $foo', which would normally be separate
1310 // tokens. At this level, we have already lexed so we cannot (currently)
1311 // handle this as a context dependent token, instead we detect adjacent tokens
1312 // and return the combined identifier.
1313 if (Lexer.is(AsmToken::Dollar)) {
1314 SMLoc DollarLoc = getLexer().getLoc();
1315
1316 // Consume the dollar sign, and check for a following identifier.
1317 Lex();
1318 if (Lexer.isNot(AsmToken::Identifier))
1319 return true;
1320
1321 // We have a '$' followed by an identifier, make sure they are adjacent.
1322 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
1323 return true;
1324
1325 // Construct the joined identifier and consume the token.
1326 Res = StringRef(DollarLoc.getPointer(),
1327 getTok().getIdentifier().size() + 1);
1328 Lex();
1329 return false;
1330 }
1331
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001332 if (Lexer.isNot(AsmToken::Identifier) &&
1333 Lexer.isNot(AsmToken::String))
1334 return true;
1335
Sean Callanan18b83232010-01-19 21:44:56 +00001336 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001337
Sean Callanan79ed1a82010-01-19 20:22:31 +00001338 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001339
1340 return false;
1341}
1342
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001343/// ParseDirectiveSet:
1344/// ::= .set identifier ',' expression
Roman Divacky50e7a782010-10-28 16:22:58 +00001345bool AsmParser::ParseDirectiveSet(StringRef IDVal) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001346 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001347
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001348 if (ParseIdentifier(Name))
Roman Divackyf9d17522010-10-28 16:57:58 +00001349 return TokError("expected identifier after '" + Twine(IDVal) + "'");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001350
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001351 if (getLexer().isNot(AsmToken::Comma))
Roman Divackyf9d17522010-10-28 16:57:58 +00001352 return TokError("unexpected token in '" + Twine(IDVal) + "'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001353 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001354
Daniel Dunbare2ace502009-08-31 08:09:09 +00001355 return ParseAssignment(Name);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001356}
1357
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001358bool AsmParser::ParseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001359 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001360
1361 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00001362 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001363 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1364 if (Str[i] != '\\') {
1365 Data += Str[i];
1366 continue;
1367 }
1368
1369 // Recognize escaped characters. Note that this escape semantics currently
1370 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1371 ++i;
1372 if (i == e)
1373 return TokError("unexpected backslash at end of string");
1374
1375 // Recognize octal sequences.
1376 if ((unsigned) (Str[i] - '0') <= 7) {
1377 // Consume up to three octal characters.
1378 unsigned Value = Str[i] - '0';
1379
1380 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1381 ++i;
1382 Value = Value * 8 + (Str[i] - '0');
1383
1384 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1385 ++i;
1386 Value = Value * 8 + (Str[i] - '0');
1387 }
1388 }
1389
1390 if (Value > 255)
1391 return TokError("invalid octal escape sequence (out of range)");
1392
1393 Data += (unsigned char) Value;
1394 continue;
1395 }
1396
1397 // Otherwise recognize individual escapes.
1398 switch (Str[i]) {
1399 default:
1400 // Just reject invalid escape sequences for now.
1401 return TokError("invalid escape sequence (unrecognized character)");
1402
1403 case 'b': Data += '\b'; break;
1404 case 'f': Data += '\f'; break;
1405 case 'n': Data += '\n'; break;
1406 case 'r': Data += '\r'; break;
1407 case 't': Data += '\t'; break;
1408 case '"': Data += '"'; break;
1409 case '\\': Data += '\\'; break;
1410 }
1411 }
1412
1413 return false;
1414}
1415
Daniel Dunbara0d14262009-06-24 23:30:00 +00001416/// ParseDirectiveAscii:
Rafael Espindola787c3372010-10-28 20:02:27 +00001417/// ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
1418bool AsmParser::ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001419 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001420 CheckForValidSection();
1421
Daniel Dunbara0d14262009-06-24 23:30:00 +00001422 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001423 if (getLexer().isNot(AsmToken::String))
Rafael Espindola787c3372010-10-28 20:02:27 +00001424 return TokError("expected string in '" + Twine(IDVal) + "' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001425
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001426 std::string Data;
1427 if (ParseEscapedString(Data))
1428 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001429
1430 getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001431 if (ZeroTerminated)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001432 getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
1433
Sean Callanan79ed1a82010-01-19 20:22:31 +00001434 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001435
1436 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001437 break;
1438
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001439 if (getLexer().isNot(AsmToken::Comma))
Rafael Espindola787c3372010-10-28 20:02:27 +00001440 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001441 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001442 }
1443 }
1444
Sean Callanan79ed1a82010-01-19 20:22:31 +00001445 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001446 return false;
1447}
1448
1449/// ParseDirectiveValue
1450/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
1451bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001452 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001453 CheckForValidSection();
1454
Daniel Dunbara0d14262009-06-24 23:30:00 +00001455 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001456 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001457 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001458 return true;
1459
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001460 // Special case constant expressions to match code generator.
1461 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value))
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001462 getStreamer().EmitIntValue(MCE->getValue(), Size, DEFAULT_ADDRSPACE);
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001463 else
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001464 getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001465
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001466 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001467 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001468
Daniel Dunbara0d14262009-06-24 23:30:00 +00001469 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001470 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001471 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001472 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001473 }
1474 }
1475
Sean Callanan79ed1a82010-01-19 20:22:31 +00001476 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001477 return false;
1478}
1479
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001480/// ParseDirectiveRealValue
1481/// ::= (.single | .double) [ expression (, expression)* ]
1482bool AsmParser::ParseDirectiveRealValue(const fltSemantics &Semantics) {
1483 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1484 CheckForValidSection();
1485
1486 for (;;) {
1487 // We don't truly support arithmetic on floating point expressions, so we
1488 // have to manually parse unary prefixes.
1489 bool IsNeg = false;
1490 if (getLexer().is(AsmToken::Minus)) {
1491 Lex();
1492 IsNeg = true;
1493 } else if (getLexer().is(AsmToken::Plus))
1494 Lex();
1495
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001496 if (getLexer().isNot(AsmToken::Integer) &&
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001497 getLexer().isNot(AsmToken::Real))
1498 return TokError("unexpected token in directive");
1499
1500 // Convert to an APFloat.
1501 APFloat Value(Semantics);
1502 if (Value.convertFromString(getTok().getString(),
1503 APFloat::rmNearestTiesToEven) ==
1504 APFloat::opInvalidOp)
1505 return TokError("invalid floating point literal");
1506 if (IsNeg)
1507 Value.changeSign();
1508
1509 // Consume the numeric token.
1510 Lex();
1511
1512 // Emit the value as an integer.
1513 APInt AsInt = Value.bitcastToAPInt();
1514 getStreamer().EmitIntValue(AsInt.getLimitedValue(),
1515 AsInt.getBitWidth() / 8, DEFAULT_ADDRSPACE);
1516
1517 if (getLexer().is(AsmToken::EndOfStatement))
1518 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001519
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001520 if (getLexer().isNot(AsmToken::Comma))
1521 return TokError("unexpected token in directive");
1522 Lex();
1523 }
1524 }
1525
1526 Lex();
1527 return false;
1528}
1529
Daniel Dunbara0d14262009-06-24 23:30:00 +00001530/// ParseDirectiveSpace
1531/// ::= .space expression [ , expression ]
1532bool AsmParser::ParseDirectiveSpace() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001533 CheckForValidSection();
1534
Daniel Dunbara0d14262009-06-24 23:30:00 +00001535 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001536 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001537 return true;
1538
1539 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001540 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1541 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001542 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001543 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001544
Daniel Dunbar475839e2009-06-29 20:37:27 +00001545 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001546 return true;
1547
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001548 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001549 return TokError("unexpected token in '.space' directive");
1550 }
1551
Sean Callanan79ed1a82010-01-19 20:22:31 +00001552 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001553
1554 if (NumBytes <= 0)
1555 return TokError("invalid number of bytes in '.space' directive");
1556
1557 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001558 getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001559
1560 return false;
1561}
1562
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001563/// ParseDirectiveZero
1564/// ::= .zero expression
1565bool AsmParser::ParseDirectiveZero() {
1566 CheckForValidSection();
1567
1568 int64_t NumBytes;
1569 if (ParseAbsoluteExpression(NumBytes))
1570 return true;
1571
Rafael Espindolae452b172010-10-05 19:42:57 +00001572 int64_t Val = 0;
1573 if (getLexer().is(AsmToken::Comma)) {
1574 Lex();
1575 if (ParseAbsoluteExpression(Val))
1576 return true;
1577 }
1578
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001579 if (getLexer().isNot(AsmToken::EndOfStatement))
1580 return TokError("unexpected token in '.zero' directive");
1581
1582 Lex();
1583
Rafael Espindolae452b172010-10-05 19:42:57 +00001584 getStreamer().EmitFill(NumBytes, Val, DEFAULT_ADDRSPACE);
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001585
1586 return false;
1587}
1588
Daniel Dunbara0d14262009-06-24 23:30:00 +00001589/// ParseDirectiveFill
1590/// ::= .fill expression , expression , expression
1591bool AsmParser::ParseDirectiveFill() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001592 CheckForValidSection();
1593
Daniel Dunbara0d14262009-06-24 23:30:00 +00001594 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001595 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001596 return true;
1597
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001598 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001599 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001600 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001601
Daniel Dunbara0d14262009-06-24 23:30:00 +00001602 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001603 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001604 return true;
1605
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001606 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001607 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001608 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001609
Daniel Dunbara0d14262009-06-24 23:30:00 +00001610 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001611 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001612 return true;
1613
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001614 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001615 return TokError("unexpected token in '.fill' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001616
Sean Callanan79ed1a82010-01-19 20:22:31 +00001617 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001618
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00001619 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
1620 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00001621
1622 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001623 getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001624
1625 return false;
1626}
Daniel Dunbarc238b582009-06-25 22:44:51 +00001627
1628/// ParseDirectiveOrg
1629/// ::= .org expression [ , expression ]
1630bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001631 CheckForValidSection();
1632
Daniel Dunbar821e3332009-08-31 08:09:28 +00001633 const MCExpr *Offset;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001634 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001635 return true;
1636
1637 // Parse optional fill expression.
1638 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001639 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1640 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001641 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001642 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001643
Daniel Dunbar475839e2009-06-29 20:37:27 +00001644 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001645 return true;
1646
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001647 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00001648 return TokError("unexpected token in '.org' directive");
1649 }
1650
Sean Callanan79ed1a82010-01-19 20:22:31 +00001651 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001652
1653 // FIXME: Only limited forms of relocatable expressions are accepted here, it
1654 // has to be relative to the current section.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001655 getStreamer().EmitValueToOffset(Offset, FillExpr);
Daniel Dunbarc238b582009-06-25 22:44:51 +00001656
1657 return false;
1658}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001659
1660/// ParseDirectiveAlign
1661/// ::= {.align, ...} expression [ , expression [ , expression ]]
1662bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001663 CheckForValidSection();
1664
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001665 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001666 int64_t Alignment;
1667 if (ParseAbsoluteExpression(Alignment))
1668 return true;
1669
1670 SMLoc MaxBytesLoc;
1671 bool HasFillExpr = false;
1672 int64_t FillExpr = 0;
1673 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001674 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1675 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001676 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001677 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001678
1679 // The fill expression can be omitted while specifying a maximum number of
1680 // alignment bytes, e.g:
1681 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001682 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001683 HasFillExpr = true;
1684 if (ParseAbsoluteExpression(FillExpr))
1685 return true;
1686 }
1687
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001688 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1689 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001690 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001691 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001692
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001693 MaxBytesLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001694 if (ParseAbsoluteExpression(MaxBytesToFill))
1695 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001696
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001697 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001698 return TokError("unexpected token in directive");
1699 }
1700 }
1701
Sean Callanan79ed1a82010-01-19 20:22:31 +00001702 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001703
Daniel Dunbar648ac512010-05-17 21:54:30 +00001704 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001705 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001706
1707 // Compute alignment in bytes.
1708 if (IsPow2) {
1709 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001710 if (Alignment >= 32) {
1711 Error(AlignmentLoc, "invalid alignment value");
1712 Alignment = 31;
1713 }
1714
Benjamin Kramer12fd7672009-09-06 09:35:10 +00001715 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001716 }
1717
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001718 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001719 if (MaxBytesLoc.isValid()) {
1720 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00001721 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
1722 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00001723 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001724 }
1725
1726 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00001727 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
1728 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001729 MaxBytesToFill = 0;
1730 }
1731 }
1732
Daniel Dunbar648ac512010-05-17 21:54:30 +00001733 // Check whether we should use optimal code alignment for this .align
1734 // directive.
Jan Wen Voung083cf152010-10-04 17:32:41 +00001735 bool UseCodeAlign = getStreamer().getCurrentSection()->UseCodeAlign();
Daniel Dunbar648ac512010-05-17 21:54:30 +00001736 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
1737 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001738 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001739 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00001740 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00001741 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
1742 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00001743 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001744
1745 return false;
1746}
1747
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001748/// ParseDirectiveSymbolAttribute
1749/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001750bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001751 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001752 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001753 StringRef Name;
1754
1755 if (ParseIdentifier(Name))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001756 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001757
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001758 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001759
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001760 getStreamer().EmitSymbolAttribute(Sym, Attr);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001761
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001762 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001763 break;
1764
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001765 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001766 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001767 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001768 }
1769 }
1770
Sean Callanan79ed1a82010-01-19 20:22:31 +00001771 Lex();
Jan Wen Vounga854a4b2010-09-30 01:09:20 +00001772 return false;
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001773}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001774
1775/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00001776/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
1777bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001778 CheckForValidSection();
1779
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001780 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001781 StringRef Name;
1782 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001783 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001784
Daniel Dunbar76c4d762009-07-31 21:55:09 +00001785 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001786 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001787
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001788 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001789 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001790 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001791
1792 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001793 SMLoc SizeLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001794 if (ParseAbsoluteExpression(Size))
1795 return true;
1796
1797 int64_t Pow2Alignment = 0;
1798 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001799 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00001800 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001801 Pow2AlignmentLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001802 if (ParseAbsoluteExpression(Pow2Alignment))
1803 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001804
Chris Lattner258281d2010-01-19 06:22:22 +00001805 // If this target takes alignments in bytes (not log) validate and convert.
1806 if (Lexer.getMAI().getAlignmentIsInBytes()) {
1807 if (!isPowerOf2_64(Pow2Alignment))
1808 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
1809 Pow2Alignment = Log2_64(Pow2Alignment);
1810 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001811 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001812
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001813 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00001814 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001815
Sean Callanan79ed1a82010-01-19 20:22:31 +00001816 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001817
Chris Lattner1fc3d752009-07-09 17:25:12 +00001818 // NOTE: a size of zero for a .comm should create a undefined symbol
1819 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001820 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001821 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
1822 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001823
Eric Christopherc260a3e2010-05-14 01:38:54 +00001824 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001825 // may internally end up wanting an alignment in bytes.
1826 // FIXME: Diagnose overflow.
1827 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00001828 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
1829 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001830
Daniel Dunbar8906ff12009-08-22 07:22:36 +00001831 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001832 return Error(IDLoc, "invalid symbol redefinition");
1833
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001834 // '.lcomm' is equivalent to '.zerofill'.
Chris Lattner1fc3d752009-07-09 17:25:12 +00001835 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001836 if (IsLocal) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001837 getStreamer().EmitZerofill(Ctx.getMachOSection(
1838 "__DATA", "__bss", MCSectionMachO::S_ZEROFILL,
1839 0, SectionKind::getBSS()),
1840 Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00001841 return false;
1842 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001843
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001844 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001845 return false;
1846}
Chris Lattner9be3fee2009-07-10 22:20:30 +00001847
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001848/// ParseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001849/// ::= .abort [... message ...]
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001850bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001851 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001852 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001853
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001854 StringRef Str = ParseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001855 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001856 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001857
Sean Callanan79ed1a82010-01-19 20:22:31 +00001858 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001859
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00001860 if (Str.empty())
1861 Error(Loc, ".abort detected. Assembly stopping.");
1862 else
1863 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00001864 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001865
1866 return false;
1867}
Kevin Enderby71148242009-07-14 21:35:03 +00001868
Kevin Enderby1f049b22009-07-14 23:21:55 +00001869/// ParseDirectiveInclude
1870/// ::= .include "filename"
1871bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001872 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001873 return TokError("expected string in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001874
Sean Callanan18b83232010-01-19 21:44:56 +00001875 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001876 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001877 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00001878
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001879 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00001880 return TokError("unexpected token in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001881
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001882 // Strip the quotes.
1883 Filename = Filename.substr(1, Filename.size()-2);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001884
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001885 // Attempt to switch the lexer to the included file before consuming the end
1886 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00001887 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00001888 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00001889 return true;
1890 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00001891
1892 return false;
1893}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00001894
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001895/// ParseDirectiveIf
1896/// ::= .if expression
1897bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001898 TheCondStack.push_back(TheCondState);
1899 TheCondState.TheCond = AsmCond::IfCond;
1900 if(TheCondState.Ignore) {
1901 EatToEndOfStatement();
1902 }
1903 else {
1904 int64_t ExprValue;
1905 if (ParseAbsoluteExpression(ExprValue))
1906 return true;
1907
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001908 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001909 return TokError("unexpected token in '.if' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001910
Sean Callanan79ed1a82010-01-19 20:22:31 +00001911 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001912
1913 TheCondState.CondMet = ExprValue;
1914 TheCondState.Ignore = !TheCondState.CondMet;
1915 }
1916
1917 return false;
1918}
1919
1920/// ParseDirectiveElseIf
1921/// ::= .elseif expression
1922bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
1923 if (TheCondState.TheCond != AsmCond::IfCond &&
1924 TheCondState.TheCond != AsmCond::ElseIfCond)
1925 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
1926 " an .elseif");
1927 TheCondState.TheCond = AsmCond::ElseIfCond;
1928
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001929 bool LastIgnoreState = false;
1930 if (!TheCondStack.empty())
1931 LastIgnoreState = TheCondStack.back().Ignore;
1932 if (LastIgnoreState || TheCondState.CondMet) {
1933 TheCondState.Ignore = true;
1934 EatToEndOfStatement();
1935 }
1936 else {
1937 int64_t ExprValue;
1938 if (ParseAbsoluteExpression(ExprValue))
1939 return true;
1940
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001941 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001942 return TokError("unexpected token in '.elseif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001943
Sean Callanan79ed1a82010-01-19 20:22:31 +00001944 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001945 TheCondState.CondMet = ExprValue;
1946 TheCondState.Ignore = !TheCondState.CondMet;
1947 }
1948
1949 return false;
1950}
1951
1952/// ParseDirectiveElse
1953/// ::= .else
1954bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001955 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001956 return TokError("unexpected token in '.else' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001957
Sean Callanan79ed1a82010-01-19 20:22:31 +00001958 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001959
1960 if (TheCondState.TheCond != AsmCond::IfCond &&
1961 TheCondState.TheCond != AsmCond::ElseIfCond)
1962 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
1963 ".elseif");
1964 TheCondState.TheCond = AsmCond::ElseCond;
1965 bool LastIgnoreState = false;
1966 if (!TheCondStack.empty())
1967 LastIgnoreState = TheCondStack.back().Ignore;
1968 if (LastIgnoreState || TheCondState.CondMet)
1969 TheCondState.Ignore = true;
1970 else
1971 TheCondState.Ignore = false;
1972
1973 return false;
1974}
1975
1976/// ParseDirectiveEndIf
1977/// ::= .endif
1978bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001979 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001980 return TokError("unexpected token in '.endif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001981
Sean Callanan79ed1a82010-01-19 20:22:31 +00001982 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00001983
1984 if ((TheCondState.TheCond == AsmCond::NoCond) ||
1985 TheCondStack.empty())
1986 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
1987 ".else");
1988 if (!TheCondStack.empty()) {
1989 TheCondState = TheCondStack.back();
1990 TheCondStack.pop_back();
1991 }
1992
1993 return false;
1994}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001995
1996/// ParseDirectiveFile
1997/// ::= .file [number] string
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001998bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001999 // FIXME: I'm not sure what this is.
2000 int64_t FileNumber = -1;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002001 SMLoc FileNumberLoc = getLexer().getLoc();
Daniel Dunbareceec052010-07-12 17:45:27 +00002002 if (getLexer().is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00002003 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00002004 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00002005
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002006 if (FileNumber < 1)
2007 return TokError("file number less than one");
2008 }
2009
Daniel Dunbareceec052010-07-12 17:45:27 +00002010 if (getLexer().isNot(AsmToken::String))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002011 return TokError("unexpected token in '.file' directive");
Daniel Dunbareceec052010-07-12 17:45:27 +00002012
Chris Lattnerd32e8032010-01-25 19:02:58 +00002013 StringRef Filename = getTok().getString();
2014 Filename = Filename.substr(1, Filename.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00002015 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002016
Daniel Dunbareceec052010-07-12 17:45:27 +00002017 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002018 return TokError("unexpected token in '.file' directive");
2019
Chris Lattnerd32e8032010-01-25 19:02:58 +00002020 if (FileNumber == -1)
Daniel Dunbareceec052010-07-12 17:45:27 +00002021 getStreamer().EmitFileDirective(Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002022 else {
Rafael Espindolaaf6b58082010-11-16 21:20:32 +00002023 if (getStreamer().EmitDwarfFileDirective(FileNumber, Filename))
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002024 Error(FileNumberLoc, "file number already allocated");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002025 }
Daniel Dunbareceec052010-07-12 17:45:27 +00002026
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002027 return false;
2028}
2029
2030/// ParseDirectiveLine
2031/// ::= .line [number]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002032bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00002033 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2034 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002035 return TokError("unexpected token in '.line' directive");
2036
Sean Callanan18b83232010-01-19 21:44:56 +00002037 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002038 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00002039 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002040
2041 // FIXME: Do something with the .line.
2042 }
2043
Daniel Dunbareceec052010-07-12 17:45:27 +00002044 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbar839348a2010-07-01 20:20:01 +00002045 return TokError("unexpected token in '.line' directive");
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002046
2047 return false;
2048}
2049
2050
2051/// ParseDirectiveLoc
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002052/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002053/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2054/// The first number is a file number, must have been previously assigned with
2055/// a .file directive, the second number is the line number and optionally the
2056/// third number is a column position (zero if not specified). The remaining
2057/// optional items are .loc sub-directives.
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002058bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002059
Daniel Dunbareceec052010-07-12 17:45:27 +00002060 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002061 return TokError("unexpected token in '.loc' directive");
Sean Callanan18b83232010-01-19 21:44:56 +00002062 int64_t FileNumber = getTok().getIntVal();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002063 if (FileNumber < 1)
2064 return TokError("file number less than one in '.loc' directive");
Kevin Enderby3f55c242010-10-04 20:17:24 +00002065 if (!getContext().isValidDwarfFileNumber(FileNumber))
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002066 return TokError("unassigned file number in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002067 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002068
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002069 int64_t LineNumber = 0;
2070 if (getLexer().is(AsmToken::Integer)) {
2071 LineNumber = getTok().getIntVal();
2072 if (LineNumber < 1)
2073 return TokError("line number less than one in '.loc' directive");
2074 Lex();
2075 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002076
2077 int64_t ColumnPos = 0;
2078 if (getLexer().is(AsmToken::Integer)) {
2079 ColumnPos = getTok().getIntVal();
2080 if (ColumnPos < 0)
2081 return TokError("column position less than zero in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002082 Lex();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002083 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002084
Kevin Enderbyc0957932010-09-30 16:52:03 +00002085 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002086 unsigned Isa = 0;
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002087 int64_t Discriminator = 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002088 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2089 for (;;) {
2090 if (getLexer().is(AsmToken::EndOfStatement))
2091 break;
2092
2093 StringRef Name;
2094 SMLoc Loc = getTok().getLoc();
2095 if (getParser().ParseIdentifier(Name))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002096 return TokError("unexpected token in '.loc' directive");
2097
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002098 if (Name == "basic_block")
2099 Flags |= DWARF2_FLAG_BASIC_BLOCK;
2100 else if (Name == "prologue_end")
2101 Flags |= DWARF2_FLAG_PROLOGUE_END;
2102 else if (Name == "epilogue_begin")
2103 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2104 else if (Name == "is_stmt") {
2105 SMLoc Loc = getTok().getLoc();
2106 const MCExpr *Value;
2107 if (getParser().ParseExpression(Value))
2108 return true;
2109 // The expression must be the constant 0 or 1.
2110 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2111 int Value = MCE->getValue();
2112 if (Value == 0)
2113 Flags &= ~DWARF2_FLAG_IS_STMT;
2114 else if (Value == 1)
2115 Flags |= DWARF2_FLAG_IS_STMT;
2116 else
2117 return Error(Loc, "is_stmt value not 0 or 1");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002118 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002119 else {
2120 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2121 }
2122 }
2123 else if (Name == "isa") {
2124 SMLoc Loc = getTok().getLoc();
2125 const MCExpr *Value;
2126 if (getParser().ParseExpression(Value))
2127 return true;
2128 // The expression must be a constant greater or equal to 0.
2129 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2130 int Value = MCE->getValue();
2131 if (Value < 0)
2132 return Error(Loc, "isa number less than zero");
2133 Isa = Value;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002134 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002135 else {
2136 return Error(Loc, "isa number not a constant value");
2137 }
2138 }
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002139 else if (Name == "discriminator") {
2140 if (getParser().ParseAbsoluteExpression(Discriminator))
2141 return true;
2142 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002143 else {
2144 return Error(Loc, "unknown sub-directive in '.loc' directive");
2145 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002146
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002147 if (getLexer().is(AsmToken::EndOfStatement))
2148 break;
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002149 }
2150 }
2151
Rafael Espindolaaf6b58082010-11-16 21:20:32 +00002152 getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,
2153 Isa, Discriminator);
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002154
2155 return false;
2156}
2157
Daniel Dunbar138abae2010-10-16 04:56:42 +00002158/// ParseDirectiveStabs
2159/// ::= .stabs string, number, number, number
2160bool GenericAsmParser::ParseDirectiveStabs(StringRef Directive,
2161 SMLoc DirectiveLoc) {
2162 return TokError("unsupported directive '" + Directive + "'");
2163}
2164
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002165/// ParseDirectiveCFIStartProc
2166/// ::= .cfi_startproc
2167bool GenericAsmParser::ParseDirectiveCFIStartProc(StringRef,
2168 SMLoc DirectiveLoc) {
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002169 return getStreamer().EmitCFIStartProc();
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002170}
2171
2172/// ParseDirectiveCFIEndProc
2173/// ::= .cfi_endproc
2174bool GenericAsmParser::ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc) {
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002175 return getStreamer().EmitCFIEndProc();
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002176}
2177
Rafael Espindolab40a71f2010-12-29 01:42:56 +00002178/// ParseDirectiveCFIDefCfa
2179/// ::= .cfi_def_cfa register, offset
2180bool GenericAsmParser::ParseDirectiveCFIDefCfa(StringRef,
2181 SMLoc DirectiveLoc) {
2182 int64_t Register = 0;
2183 if (getParser().ParseAbsoluteExpression(Register))
2184 return true;
2185
2186 if (getLexer().isNot(AsmToken::Comma))
2187 return TokError("unexpected token in directive");
2188 Lex();
2189
2190 int64_t Offset = 0;
2191 if (getParser().ParseAbsoluteExpression(Offset))
2192 return true;
2193
2194 return getStreamer().EmitCFIDefCfa(Register, Offset);
2195}
2196
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002197/// ParseDirectiveCFIDefCfaOffset
2198/// ::= .cfi_def_cfa_offset offset
2199bool GenericAsmParser::ParseDirectiveCFIDefCfaOffset(StringRef,
2200 SMLoc DirectiveLoc) {
2201 int64_t Offset = 0;
2202 if (getParser().ParseAbsoluteExpression(Offset))
2203 return true;
2204
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002205 return getStreamer().EmitCFIDefCfaOffset(Offset);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002206}
2207
2208/// ParseDirectiveCFIDefCfaRegister
2209/// ::= .cfi_def_cfa_register register
2210bool GenericAsmParser::ParseDirectiveCFIDefCfaRegister(StringRef,
2211 SMLoc DirectiveLoc) {
2212 int64_t Register = 0;
2213 if (getParser().ParseAbsoluteExpression(Register))
2214 return true;
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002215
2216 return getStreamer().EmitCFIDefCfaRegister(Register);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002217}
2218
2219/// ParseDirectiveCFIOffset
2220/// ::= .cfi_off register, offset
2221bool GenericAsmParser::ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc) {
2222 int64_t Register = 0;
2223 int64_t Offset = 0;
2224 if (getParser().ParseAbsoluteExpression(Register))
2225 return true;
2226
2227 if (getLexer().isNot(AsmToken::Comma))
2228 return TokError("unexpected token in directive");
2229 Lex();
2230
2231 if (getParser().ParseAbsoluteExpression(Offset))
2232 return true;
2233
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002234 return getStreamer().EmitCFIOffset(Register, Offset);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002235}
2236
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002237static bool isValidEncoding(int64_t Encoding) {
2238 if (Encoding & ~0xff)
2239 return false;
2240
2241 if (Encoding == dwarf::DW_EH_PE_omit)
2242 return true;
2243
2244 const unsigned Format = Encoding & 0xf;
2245 if (Format != dwarf::DW_EH_PE_absptr && Format != dwarf::DW_EH_PE_udata2 &&
2246 Format != dwarf::DW_EH_PE_udata4 && Format != dwarf::DW_EH_PE_udata8 &&
2247 Format != dwarf::DW_EH_PE_sdata2 && Format != dwarf::DW_EH_PE_sdata4 &&
2248 Format != dwarf::DW_EH_PE_sdata8 && Format != dwarf::DW_EH_PE_signed)
2249 return false;
2250
Rafael Espindolacaf11582010-12-29 04:31:26 +00002251 const unsigned Application = Encoding & 0x70;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002252 if (Application != dwarf::DW_EH_PE_absptr &&
Rafael Espindolacaf11582010-12-29 04:31:26 +00002253 Application != dwarf::DW_EH_PE_pcrel)
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002254 return false;
2255
2256 return true;
2257}
2258
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002259/// ParseDirectiveCFIPersonalityOrLsda
2260/// ::= .cfi_personality encoding, [symbol_name]
2261/// ::= .cfi_lsda encoding, [symbol_name]
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002262bool GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda(StringRef IDVal,
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002263 SMLoc DirectiveLoc) {
2264 int64_t Encoding = 0;
2265 if (getParser().ParseAbsoluteExpression(Encoding))
2266 return true;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002267 if (Encoding == dwarf::DW_EH_PE_omit)
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002268 return false;
2269
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002270 if (!isValidEncoding(Encoding))
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002271 return TokError("unsupported encoding.");
2272
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002273 if (getLexer().isNot(AsmToken::Comma))
2274 return TokError("unexpected token in directive");
2275 Lex();
2276
2277 StringRef Name;
2278 if (getParser().ParseIdentifier(Name))
2279 return TokError("expected identifier in directive");
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002280
2281 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
2282
2283 if (IDVal == ".cfi_personality")
Rafael Espindola3a83c402010-12-27 00:36:05 +00002284 return getStreamer().EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002285 else {
2286 assert(IDVal == ".cfi_lsda");
Rafael Espindolabdc31672010-12-27 15:56:22 +00002287 return getStreamer().EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002288 }
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002289}
2290
Rafael Espindolafe024d02010-12-28 18:36:23 +00002291/// ParseDirectiveCFIRememberState
2292/// ::= .cfi_remember_state
2293bool GenericAsmParser::ParseDirectiveCFIRememberState(StringRef IDVal,
2294 SMLoc DirectiveLoc) {
2295 return getStreamer().EmitCFIRememberState();
2296}
2297
2298/// ParseDirectiveCFIRestoreState
2299/// ::= .cfi_remember_state
2300bool GenericAsmParser::ParseDirectiveCFIRestoreState(StringRef IDVal,
2301 SMLoc DirectiveLoc) {
2302 return getStreamer().EmitCFIRestoreState();
2303}
2304
Daniel Dunbar3c802de2010-07-18 18:38:02 +00002305/// ParseDirectiveMacrosOnOff
2306/// ::= .macros_on
2307/// ::= .macros_off
2308bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
2309 SMLoc DirectiveLoc) {
2310 if (getLexer().isNot(AsmToken::EndOfStatement))
2311 return Error(getLexer().getLoc(),
2312 "unexpected token in '" + Directive + "' directive");
2313
2314 getParser().MacrosEnabled = Directive == ".macros_on";
2315
2316 return false;
2317}
Daniel Dunbard1e3b442010-07-17 02:26:10 +00002318
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00002319/// ParseDirectiveMacro
2320/// ::= .macro name
2321bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
2322 SMLoc DirectiveLoc) {
2323 StringRef Name;
2324 if (getParser().ParseIdentifier(Name))
2325 return TokError("expected identifier in directive");
2326
2327 if (getLexer().isNot(AsmToken::EndOfStatement))
2328 return TokError("unexpected token in '.macro' directive");
2329
2330 // Eat the end of statement.
2331 Lex();
2332
2333 AsmToken EndToken, StartToken = getTok();
2334
2335 // Lex the macro definition.
2336 for (;;) {
2337 // Check whether we have reached the end of the file.
2338 if (getLexer().is(AsmToken::Eof))
2339 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
2340
2341 // Otherwise, check whether we have reach the .endmacro.
2342 if (getLexer().is(AsmToken::Identifier) &&
2343 (getTok().getIdentifier() == ".endm" ||
2344 getTok().getIdentifier() == ".endmacro")) {
2345 EndToken = getTok();
2346 Lex();
2347 if (getLexer().isNot(AsmToken::EndOfStatement))
2348 return TokError("unexpected token in '" + EndToken.getIdentifier() +
2349 "' directive");
2350 break;
2351 }
2352
2353 // Otherwise, scan til the end of the statement.
2354 getParser().EatToEndOfStatement();
2355 }
2356
2357 if (getParser().MacroMap.lookup(Name)) {
2358 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
2359 }
2360
2361 const char *BodyStart = StartToken.getLoc().getPointer();
2362 const char *BodyEnd = EndToken.getLoc().getPointer();
2363 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
2364 getParser().MacroMap[Name] = new Macro(Name, Body);
2365 return false;
2366}
2367
2368/// ParseDirectiveEndMacro
2369/// ::= .endm
2370/// ::= .endmacro
2371bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
2372 SMLoc DirectiveLoc) {
2373 if (getLexer().isNot(AsmToken::EndOfStatement))
2374 return TokError("unexpected token in '" + Directive + "' directive");
2375
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00002376 // If we are inside a macro instantiation, terminate the current
2377 // instantiation.
2378 if (!getParser().ActiveMacros.empty()) {
2379 getParser().HandleMacroExit();
2380 return false;
2381 }
2382
2383 // Otherwise, this .endmacro is a stray entry in the file; well formed
2384 // .endmacro directives are handled during the macro definition parsing.
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00002385 return TokError("unexpected '" + Directive + "' in file, "
2386 "no current macro definition");
2387}
2388
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002389bool GenericAsmParser::ParseDirectiveLEB128(StringRef DirName, SMLoc) {
Rafael Espindola3ff57092010-11-02 17:22:24 +00002390 getParser().CheckForValidSection();
2391
2392 const MCExpr *Value;
2393
2394 if (getParser().ParseExpression(Value))
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002395 return true;
2396
2397 if (getLexer().isNot(AsmToken::EndOfStatement))
2398 return TokError("unexpected token in directive");
2399
2400 if (DirName[1] == 's')
Rafael Espindola3ff57092010-11-02 17:22:24 +00002401 getStreamer().EmitSLEB128Value(Value);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002402 else
Rafael Espindola3ff57092010-11-02 17:22:24 +00002403 getStreamer().EmitULEB128Value(Value);
2404
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00002405 return false;
2406}
2407
2408
Daniel Dunbard1e3b442010-07-17 02:26:10 +00002409/// \brief Create an MCAsmParser instance.
2410MCAsmParser *llvm::createMCAsmParser(const Target &T, SourceMgr &SM,
2411 MCContext &C, MCStreamer &Out,
2412 const MCAsmInfo &MAI) {
2413 return new AsmParser(T, SM, C, Out, MAI);
2414}