blob: 07796dd6b084e82bd42bf996cc95d2127320f55c [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"
Chad Rosierabde6752013-02-13 18:38:58 +000016#include "llvm/ADT/STLExtras.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000017#include "llvm/ADT/StringMap.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"
Evan Cheng94b95502011-07-26 00:24:13 +000021#include "llvm/MC/MCDwarf.h"
Daniel Dunbar28c251b2009-08-31 08:06:59 +000022#include "llvm/MC/MCExpr.h"
Chad Rosierb1f8c132012-10-18 15:49:34 +000023#include "llvm/MC/MCInstPrinter.h"
24#include "llvm/MC/MCInstrInfo.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000025#include "llvm/MC/MCParser/AsmCond.h"
26#include "llvm/MC/MCParser/AsmLexer.h"
27#include "llvm/MC/MCParser/MCAsmParser.h"
28#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Evan Chenge76a33b2011-07-20 05:58:47 +000029#include "llvm/MC/MCRegisterInfo.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000030#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000031#include "llvm/MC/MCStreamer.h"
Daniel Dunbardce0f3c2009-06-29 23:43:14 +000032#include "llvm/MC/MCSymbol.h"
Evan Cheng94b95502011-07-26 00:24:13 +000033#include "llvm/MC/MCTargetAsmParser.h"
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +000034#include "llvm/Support/CommandLine.h"
Benjamin Kramer518ff562012-01-28 15:28:41 +000035#include "llvm/Support/ErrorHandling.h"
Jim Grosbach254cf032011-06-29 16:05:14 +000036#include "llvm/Support/MathExtras.h"
Kevin Enderbyf187ac52010-06-28 21:45:58 +000037#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000038#include "llvm/Support/SourceMgr.h"
Chris Lattnerb0789ed2009-06-21 20:54:55 +000039#include "llvm/Support/raw_ostream.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000040#include <cctype>
Chad Rosierb1f8c132012-10-18 15:49:34 +000041#include <set>
42#include <string>
Daniel Dunbaraef87e32010-07-18 18:31:38 +000043#include <vector>
Chris Lattner27aa7d22009-06-21 20:16:42 +000044using namespace llvm;
45
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +000046static cl::opt<bool>
47FatalAssemblerWarnings("fatal-assembler-warnings",
48 cl::desc("Consider warnings as error"));
49
Eric Christopher2318ba12012-12-18 00:30:54 +000050MCAsmParserSemaCallback::~MCAsmParserSemaCallback() {}
Nick Lewycky0d7d11d2012-10-19 07:00:09 +000051
Daniel Dunbar81ea00f2010-07-12 17:54:38 +000052namespace {
53
Eli Benderskyf9f40bd2013-01-16 18:56:50 +000054/// \brief Helper types for tracking macro definitions.
55typedef std::vector<AsmToken> MCAsmMacroArgument;
56typedef std::vector<MCAsmMacroArgument> MCAsmMacroArguments;
57typedef std::pair<StringRef, MCAsmMacroArgument> MCAsmMacroParameter;
58typedef std::vector<MCAsmMacroParameter> MCAsmMacroParameters;
59
60struct MCAsmMacro {
61 StringRef Name;
62 StringRef Body;
63 MCAsmMacroParameters Parameters;
64
65public:
66 MCAsmMacro(StringRef N, StringRef B, const MCAsmMacroParameters &P) :
67 Name(N), Body(B), Parameters(P) {}
68
69 MCAsmMacro(const MCAsmMacro& Other)
70 : Name(Other.Name), Body(Other.Body), Parameters(Other.Parameters) {}
71};
72
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000073/// \brief Helper class for storing information about an active macro
74/// instantiation.
75struct MacroInstantiation {
76 /// The macro being instantiated.
Eli Benderskyc0c67b02013-01-14 23:22:36 +000077 const MCAsmMacro *TheMacro;
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000078
79 /// The macro instantiation with substitutions.
80 MemoryBuffer *Instantiation;
81
82 /// The location of the instantiation.
83 SMLoc InstantiationLoc;
84
Daniel Dunbar4259a1a2012-12-01 01:38:48 +000085 /// The buffer where parsing should resume upon instantiation completion.
86 int ExitBuffer;
87
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000088 /// The location where parsing should resume upon instantiation completion.
89 SMLoc ExitLoc;
90
91public:
Eli Benderskyc0c67b02013-01-14 23:22:36 +000092 MacroInstantiation(const MCAsmMacro *M, SMLoc IL, int EB, SMLoc EL,
Rafael Espindola65366442011-06-05 02:43:45 +000093 MemoryBuffer *I);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000094};
95
Eli Friedman2128aae2012-10-22 23:58:19 +000096struct ParseStatementInfo {
97 /// ParsedOperands - The parsed operands from the last parsed statement.
98 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
99
100 /// Opcode - The opcode from the last parsed instruction.
101 unsigned Opcode;
102
Chad Rosier57498012012-12-12 22:45:52 +0000103 /// Error - Was there an error parsing the inline assembly?
104 bool ParseError;
105
Eli Friedman2128aae2012-10-22 23:58:19 +0000106 SmallVectorImpl<AsmRewrite> *AsmRewrites;
107
Chad Rosier57498012012-12-12 22:45:52 +0000108 ParseStatementInfo() : Opcode(~0U), ParseError(false), AsmRewrites(0) {}
Eli Friedman2128aae2012-10-22 23:58:19 +0000109 ParseStatementInfo(SmallVectorImpl<AsmRewrite> *rewrites)
Chad Rosier57498012012-12-12 22:45:52 +0000110 : Opcode(~0), ParseError(false), AsmRewrites(rewrites) {}
Eli Friedman2128aae2012-10-22 23:58:19 +0000111
112 ~ParseStatementInfo() {
113 // Free any parsed operands.
114 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
115 delete ParsedOperands[i];
116 ParsedOperands.clear();
117 }
118};
119
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000120/// \brief The concrete assembly parser instance.
121class AsmParser : public MCAsmParser {
Craig Topper85aadc02012-09-15 16:23:52 +0000122 AsmParser(const AsmParser &) LLVM_DELETED_FUNCTION;
123 void operator=(const AsmParser &) LLVM_DELETED_FUNCTION;
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000124private:
125 AsmLexer Lexer;
126 MCContext &Ctx;
127 MCStreamer &Out;
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000128 const MCAsmInfo &MAI;
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000129 SourceMgr &SrcMgr;
Benjamin Kramer04a04262011-10-16 10:48:29 +0000130 SourceMgr::DiagHandlerTy SavedDiagHandler;
131 void *SavedDiagContext;
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000132 MCAsmParserExtension *PlatformParser;
Rafael Espindolaa61842b2011-04-11 21:49:50 +0000133
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000134 /// This is the current buffer index we're lexing from as managed by the
135 /// SourceMgr object.
136 int CurBuffer;
137
138 AsmCond TheCondState;
139 std::vector<AsmCond> TheCondStack;
140
Eli Bendersky6ee13082013-01-15 22:59:42 +0000141 /// ExtensionDirectiveMap - maps directive names to handler methods in parser
142 /// extensions. Extensions register themselves in this map by calling
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000143 /// addDirectiveHandler.
Eli Bendersky6ee13082013-01-15 22:59:42 +0000144 StringMap<ExtensionDirectiveHandler> ExtensionDirectiveMap;
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000145
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000146 /// MacroMap - Map of currently defined macros.
Eli Benderskyc0c67b02013-01-14 23:22:36 +0000147 StringMap<MCAsmMacro*> MacroMap;
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000148
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000149 /// ActiveMacros - Stack of active macro instantiations.
150 std::vector<MacroInstantiation*> ActiveMacros;
151
Benjamin Kramera2b0c332013-08-04 09:06:29 +0000152 /// MacroLikeBodies - List of bodies of anonymous macros.
153 std::deque<MCAsmMacro> MacroLikeBodies;
154
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000155 /// Boolean tracking whether macro substitution is enabled.
Eli Bendersky733c3362013-01-14 18:08:41 +0000156 unsigned MacrosEnabledFlag : 1;
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000157
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000158 /// Flag tracking whether any errors have been encountered.
159 unsigned HadError : 1;
160
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000161 /// The values from the last parsed cpp hash file line comment if any.
162 StringRef CppHashFilename;
163 int64_t CppHashLineNumber;
164 SMLoc CppHashLoc;
Kevin Enderby32c1a822012-11-05 21:55:41 +0000165 int CppHashBuf;
Kevin Enderbya8959492013-06-21 20:51:39 +0000166 /// When generating dwarf for assembly source files we need to calculate the
167 /// logical line number based on the last parsed cpp hash file line comment
168 /// and current line. Since this is slow and messes up the SourceMgr's
169 /// cache we save the last info we queried with SrcMgr.FindLineNumber().
170 SMLoc LastQueryIDLoc;
171 int LastQueryBuffer;
172 unsigned LastQueryLine;
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000173
Devang Patel0db58bf2012-01-31 18:14:05 +0000174 /// AssemblerDialect. ~OU means unset value and use value provided by MAI.
175 unsigned AssemblerDialect;
176
Preston Gurd7b6f2032012-09-19 20:36:12 +0000177 /// IsDarwin - is Darwin compatibility enabled?
178 bool IsDarwin;
179
Chad Rosier8f138d12012-10-15 17:19:13 +0000180 /// ParsingInlineAsm - Are we parsing ms-style inline assembly?
Chad Rosier84125ca2012-10-13 00:26:04 +0000181 bool ParsingInlineAsm;
182
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000183public:
Jim Grosbach1b84cce2011-08-16 18:33:49 +0000184 AsmParser(SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000185 const MCAsmInfo &MAI);
Craig Topper345d16d2012-08-29 05:48:09 +0000186 virtual ~AsmParser();
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000187
188 virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
189
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000190 virtual void addDirectiveHandler(StringRef Directive,
Eli Bendersky171192f2013-01-16 00:50:52 +0000191 ExtensionDirectiveHandler Handler) {
192 ExtensionDirectiveMap[Directive] = Handler;
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000193 }
194
195public:
196 /// @name MCAsmParser Interface
197 /// {
198
199 virtual SourceMgr &getSourceManager() { return SrcMgr; }
200 virtual MCAsmLexer &getLexer() { return Lexer; }
201 virtual MCContext &getContext() { return Ctx; }
202 virtual MCStreamer &getStreamer() { return Out; }
Eric Christopher2318ba12012-12-18 00:30:54 +0000203 virtual unsigned getAssemblerDialect() {
Devang Patel0db58bf2012-01-31 18:14:05 +0000204 if (AssemblerDialect == ~0U)
Eric Christopher2318ba12012-12-18 00:30:54 +0000205 return MAI.getAssemblerDialect();
Devang Patel0db58bf2012-01-31 18:14:05 +0000206 else
207 return AssemblerDialect;
208 }
209 virtual void setAssemblerDialect(unsigned i) {
210 AssemblerDialect = i;
211 }
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000212
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000213 virtual bool Warning(SMLoc L, const Twine &Msg,
Dmitri Gribenko5c332db2013-05-05 00:40:33 +0000214 ArrayRef<SMRange> Ranges = None);
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000215 virtual bool Error(SMLoc L, const Twine &Msg,
Dmitri Gribenko5c332db2013-05-05 00:40:33 +0000216 ArrayRef<SMRange> Ranges = None);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000217
Craig Topper345d16d2012-08-29 05:48:09 +0000218 virtual const AsmToken &Lex();
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000219
Chad Rosier84125ca2012-10-13 00:26:04 +0000220 void setParsingInlineAsm(bool V) { ParsingInlineAsm = V; }
Chad Rosierc5ac87d2012-10-16 20:16:20 +0000221 bool isParsingInlineAsm() { return ParsingInlineAsm; }
Chad Rosierb1f8c132012-10-18 15:49:34 +0000222
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000223 bool parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
Chad Rosierb1f8c132012-10-18 15:49:34 +0000224 unsigned &NumOutputs, unsigned &NumInputs,
Chad Rosier5a719fc2012-10-23 17:43:43 +0000225 SmallVectorImpl<std::pair<void *,bool> > &OpDecls,
Chad Rosierb1f8c132012-10-18 15:49:34 +0000226 SmallVectorImpl<std::string> &Constraints,
Chad Rosierb1f8c132012-10-18 15:49:34 +0000227 SmallVectorImpl<std::string> &Clobbers,
228 const MCInstrInfo *MII,
229 const MCInstPrinter *IP,
230 MCAsmParserSemaCallback &SI);
Chad Rosier84125ca2012-10-13 00:26:04 +0000231
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000232 bool parseExpression(const MCExpr *&Res);
233 virtual bool parseExpression(const MCExpr *&Res, SMLoc &EndLoc);
Chad Rosierba69b362013-04-10 17:35:30 +0000234 virtual bool parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000235 virtual bool parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
236 virtual bool parseAbsoluteExpression(int64_t &Res);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000237
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000238 /// parseIdentifier - Parse an identifier or string (as a quoted identifier)
Eli Benderskybf706b32013-01-12 00:05:00 +0000239 /// and set \p Res to the identifier contents.
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000240 virtual bool parseIdentifier(StringRef &Res);
241 virtual void eatToEndOfStatement();
Eli Benderskybf706b32013-01-12 00:05:00 +0000242
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000243 virtual void checkForValidSection();
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000244 /// }
245
246private:
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000247
Eli Friedman2128aae2012-10-22 23:58:19 +0000248 bool ParseStatement(ParseStatementInfo &Info);
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000249 void EatToEndOfLine();
250 bool ParseCppHashLineFilenameComment(const SMLoc &L);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000251
Kevin Enderby221514e2013-01-22 21:44:53 +0000252 void CheckForBadMacro(SMLoc DirectiveLoc, StringRef Name, StringRef Body,
253 MCAsmMacroParameters Parameters);
Rafael Espindola761cb062012-06-03 23:57:14 +0000254 bool expandMacro(raw_svector_ostream &OS, StringRef Body,
Eli Benderskyc0c67b02013-01-14 23:22:36 +0000255 const MCAsmMacroParameters &Parameters,
256 const MCAsmMacroArguments &A,
Rafael Espindola65366442011-06-05 02:43:45 +0000257 const SMLoc &L);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000258
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000259 /// \brief Are macros enabled in the parser?
260 bool MacrosEnabled() {return MacrosEnabledFlag;}
261
262 /// \brief Control a flag in the parser that enables or disables macros.
263 void SetMacrosEnabled(bool Flag) {MacrosEnabledFlag = Flag;}
264
265 /// \brief Lookup a previously defined macro.
266 /// \param Name Macro name.
267 /// \returns Pointer to macro. NULL if no such macro was defined.
268 const MCAsmMacro* LookupMacro(StringRef Name);
269
270 /// \brief Define a new macro with the given name and information.
271 void DefineMacro(StringRef Name, const MCAsmMacro& Macro);
272
273 /// \brief Undefine a macro. If no such macro was defined, it's a no-op.
274 void UndefineMacro(StringRef Name);
275
276 /// \brief Are we inside a macro instantiation?
277 bool InsideMacroInstantiation() {return !ActiveMacros.empty();}
278
279 /// \brief Handle entry to macro instantiation.
280 ///
281 /// \param M The macro.
282 /// \param NameLoc Instantiation location.
283 bool HandleMacroEntry(const MCAsmMacro *M, SMLoc NameLoc);
284
285 /// \brief Handle exit from macro instantiation.
286 void HandleMacroExit();
287
288 /// \brief Extract AsmTokens for a macro argument. If the argument delimiter
289 /// is initially unknown, set it to AsmToken::Eof. It will be set to the
290 /// correct delimiter by the method.
291 bool ParseMacroArgument(MCAsmMacroArgument &MA,
292 AsmToken::TokenKind &ArgumentDelimiter);
293
294 /// \brief Parse all macro arguments for a given macro.
295 bool ParseMacroArguments(const MCAsmMacro *M, MCAsmMacroArguments &A);
296
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000297 void PrintMacroInstantiations();
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000298 void PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Msg,
Dmitri Gribenko5c332db2013-05-05 00:40:33 +0000299 ArrayRef<SMRange> Ranges = None) const {
Chris Lattner462b43c2011-10-16 05:47:55 +0000300 SrcMgr.PrintMessage(Loc, Kind, Msg, Ranges);
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000301 }
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000302 static void DiagHandler(const SMDiagnostic &Diag, void *Context);
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000303
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000304 /// EnterIncludeFile - Enter the specified file. This returns true on failure.
305 bool EnterIncludeFile(const std::string &Filename);
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000306 /// ProcessIncbinFile - Process the specified file for the .incbin directive.
307 /// This returns true on failure.
308 bool ProcessIncbinFile(const std::string &Filename);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000309
Dmitri Gribenkoc5252da2012-09-14 14:57:36 +0000310 /// \brief Reset the current lexer position to that given by \p Loc. The
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000311 /// current token is not set; clients should ensure Lex() is called
312 /// subsequently.
Daniel Dunbar4259a1a2012-12-01 01:38:48 +0000313 ///
314 /// \param InBuffer If not -1, should be the known buffer id that contains the
315 /// location.
316 void JumpToLoc(SMLoc Loc, int InBuffer=-1);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000317
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000318 /// \brief Parse up to the end of statement and a return the contents from the
319 /// current token until the end of the statement; the current token on exit
320 /// will be either the EndOfStatement or EOF.
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000321 virtual StringRef parseStringToEndOfStatement();
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000322
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000323 /// \brief Parse until the end of a statement or a comma is encountered,
324 /// return the contents from the current token up to the end or comma.
325 StringRef ParseStringToComma();
326
Jim Grosbach3f90a4c2012-09-13 23:11:31 +0000327 bool ParseAssignment(StringRef Name, bool allow_redef,
328 bool NoDeadStrip = false);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000329
330 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
331 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
332 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000333 bool ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000334
Eli Bendersky6ee13082013-01-15 22:59:42 +0000335 bool ParseRegisterOrRegisterNumber(int64_t &Register, SMLoc DirectiveLoc);
Rafael Espindola787c3372010-10-28 20:02:27 +0000336
Eli Bendersky6ee13082013-01-15 22:59:42 +0000337 // Generic (target and platform independent) directive parsing.
Eli Bendersky5d0f0612013-01-10 22:44:57 +0000338 enum DirectiveKind {
Eli Bendersky7eef9c12013-01-10 23:40:56 +0000339 DK_NO_DIRECTIVE, // Placeholder
340 DK_SET, DK_EQU, DK_EQUIV, DK_ASCII, DK_ASCIZ, DK_STRING, DK_BYTE, DK_SHORT,
341 DK_VALUE, DK_2BYTE, DK_LONG, DK_INT, DK_4BYTE, DK_QUAD, DK_8BYTE, DK_SINGLE,
342 DK_FLOAT, DK_DOUBLE, DK_ALIGN, DK_ALIGN32, DK_BALIGN, DK_BALIGNW,
Eli Bendersky9b1bb052013-01-11 22:55:28 +0000343 DK_BALIGNL, DK_P2ALIGN, DK_P2ALIGNW, DK_P2ALIGNL, DK_ORG, DK_FILL, DK_ENDR,
Eli Bendersky7eef9c12013-01-10 23:40:56 +0000344 DK_BUNDLE_ALIGN_MODE, DK_BUNDLE_LOCK, DK_BUNDLE_UNLOCK,
345 DK_ZERO, DK_EXTERN, DK_GLOBL, DK_GLOBAL, DK_INDIRECT_SYMBOL,
346 DK_LAZY_REFERENCE, DK_NO_DEAD_STRIP, DK_SYMBOL_RESOLVER, DK_PRIVATE_EXTERN,
347 DK_REFERENCE, DK_WEAK_DEFINITION, DK_WEAK_REFERENCE,
348 DK_WEAK_DEF_CAN_BE_HIDDEN, DK_COMM, DK_COMMON, DK_LCOMM, DK_ABORT,
349 DK_INCLUDE, DK_INCBIN, DK_CODE16, DK_CODE16GCC, DK_REPT, DK_IRP, DK_IRPC,
350 DK_IF, DK_IFB, DK_IFNB, DK_IFC, DK_IFNC, DK_IFDEF, DK_IFNDEF, DK_IFNOTDEF,
Eli Bendersky6ee13082013-01-15 22:59:42 +0000351 DK_ELSEIF, DK_ELSE, DK_ENDIF,
352 DK_SPACE, DK_SKIP, DK_FILE, DK_LINE, DK_LOC, DK_STABS,
353 DK_CFI_SECTIONS, DK_CFI_STARTPROC, DK_CFI_ENDPROC, DK_CFI_DEF_CFA,
354 DK_CFI_DEF_CFA_OFFSET, DK_CFI_ADJUST_CFA_OFFSET, DK_CFI_DEF_CFA_REGISTER,
355 DK_CFI_OFFSET, DK_CFI_REL_OFFSET, DK_CFI_PERSONALITY, DK_CFI_LSDA,
356 DK_CFI_REMEMBER_STATE, DK_CFI_RESTORE_STATE, DK_CFI_SAME_VALUE,
357 DK_CFI_RESTORE, DK_CFI_ESCAPE, DK_CFI_SIGNAL_FRAME, DK_CFI_UNDEFINED,
358 DK_CFI_REGISTER,
359 DK_MACROS_ON, DK_MACROS_OFF, DK_MACRO, DK_ENDM, DK_ENDMACRO, DK_PURGEM,
360 DK_SLEB128, DK_ULEB128
Eli Bendersky5d0f0612013-01-10 22:44:57 +0000361 };
362
Eli Bendersky6ee13082013-01-15 22:59:42 +0000363 /// DirectiveKindMap - Maps directive name --> DirectiveKind enum, for
364 /// directives parsed by this class.
365 StringMap<DirectiveKind> DirectiveKindMap;
Eli Bendersky5d0f0612013-01-10 22:44:57 +0000366
367 // ".ascii", ".asciz", ".string"
Rafael Espindola787c3372010-10-28 20:02:27 +0000368 bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000369 bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
Daniel Dunbarb95a0792010-09-24 01:59:56 +0000370 bool ParseDirectiveRealValue(const fltSemantics &); // ".single", ...
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000371 bool ParseDirectiveFill(); // ".fill"
Rafael Espindola2ea2ac72010-09-16 15:03:59 +0000372 bool ParseDirectiveZero(); // ".zero"
Eric Christopher2318ba12012-12-18 00:30:54 +0000373 // ".set", ".equ", ".equiv"
374 bool ParseDirectiveSet(StringRef IDVal, bool allow_redef);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000375 bool ParseDirectiveOrg(); // ".org"
376 // ".align{,32}", ".p2align{,w,l}"
377 bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
378
Eli Bendersky6ee13082013-01-15 22:59:42 +0000379 // ".file", ".line", ".loc", ".stabs"
380 bool ParseDirectiveFile(SMLoc DirectiveLoc);
381 bool ParseDirectiveLine();
382 bool ParseDirectiveLoc();
383 bool ParseDirectiveStabs();
384
385 // .cfi directives
386 bool ParseDirectiveCFIRegister(SMLoc DirectiveLoc);
387 bool ParseDirectiveCFISections();
388 bool ParseDirectiveCFIStartProc();
389 bool ParseDirectiveCFIEndProc();
390 bool ParseDirectiveCFIDefCfaOffset();
391 bool ParseDirectiveCFIDefCfa(SMLoc DirectiveLoc);
392 bool ParseDirectiveCFIAdjustCfaOffset();
393 bool ParseDirectiveCFIDefCfaRegister(SMLoc DirectiveLoc);
394 bool ParseDirectiveCFIOffset(SMLoc DirectiveLoc);
395 bool ParseDirectiveCFIRelOffset(SMLoc DirectiveLoc);
396 bool ParseDirectiveCFIPersonalityOrLsda(bool IsPersonality);
397 bool ParseDirectiveCFIRememberState();
398 bool ParseDirectiveCFIRestoreState();
399 bool ParseDirectiveCFISameValue(SMLoc DirectiveLoc);
400 bool ParseDirectiveCFIRestore(SMLoc DirectiveLoc);
401 bool ParseDirectiveCFIEscape();
402 bool ParseDirectiveCFISignalFrame();
403 bool ParseDirectiveCFIUndefined(SMLoc DirectiveLoc);
404
405 // macro directives
406 bool ParseDirectivePurgeMacro(SMLoc DirectiveLoc);
407 bool ParseDirectiveEndMacro(StringRef Directive);
408 bool ParseDirectiveMacro(SMLoc DirectiveLoc);
409 bool ParseDirectiveMacrosOnOff(StringRef Directive);
410
Eli Bendersky4766ef42012-12-20 19:05:53 +0000411 // ".bundle_align_mode"
412 bool ParseDirectiveBundleAlignMode();
413 // ".bundle_lock"
414 bool ParseDirectiveBundleLock();
415 // ".bundle_unlock"
416 bool ParseDirectiveBundleUnlock();
417
Eli Bendersky6ee13082013-01-15 22:59:42 +0000418 // ".space", ".skip"
419 bool ParseDirectiveSpace(StringRef IDVal);
420
421 // .sleb128 (Signed=true) and .uleb128 (Signed=false)
422 bool ParseDirectiveLEB128(bool Signed);
423
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000424 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
425 /// accepts a single symbol (which should be a label or an external).
426 bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000427
428 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
429
430 bool ParseDirectiveAbort(); // ".abort"
431 bool ParseDirectiveInclude(); // ".include"
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000432 bool ParseDirectiveIncbin(); // ".incbin"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000433
434 bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +0000435 // ".ifb" or ".ifnb", depending on ExpectBlank.
436 bool ParseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank);
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000437 // ".ifc" or ".ifnc", depending on ExpectEqual.
438 bool ParseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual);
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +0000439 // ".ifdef" or ".ifndef", depending on expect_defined
440 bool ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000441 bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
442 bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
443 bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000444 virtual bool parseEscapedString(std::string &Data);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000445
446 const MCExpr *ApplyModifierToExpr(const MCExpr *E,
447 MCSymbolRefExpr::VariantKind Variant);
Rafael Espindola2ec304c2012-05-12 16:31:10 +0000448
Rafael Espindola761cb062012-06-03 23:57:14 +0000449 // Macro-like directives
Eli Benderskyc0c67b02013-01-14 23:22:36 +0000450 MCAsmMacro *ParseMacroLikeBody(SMLoc DirectiveLoc);
451 void InstantiateMacroLikeBody(MCAsmMacro *M, SMLoc DirectiveLoc,
Rafael Espindola761cb062012-06-03 23:57:14 +0000452 raw_svector_ostream &OS);
453 bool ParseDirectiveRept(SMLoc DirectiveLoc); // ".rept"
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +0000454 bool ParseDirectiveIrp(SMLoc DirectiveLoc); // ".irp"
Rafael Espindolafc9216e2012-06-16 18:03:25 +0000455 bool ParseDirectiveIrpc(SMLoc DirectiveLoc); // ".irpc"
Rafael Espindola761cb062012-06-03 23:57:14 +0000456 bool ParseDirectiveEndr(SMLoc DirectiveLoc); // ".endr"
Chad Rosierb1f8c132012-10-18 15:49:34 +0000457
Chad Rosier469b1442013-02-12 21:33:51 +0000458 // "_emit" or "__emit"
459 bool ParseDirectiveMSEmit(SMLoc DirectiveLoc, ParseStatementInfo &Info,
460 size_t Len);
461
462 // "align"
463 bool ParseDirectiveMSAlign(SMLoc DirectiveLoc, ParseStatementInfo &Info);
Eli Bendersky5d0f0612013-01-10 22:44:57 +0000464
Eli Bendersky6ee13082013-01-15 22:59:42 +0000465 void initializeDirectiveKindMap();
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000466};
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000467}
468
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000469namespace llvm {
470
471extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000472extern MCAsmParserExtension *createELFAsmParser();
Michael J. Spencer7d490042010-10-09 11:01:07 +0000473extern MCAsmParserExtension *createCOFFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000474
475}
476
Chris Lattneraaec2052010-01-19 19:46:13 +0000477enum { DEFAULT_ADDRSPACE = 0 };
478
Jim Grosbach1b84cce2011-08-16 18:33:49 +0000479AsmParser::AsmParser(SourceMgr &_SM, MCContext &_Ctx,
Daniel Dunbar9186fa62010-07-01 20:41:56 +0000480 MCStreamer &_Out, const MCAsmInfo &_MAI)
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000481 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), MAI(_MAI), SrcMgr(_SM),
Eli Bendersky6ee13082013-01-15 22:59:42 +0000482 PlatformParser(0),
Eli Bendersky733c3362013-01-14 18:08:41 +0000483 CurBuffer(0), MacrosEnabledFlag(true), CppHashLineNumber(0),
Eli Friedman2128aae2012-10-22 23:58:19 +0000484 AssemblerDialect(~0U), IsDarwin(false), ParsingInlineAsm(false) {
Benjamin Kramer04a04262011-10-16 10:48:29 +0000485 // Save the old handler.
486 SavedDiagHandler = SrcMgr.getDiagHandler();
487 SavedDiagContext = SrcMgr.getDiagContext();
488 // Set our own handler which calls the saved handler.
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000489 SrcMgr.setDiagHandler(DiagHandler, this);
Sean Callananfd0b0282010-01-21 00:19:58 +0000490 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000491
Daniel Dunbare4749702010-07-12 18:12:02 +0000492 // Initialize the platform / file format parser.
493 //
494 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
495 // created.
Michael J. Spencer7d490042010-10-09 11:01:07 +0000496 if (_MAI.hasMicrosoftFastStdCallMangling()) {
497 PlatformParser = createCOFFAsmParser();
498 PlatformParser->Initialize(*this);
499 } else if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000500 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000501 PlatformParser->Initialize(*this);
Preston Gurd7b6f2032012-09-19 20:36:12 +0000502 IsDarwin = true;
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000503 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000504 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000505 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000506 }
Eli Bendersky5d0f0612013-01-10 22:44:57 +0000507
Eli Bendersky6ee13082013-01-15 22:59:42 +0000508 initializeDirectiveKindMap();
Chris Lattnerebb89b42009-09-27 21:16:52 +0000509}
510
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000511AsmParser::~AsmParser() {
Daniel Dunbar56491302010-07-29 01:51:55 +0000512 assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
513
514 // Destroy any macros.
Eli Benderskyc0c67b02013-01-14 23:22:36 +0000515 for (StringMap<MCAsmMacro*>::iterator it = MacroMap.begin(),
Daniel Dunbar56491302010-07-29 01:51:55 +0000516 ie = MacroMap.end(); it != ie; ++it)
517 delete it->getValue();
518
Daniel Dunbare4749702010-07-12 18:12:02 +0000519 delete PlatformParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000520}
521
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000522void AsmParser::PrintMacroInstantiations() {
523 // Print the active macro instantiation stack.
524 for (std::vector<MacroInstantiation*>::const_reverse_iterator
525 it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000526 PrintMessage((*it)->InstantiationLoc, SourceMgr::DK_Note,
527 "while in macro instantiation");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000528}
529
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000530bool AsmParser::Warning(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +0000531 if (FatalAssemblerWarnings)
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000532 return Error(L, Msg, Ranges);
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000533 PrintMessage(L, SourceMgr::DK_Warning, Msg, Ranges);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000534 PrintMacroInstantiations();
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +0000535 return false;
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000536}
537
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000538bool AsmParser::Error(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000539 HadError = true;
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000540 PrintMessage(L, SourceMgr::DK_Error, Msg, Ranges);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000541 PrintMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000542 return true;
543}
544
Sean Callananfd0b0282010-01-21 00:19:58 +0000545bool AsmParser::EnterIncludeFile(const std::string &Filename) {
Joerg Sonnenbergerdd137902011-06-01 13:10:15 +0000546 std::string IncludedFile;
547 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
Sean Callananfd0b0282010-01-21 00:19:58 +0000548 if (NewBuf == -1)
549 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000550
Sean Callananfd0b0282010-01-21 00:19:58 +0000551 CurBuffer = NewBuf;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000552
Sean Callananfd0b0282010-01-21 00:19:58 +0000553 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000554
Sean Callananfd0b0282010-01-21 00:19:58 +0000555 return false;
556}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000557
Sylvestre Ledruda2ed452013-05-14 23:36:24 +0000558/// Process the specified .incbin file by searching for it in the include paths
Benjamin Kramerd9b0b022012-06-02 10:20:22 +0000559/// then just emitting the byte contents of the file to the streamer. This
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000560/// returns true on failure.
561bool AsmParser::ProcessIncbinFile(const std::string &Filename) {
562 std::string IncludedFile;
563 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
564 if (NewBuf == -1)
565 return true;
566
Kevin Enderbyc3fc3132011-12-14 22:34:45 +0000567 // Pick up the bytes from the file and emit them.
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000568 getStreamer().EmitBytes(SrcMgr.getMemoryBuffer(NewBuf)->getBuffer());
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000569 return false;
570}
571
Daniel Dunbar4259a1a2012-12-01 01:38:48 +0000572void AsmParser::JumpToLoc(SMLoc Loc, int InBuffer) {
573 if (InBuffer != -1) {
574 CurBuffer = InBuffer;
575 } else {
576 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
577 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000578 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
579}
580
Sean Callananfd0b0282010-01-21 00:19:58 +0000581const AsmToken &AsmParser::Lex() {
582 const AsmToken *tok = &Lexer.Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000583
Sean Callananfd0b0282010-01-21 00:19:58 +0000584 if (tok->is(AsmToken::Eof)) {
585 // If this is the end of an included file, pop the parent file off the
586 // include stack.
587 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
588 if (ParentIncludeLoc != SMLoc()) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000589 JumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000590 tok = &Lexer.Lex();
591 }
592 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000593
Sean Callananfd0b0282010-01-21 00:19:58 +0000594 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000595 Error(Lexer.getErrLoc(), Lexer.getErr());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000596
Sean Callananfd0b0282010-01-21 00:19:58 +0000597 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000598}
599
Chris Lattner79180e22010-04-05 23:15:42 +0000600bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000601 // Create the initial section, if requested.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000602 if (!NoInitialTextSection)
Rafael Espindolad80781b2010-09-15 21:48:40 +0000603 Out.InitSections();
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000604
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000605 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000606 Lex();
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000607
608 HadError = false;
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000609 AsmCond StartingCondState = TheCondState;
610
Kevin Enderby613b7572011-11-01 22:27:22 +0000611 // If we are generating dwarf for assembly source files save the initial text
612 // section and generate a .file directive.
613 if (getContext().getGenDwarfForAssembly()) {
Peter Collingbournedf39be62013-04-17 21:18:16 +0000614 getContext().setGenDwarfSection(getStreamer().getCurrentSection().first);
Kevin Enderby94c2e852011-12-09 18:09:40 +0000615 MCSymbol *SectionStartSym = getContext().CreateTempSymbol();
616 getStreamer().EmitLabel(SectionStartSym);
617 getContext().setGenDwarfSectionStartSym(SectionStartSym);
Kevin Enderby613b7572011-11-01 22:27:22 +0000618 getStreamer().EmitDwarfFileDirective(getContext().nextGenDwarfFileNumber(),
Eric Christopher6c583142012-12-18 00:31:01 +0000619 StringRef(),
620 getContext().getMainFileName());
Kevin Enderby613b7572011-11-01 22:27:22 +0000621 }
622
Chris Lattnerb717fb02009-07-02 21:53:43 +0000623 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000624 while (Lexer.isNot(AsmToken::Eof)) {
Eli Friedman2128aae2012-10-22 23:58:19 +0000625 ParseStatementInfo Info;
626 if (!ParseStatement(Info)) continue;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000627
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000628 // We had an error, validate that one was emitted and recover by skipping to
629 // the next line.
630 assert(HadError && "Parse statement returned an error, but none emitted!");
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000631 eatToEndOfStatement();
Chris Lattnerb717fb02009-07-02 21:53:43 +0000632 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000633
634 if (TheCondState.TheCond != StartingCondState.TheCond ||
635 TheCondState.Ignore != StartingCondState.Ignore)
636 return TokError("unmatched .ifs or .elses");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000637
638 // Check to see there are no empty DwarfFile slots.
Manman Ren9e999ad2013-03-12 20:17:00 +0000639 const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles =
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000640 getContext().getMCDwarfFiles();
641 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000642 if (!MCDwarfFiles[i])
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000643 TokError("unassigned file number: " + Twine(i) + " for .file directives");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000644 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000645
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000646 // Check to see that all assembler local symbols were actually defined.
647 // Targets that don't do subsections via symbols may not want this, though,
648 // so conservatively exclude them. Only do this if we're finalizing, though,
649 // as otherwise we won't necessarilly have seen everything yet.
650 if (!NoFinalize && MAI.hasSubsectionsViaSymbols()) {
651 const MCContext::SymbolTable &Symbols = getContext().getSymbols();
652 for (MCContext::SymbolTable::const_iterator i = Symbols.begin(),
653 e = Symbols.end();
654 i != e; ++i) {
655 MCSymbol *Sym = i->getValue();
656 // Variable symbols may not be marked as defined, so check those
657 // explicitly. If we know it's a variable, we have a definition for
658 // the purposes of this check.
659 if (Sym->isTemporary() && !Sym->isVariable() && !Sym->isDefined())
660 // FIXME: We would really like to refer back to where the symbol was
661 // first referenced for a source location. We need to add something
662 // to track that. Currently, we just point to the end of the file.
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000663 PrintMessage(getLexer().getLoc(), SourceMgr::DK_Error,
664 "assembler local symbol '" + Sym->getName() +
665 "' not defined");
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000666 }
667 }
668
669
Chris Lattner79180e22010-04-05 23:15:42 +0000670 // Finalize the output stream if there are no errors and if the client wants
671 // us to.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000672 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000673 Out.Finish();
674
Chris Lattnerb717fb02009-07-02 21:53:43 +0000675 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000676}
677
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000678void AsmParser::checkForValidSection() {
Peter Collingbournedf39be62013-04-17 21:18:16 +0000679 if (!ParsingInlineAsm && !getStreamer().getCurrentSection().first) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000680 TokError("expected section directive before assembly directive");
Eli Bendersky030f63a2013-01-14 19:04:57 +0000681 Out.InitToTextSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000682 }
683}
684
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000685/// eatToEndOfStatement - Throw away the rest of the line for testing purposes.
686void AsmParser::eatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000687 while (Lexer.isNot(AsmToken::EndOfStatement) &&
688 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000689 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000690
Chris Lattner2cf5f142009-06-22 01:29:09 +0000691 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000692 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000693 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000694}
695
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000696StringRef AsmParser::parseStringToEndOfStatement() {
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000697 const char *Start = getTok().getLoc().getPointer();
698
699 while (Lexer.isNot(AsmToken::EndOfStatement) &&
700 Lexer.isNot(AsmToken::Eof))
701 Lex();
702
703 const char *End = getTok().getLoc().getPointer();
704 return StringRef(Start, End - Start);
705}
Chris Lattnerc4193832009-06-22 05:51:26 +0000706
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000707StringRef AsmParser::ParseStringToComma() {
708 const char *Start = getTok().getLoc().getPointer();
709
710 while (Lexer.isNot(AsmToken::EndOfStatement) &&
711 Lexer.isNot(AsmToken::Comma) &&
712 Lexer.isNot(AsmToken::Eof))
713 Lex();
714
715 const char *End = getTok().getLoc().getPointer();
716 return StringRef(Start, End - Start);
717}
718
Chris Lattner74ec1a32009-06-22 06:32:03 +0000719/// ParseParenExpr - Parse a paren expression and return it.
720/// NOTE: This assumes the leading '(' has already been consumed.
721///
722/// parenexpr ::= expr)
723///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000724bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000725 if (parseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000726 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000727 return TokError("expected ')' in parentheses expression");
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000728 EndLoc = Lexer.getTok().getEndLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000729 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000730 return false;
731}
Chris Lattnerc4193832009-06-22 05:51:26 +0000732
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000733/// ParseBracketExpr - Parse a bracket expression and return it.
734/// NOTE: This assumes the leading '[' has already been consumed.
735///
736/// bracketexpr ::= expr]
737///
738bool AsmParser::ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000739 if (parseExpression(Res)) return true;
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000740 if (Lexer.isNot(AsmToken::RBrac))
741 return TokError("expected ']' in brackets expression");
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000742 EndLoc = Lexer.getTok().getEndLoc();
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000743 Lex();
744 return false;
745}
746
Chris Lattner74ec1a32009-06-22 06:32:03 +0000747/// ParsePrimaryExpr - Parse a primary expression and return it.
748/// primaryexpr ::= (parenexpr
749/// primaryexpr ::= symbol
750/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000751/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000752/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000753bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Kevin Enderby5de048e2013-01-22 21:09:20 +0000754 SMLoc FirstTokenLoc = getLexer().getLoc();
755 AsmToken::TokenKind FirstTokenKind = Lexer.getKind();
756 switch (FirstTokenKind) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000757 default:
758 return TokError("unknown token in expression");
Eric Christopherf3755b22011-04-12 00:03:13 +0000759 // If we have an error assume that we've already handled it.
760 case AsmToken::Error:
761 return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000762 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000763 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000764 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000765 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000766 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000767 return false;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000768 case AsmToken::Dollar:
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000769 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000770 case AsmToken::Identifier: {
Daniel Dunbare17edff2010-08-24 19:13:42 +0000771 StringRef Identifier;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000772 if (parseIdentifier(Identifier)) {
Kevin Enderby5de048e2013-01-22 21:09:20 +0000773 if (FirstTokenKind == AsmToken::Dollar)
774 return Error(FirstTokenLoc, "invalid token in expression");
Jim Grosbach95ae09a2011-05-23 20:36:04 +0000775 return true;
Kevin Enderby5de048e2013-01-22 21:09:20 +0000776 }
Daniel Dunbare17edff2010-08-24 19:13:42 +0000777
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000778 EndLoc = SMLoc::getFromPointer(Identifier.end());
779
Daniel Dunbarfffff912009-10-16 01:34:54 +0000780 // This is a symbol reference.
Daniel Dunbare17edff2010-08-24 19:13:42 +0000781 std::pair<StringRef, StringRef> Split = Identifier.split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000782 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000783
784 // Lookup the symbol variant if used.
785 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000786 if (Split.first.size() != Identifier.size()) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000787 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000788 if (Variant == MCSymbolRefExpr::VK_Invalid) {
789 Variant = MCSymbolRefExpr::VK_None;
Jim Grosbach4121e8a2011-01-19 23:06:07 +0000790 return TokError("invalid variant '" + Split.second + "'");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000791 }
792 }
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000793
Daniel Dunbarfffff912009-10-16 01:34:54 +0000794 // If this is an absolute variable reference, substitute it now to preserve
795 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000796 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000797 if (Variant)
Daniel Dunbar603abd52010-11-08 17:53:02 +0000798 return Error(EndLoc, "unexpected modifier on variable reference");
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000799
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000800 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000801 return false;
802 }
803
804 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000805 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000806 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000807 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000808 case AsmToken::Integer: {
809 SMLoc Loc = getTok().getLoc();
810 int64_t IntVal = getTok().getIntVal();
811 Res = MCConstantExpr::Create(IntVal, getContext());
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000812 EndLoc = Lexer.getTok().getEndLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000813 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000814 // Look for 'b' or 'f' following an Integer as a directional label
815 if (Lexer.getKind() == AsmToken::Identifier) {
816 StringRef IDVal = getTok().getString();
Ulrich Weigand151ad372013-06-20 16:24:17 +0000817 // Lookup the symbol variant if used.
818 std::pair<StringRef, StringRef> Split = IDVal.split('@');
819 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
820 if (Split.first.size() != IDVal.size()) {
821 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
822 if (Variant == MCSymbolRefExpr::VK_Invalid) {
823 Variant = MCSymbolRefExpr::VK_None;
824 return TokError("invalid variant '" + Split.second + "'");
825 }
826 IDVal = Split.first;
827 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000828 if (IDVal == "f" || IDVal == "b"){
829 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
830 IDVal == "f" ? 1 : 0);
Ulrich Weigand151ad372013-06-20 16:24:17 +0000831 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Benjamin Kramer29739e72012-05-12 16:52:21 +0000832 if (IDVal == "b" && Sym->isUndefined())
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000833 return Error(Loc, "invalid reference to undefined symbol");
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000834 EndLoc = Lexer.getTok().getEndLoc();
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000835 Lex(); // Eat identifier.
836 }
837 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000838 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000839 }
Bill Wendling69c4ef32011-01-25 21:26:41 +0000840 case AsmToken::Real: {
841 APFloat RealVal(APFloat::IEEEdouble, getTok().getString());
Bob Wilson720b9182011-02-03 23:17:47 +0000842 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
Bill Wendling69c4ef32011-01-25 21:26:41 +0000843 Res = MCConstantExpr::Create(IntVal, getContext());
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000844 EndLoc = Lexer.getTok().getEndLoc();
Bill Wendling69c4ef32011-01-25 21:26:41 +0000845 Lex(); // Eat token.
846 return false;
847 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000848 case AsmToken::Dot: {
849 // This is a '.' reference, which references the current PC. Emit a
850 // temporary label to the streamer and refer to it.
851 MCSymbol *Sym = Ctx.CreateTempSymbol();
852 Out.EmitLabel(Sym);
853 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000854 EndLoc = Lexer.getTok().getEndLoc();
Chris Lattnerd3050352010-04-14 04:40:28 +0000855 Lex(); // Eat identifier.
856 return false;
857 }
Daniel Dunbar3f872332009-07-28 16:08:33 +0000858 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000859 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000860 return ParseParenExpr(Res, EndLoc);
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000861 case AsmToken::LBrac:
862 if (!PlatformParser->HasBracketExpressions())
863 return TokError("brackets expression not supported on this target");
864 Lex(); // Eat the '['.
865 return ParseBracketExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000866 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000867 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000868 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000869 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000870 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000871 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000872 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000873 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000874 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000875 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000876 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000877 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000878 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000879 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000880 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000881 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000882 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000883 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000884 }
885}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000886
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000887bool AsmParser::parseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000888 SMLoc EndLoc;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000889 return parseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000890}
891
Chad Rosierba69b362013-04-10 17:35:30 +0000892bool AsmParser::parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
893 return ParsePrimaryExpr(Res, EndLoc);
894}
895
Daniel Dunbarcceba832010-09-17 02:47:07 +0000896const MCExpr *
897AsmParser::ApplyModifierToExpr(const MCExpr *E,
898 MCSymbolRefExpr::VariantKind Variant) {
899 // Recurse over the given expression, rebuilding it to apply the given variant
900 // if there is exactly one symbol.
901 switch (E->getKind()) {
902 case MCExpr::Target:
903 case MCExpr::Constant:
904 return 0;
905
906 case MCExpr::SymbolRef: {
907 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
908
909 if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
910 TokError("invalid variant on expression '" +
911 getTok().getIdentifier() + "' (already modified)");
912 return E;
913 }
914
915 return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
916 }
917
918 case MCExpr::Unary: {
919 const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
920 const MCExpr *Sub = ApplyModifierToExpr(UE->getSubExpr(), Variant);
921 if (!Sub)
922 return 0;
923 return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
924 }
925
926 case MCExpr::Binary: {
927 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
928 const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
929 const MCExpr *RHS = ApplyModifierToExpr(BE->getRHS(), Variant);
930
931 if (!LHS && !RHS)
932 return 0;
933
934 if (!LHS) LHS = BE->getLHS();
935 if (!RHS) RHS = BE->getRHS();
936
937 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
938 }
939 }
Daniel Dunbarf3f95c92010-09-17 16:34:24 +0000940
Craig Topper85814382012-02-07 05:05:23 +0000941 llvm_unreachable("Invalid expression kind!");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000942}
943
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000944/// parseExpression - Parse an expression and return it.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000945///
Jim Grosbachfbe16812011-08-20 16:24:13 +0000946/// expr ::= expr &&,|| expr -> lowest.
947/// expr ::= expr |,^,&,! expr
948/// expr ::= expr ==,!=,<>,<,<=,>,>= expr
949/// expr ::= expr <<,>> expr
950/// expr ::= expr +,- expr
951/// expr ::= expr *,/,% expr -> highest.
Chris Lattner74ec1a32009-06-22 06:32:03 +0000952/// expr ::= primaryexpr
953///
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000954bool AsmParser::parseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000955 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000956 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000957 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
958 return true;
959
Daniel Dunbarcceba832010-09-17 02:47:07 +0000960 // As a special case, we support 'a op b @ modifier' by rewriting the
961 // expression to include the modifier. This is inefficient, but in general we
962 // expect users to use 'a@modifier op b'.
963 if (Lexer.getKind() == AsmToken::At) {
964 Lex();
965
966 if (Lexer.isNot(AsmToken::Identifier))
967 return TokError("unexpected symbol modifier following '@'");
968
969 MCSymbolRefExpr::VariantKind Variant =
970 MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
971 if (Variant == MCSymbolRefExpr::VK_Invalid)
972 return TokError("invalid variant '" + getTok().getIdentifier() + "'");
973
974 const MCExpr *ModifiedRes = ApplyModifierToExpr(Res, Variant);
975 if (!ModifiedRes) {
976 return TokError("invalid modifier '" + getTok().getIdentifier() +
977 "' (no symbols present)");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000978 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000979
Daniel Dunbarcceba832010-09-17 02:47:07 +0000980 Res = ModifiedRes;
981 Lex();
982 }
983
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000984 // Try to constant fold it up front, if possible.
985 int64_t Value;
986 if (Res->EvaluateAsAbsolute(Value))
987 Res = MCConstantExpr::Create(Value, getContext());
988
989 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000990}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000991
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000992bool AsmParser::parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000993 Res = 0;
994 return ParseParenExpr(Res, EndLoc) ||
995 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000996}
997
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000998bool AsmParser::parseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000999 const MCExpr *Expr;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001000
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001001 SMLoc StartLoc = Lexer.getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001002 if (parseExpression(Expr))
Daniel Dunbar475839e2009-06-29 20:37:27 +00001003 return true;
1004
Daniel Dunbare00b0112009-10-16 01:57:52 +00001005 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001006 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +00001007
1008 return false;
1009}
1010
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001011static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001012 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001013 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +00001014 default:
1015 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +00001016
Jim Grosbachfbe16812011-08-20 16:24:13 +00001017 // Lowest Precedence: &&, ||
Daniel Dunbar3f872332009-07-28 16:08:33 +00001018 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001019 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001020 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001021 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001022 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001023 return 1;
1024
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001025
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001026 // Low Precedence: |, &, ^
Daniel Dunbar475839e2009-06-29 20:37:27 +00001027 //
1028 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +00001029 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001030 Kind = MCBinaryExpr::Or;
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001031 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001032 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001033 Kind = MCBinaryExpr::Xor;
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001034 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001035 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001036 Kind = MCBinaryExpr::And;
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001037 return 2;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001038
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001039 // Low Intermediate Precedence: ==, !=, <>, <, <=, >, >=
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001040 case AsmToken::EqualEqual:
1041 Kind = MCBinaryExpr::EQ;
1042 return 3;
1043 case AsmToken::ExclaimEqual:
1044 case AsmToken::LessGreater:
1045 Kind = MCBinaryExpr::NE;
1046 return 3;
1047 case AsmToken::Less:
1048 Kind = MCBinaryExpr::LT;
1049 return 3;
1050 case AsmToken::LessEqual:
1051 Kind = MCBinaryExpr::LTE;
1052 return 3;
1053 case AsmToken::Greater:
1054 Kind = MCBinaryExpr::GT;
1055 return 3;
1056 case AsmToken::GreaterEqual:
1057 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001058 return 3;
1059
Jim Grosbachfbe16812011-08-20 16:24:13 +00001060 // Intermediate Precedence: <<, >>
1061 case AsmToken::LessLess:
1062 Kind = MCBinaryExpr::Shl;
1063 return 4;
1064 case AsmToken::GreaterGreater:
1065 Kind = MCBinaryExpr::Shr;
1066 return 4;
1067
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001068 // High Intermediate Precedence: +, -
1069 case AsmToken::Plus:
1070 Kind = MCBinaryExpr::Add;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001071 return 5;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001072 case AsmToken::Minus:
1073 Kind = MCBinaryExpr::Sub;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001074 return 5;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001075
Jim Grosbachfbe16812011-08-20 16:24:13 +00001076 // Highest Precedence: *, /, %
Daniel Dunbar3f872332009-07-28 16:08:33 +00001077 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001078 Kind = MCBinaryExpr::Mul;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001079 return 6;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001080 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001081 Kind = MCBinaryExpr::Div;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001082 return 6;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001083 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001084 Kind = MCBinaryExpr::Mod;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001085 return 6;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001086 }
1087}
1088
1089
1090/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
1091/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +00001092bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
1093 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001094 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001095 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001096 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001097
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001098 // If the next token is lower precedence than we are allowed to eat, return
1099 // successfully with what we ate already.
1100 if (TokPrec < Precedence)
1101 return false;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001102
Sean Callanan79ed1a82010-01-19 20:22:31 +00001103 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001104
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001105 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +00001106 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +00001107 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001108
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001109 // If BinOp binds less tightly with RHS than the operator after RHS, let
1110 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001111 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001112 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001113 if (TokPrec < NextTokPrec) {
Kevin Enderby88535dd2013-05-07 21:40:58 +00001114 if (ParseBinOpRHS(TokPrec+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001115 }
1116
Daniel Dunbar475839e2009-06-29 20:37:27 +00001117 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +00001118 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001119 }
1120}
1121
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001122/// ParseStatement:
1123/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +00001124/// ::= Label* Directive ...Operands... EndOfStatement
1125/// ::= Label* Identifier OperandList* EndOfStatement
Eli Friedman2128aae2012-10-22 23:58:19 +00001126bool AsmParser::ParseStatement(ParseStatementInfo &Info) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001127 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +00001128 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001129 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001130 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001131 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001132
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001133 // Statements always start with an identifier or are a full line comment.
Sean Callanan18b83232010-01-19 21:44:56 +00001134 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +00001135 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001136 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001137 int64_t LocalLabelVal = -1;
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001138 // A full line comment is a '#' as the first token.
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001139 if (Lexer.is(AsmToken::Hash))
1140 return ParseCppHashLineFilenameComment(IDLoc);
Daniel Dunbar0143ac12011-03-25 17:47:14 +00001141
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001142 // Allow an integer followed by a ':' as a directional local label.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001143 if (Lexer.is(AsmToken::Integer)) {
1144 LocalLabelVal = getTok().getIntVal();
1145 if (LocalLabelVal < 0) {
1146 if (!TheCondState.Ignore)
1147 return TokError("unexpected token at start of statement");
1148 IDVal = "";
Eli Benderskyed5df012013-01-16 19:32:36 +00001149 } else {
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001150 IDVal = getTok().getString();
1151 Lex(); // Consume the integer token to be used as an identifier token.
1152 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +00001153 if (!TheCondState.Ignore)
1154 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001155 }
1156 }
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001157 } else if (Lexer.is(AsmToken::Dot)) {
1158 // Treat '.' as a valid identifier in this context.
1159 Lex();
1160 IDVal = ".";
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001161 } else if (parseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +00001162 if (!TheCondState.Ignore)
1163 return TokError("unexpected token at start of statement");
1164 IDVal = "";
1165 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001166
Chris Lattner7834fac2010-04-17 18:14:27 +00001167 // Handle conditional assembly here before checking for skipping. We
1168 // have to do this so that .endif isn't skipped in a ".if 0" block for
1169 // example.
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001170 StringMap<DirectiveKind>::const_iterator DirKindIt =
Eli Bendersky6ee13082013-01-15 22:59:42 +00001171 DirectiveKindMap.find(IDVal);
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001172 DirectiveKind DirKind =
Eli Bendersky6ee13082013-01-15 22:59:42 +00001173 (DirKindIt == DirectiveKindMap.end()) ? DK_NO_DIRECTIVE :
1174 DirKindIt->getValue();
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001175 switch (DirKind) {
1176 default:
1177 break;
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001178 case DK_IF:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001179 return ParseDirectiveIf(IDLoc);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001180 case DK_IFB:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001181 return ParseDirectiveIfb(IDLoc, true);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001182 case DK_IFNB:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001183 return ParseDirectiveIfb(IDLoc, false);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001184 case DK_IFC:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001185 return ParseDirectiveIfc(IDLoc, true);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001186 case DK_IFNC:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001187 return ParseDirectiveIfc(IDLoc, false);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001188 case DK_IFDEF:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001189 return ParseDirectiveIfdef(IDLoc, true);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001190 case DK_IFNDEF:
1191 case DK_IFNOTDEF:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001192 return ParseDirectiveIfdef(IDLoc, false);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001193 case DK_ELSEIF:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001194 return ParseDirectiveElseIf(IDLoc);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001195 case DK_ELSE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001196 return ParseDirectiveElse(IDLoc);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001197 case DK_ENDIF:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001198 return ParseDirectiveEndIf(IDLoc);
1199 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001200
Eli Benderskyed5df012013-01-16 19:32:36 +00001201 // Ignore the statement if in the middle of inactive conditional
1202 // (e.g. ".if 0").
Chad Rosier17feeec2012-10-20 00:47:08 +00001203 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001204 eatToEndOfStatement();
Chris Lattner7834fac2010-04-17 18:14:27 +00001205 return false;
1206 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001207
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001208 // FIXME: Recurse on local labels?
1209
1210 // See what kind of statement we have.
1211 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001212 case AsmToken::Colon: {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001213 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001214
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001215 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001216 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001217
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001218 // Diagnose attempt to use '.' as a label.
1219 if (IDVal == ".")
1220 return Error(IDLoc, "invalid use of pseudo-symbol '.' as a label");
1221
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001222 // Diagnose attempt to use a variable as a label.
1223 //
1224 // FIXME: Diagnostics. Note the location of the definition as a label.
1225 // FIXME: This doesn't diagnose assignment to a symbol which has been
1226 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001227 MCSymbol *Sym;
1228 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001229 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001230 else
1231 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +00001232 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001233 return Error(IDLoc, "invalid symbol redefinition");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001234
Daniel Dunbar959fd882009-08-26 22:13:22 +00001235 // Emit the label.
Chad Rosierdeb1bab2013-01-07 20:34:12 +00001236 if (!ParsingInlineAsm)
1237 Out.EmitLabel(Sym);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001238
Kevin Enderby94c2e852011-12-09 18:09:40 +00001239 // If we are generating dwarf for assembly source files then gather the
Kevin Enderby11c2def2012-01-10 21:12:34 +00001240 // info to make a dwarf label entry for this label if needed.
Kevin Enderby94c2e852011-12-09 18:09:40 +00001241 if (getContext().getGenDwarfForAssembly())
Kevin Enderby11c2def2012-01-10 21:12:34 +00001242 MCGenDwarfLabelEntry::Make(Sym, &getStreamer(), getSourceManager(),
1243 IDLoc);
Kevin Enderby94c2e852011-12-09 18:09:40 +00001244
Daniel Dunbar01777ff2010-05-23 18:36:34 +00001245 // Consume any end of statement token, if present, to avoid spurious
1246 // AddBlankLine calls().
1247 if (Lexer.is(AsmToken::EndOfStatement)) {
1248 Lex();
1249 if (Lexer.is(AsmToken::Eof))
1250 return false;
1251 }
1252
Eli Friedman2128aae2012-10-22 23:58:19 +00001253 return false;
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001254 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001255
Daniel Dunbar3f872332009-07-28 16:08:33 +00001256 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001257 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +00001258 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001259
Nico Weber4c4c7322011-01-28 03:04:41 +00001260 return ParseAssignment(IDVal, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001261
1262 default: // Normal instruction or directive.
1263 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001264 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001265
1266 // If macros are enabled, check to see if this is a macro instantiation.
Eli Bendersky733c3362013-01-14 18:08:41 +00001267 if (MacrosEnabled())
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001268 if (const MCAsmMacro *M = LookupMacro(IDVal)) {
1269 return HandleMacroEntry(M, IDLoc);
1270 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001271
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001272 // Otherwise, we have a normal instruction or directive.
Eli Bendersky6ee13082013-01-15 22:59:42 +00001273
1274 // Directives start with "."
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001275 if (IDVal[0] == '.' && IDVal != ".") {
Eli Bendersky6ee13082013-01-15 22:59:42 +00001276 // There are several entities interested in parsing directives:
1277 //
1278 // 1. The target-specific assembly parser. Some directives are target
1279 // specific or may potentially behave differently on certain targets.
1280 // 2. Asm parser extensions. For example, platform-specific parsers
1281 // (like the ELF parser) register themselves as extensions.
1282 // 3. The generic directive parser implemented by this class. These are
1283 // all the directives that behave in a target and platform independent
1284 // manner, or at least have a default behavior that's shared between
1285 // all targets and platforms.
Akira Hatanaka3b02d952012-07-05 19:09:33 +00001286
Eli Bendersky6ee13082013-01-15 22:59:42 +00001287 // First query the target-specific parser. It will return 'true' if it
1288 // isn't interested in this directive.
Akira Hatanaka3b02d952012-07-05 19:09:33 +00001289 if (!getTargetParser().ParseDirective(ID))
1290 return false;
1291
Eli Bendersky6ee13082013-01-15 22:59:42 +00001292 // Next, check the extention directive map to see if any extension has
1293 // registered itself to parse this directive.
1294 std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
1295 ExtensionDirectiveMap.lookup(IDVal);
1296 if (Handler.first)
1297 return (*Handler.second)(Handler.first, IDVal, IDLoc);
1298
1299 // Finally, if no one else is interested in this directive, it must be
1300 // generic and familiar to this class.
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001301 switch (DirKind) {
1302 default:
1303 break;
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001304 case DK_SET:
1305 case DK_EQU:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001306 return ParseDirectiveSet(IDVal, true);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001307 case DK_EQUIV:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001308 return ParseDirectiveSet(IDVal, false);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001309 case DK_ASCII:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001310 return ParseDirectiveAscii(IDVal, false);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001311 case DK_ASCIZ:
1312 case DK_STRING:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001313 return ParseDirectiveAscii(IDVal, true);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001314 case DK_BYTE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001315 return ParseDirectiveValue(1);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001316 case DK_SHORT:
1317 case DK_VALUE:
1318 case DK_2BYTE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001319 return ParseDirectiveValue(2);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001320 case DK_LONG:
1321 case DK_INT:
1322 case DK_4BYTE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001323 return ParseDirectiveValue(4);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001324 case DK_QUAD:
1325 case DK_8BYTE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001326 return ParseDirectiveValue(8);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001327 case DK_SINGLE:
1328 case DK_FLOAT:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001329 return ParseDirectiveRealValue(APFloat::IEEEsingle);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001330 case DK_DOUBLE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001331 return ParseDirectiveRealValue(APFloat::IEEEdouble);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001332 case DK_ALIGN: {
Bill Wendling99cb6222013-06-18 07:20:20 +00001333 bool IsPow2 = !getContext().getAsmInfo()->getAlignmentIsInBytes();
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001334 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
1335 }
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001336 case DK_ALIGN32: {
Bill Wendling99cb6222013-06-18 07:20:20 +00001337 bool IsPow2 = !getContext().getAsmInfo()->getAlignmentIsInBytes();
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001338 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
1339 }
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001340 case DK_BALIGN:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001341 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001342 case DK_BALIGNW:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001343 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001344 case DK_BALIGNL:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001345 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001346 case DK_P2ALIGN:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001347 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001348 case DK_P2ALIGNW:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001349 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001350 case DK_P2ALIGNL:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001351 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001352 case DK_ORG:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001353 return ParseDirectiveOrg();
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001354 case DK_FILL:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001355 return ParseDirectiveFill();
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001356 case DK_ZERO:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001357 return ParseDirectiveZero();
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001358 case DK_EXTERN:
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001359 eatToEndOfStatement(); // .extern is the default, ignore it.
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001360 return false;
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001361 case DK_GLOBL:
1362 case DK_GLOBAL:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001363 return ParseDirectiveSymbolAttribute(MCSA_Global);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001364 case DK_INDIRECT_SYMBOL:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001365 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001366 case DK_LAZY_REFERENCE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001367 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001368 case DK_NO_DEAD_STRIP:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001369 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001370 case DK_SYMBOL_RESOLVER:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001371 return ParseDirectiveSymbolAttribute(MCSA_SymbolResolver);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001372 case DK_PRIVATE_EXTERN:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001373 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001374 case DK_REFERENCE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001375 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001376 case DK_WEAK_DEFINITION:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001377 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001378 case DK_WEAK_REFERENCE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001379 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001380 case DK_WEAK_DEF_CAN_BE_HIDDEN:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001381 return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001382 case DK_COMM:
1383 case DK_COMMON:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001384 return ParseDirectiveComm(/*IsLocal=*/false);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001385 case DK_LCOMM:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001386 return ParseDirectiveComm(/*IsLocal=*/true);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001387 case DK_ABORT:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001388 return ParseDirectiveAbort();
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001389 case DK_INCLUDE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001390 return ParseDirectiveInclude();
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001391 case DK_INCBIN:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001392 return ParseDirectiveIncbin();
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001393 case DK_CODE16:
1394 case DK_CODE16GCC:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001395 return TokError(Twine(IDVal) + " not supported yet");
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001396 case DK_REPT:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001397 return ParseDirectiveRept(IDLoc);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001398 case DK_IRP:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001399 return ParseDirectiveIrp(IDLoc);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001400 case DK_IRPC:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001401 return ParseDirectiveIrpc(IDLoc);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001402 case DK_ENDR:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001403 return ParseDirectiveEndr(IDLoc);
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001404 case DK_BUNDLE_ALIGN_MODE:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001405 return ParseDirectiveBundleAlignMode();
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001406 case DK_BUNDLE_LOCK:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001407 return ParseDirectiveBundleLock();
Eli Bendersky7eef9c12013-01-10 23:40:56 +00001408 case DK_BUNDLE_UNLOCK:
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001409 return ParseDirectiveBundleUnlock();
Eli Bendersky6ee13082013-01-15 22:59:42 +00001410 case DK_SLEB128:
1411 return ParseDirectiveLEB128(true);
1412 case DK_ULEB128:
1413 return ParseDirectiveLEB128(false);
1414 case DK_SPACE:
1415 case DK_SKIP:
1416 return ParseDirectiveSpace(IDVal);
1417 case DK_FILE:
1418 return ParseDirectiveFile(IDLoc);
1419 case DK_LINE:
1420 return ParseDirectiveLine();
1421 case DK_LOC:
1422 return ParseDirectiveLoc();
1423 case DK_STABS:
1424 return ParseDirectiveStabs();
1425 case DK_CFI_SECTIONS:
1426 return ParseDirectiveCFISections();
1427 case DK_CFI_STARTPROC:
1428 return ParseDirectiveCFIStartProc();
1429 case DK_CFI_ENDPROC:
1430 return ParseDirectiveCFIEndProc();
1431 case DK_CFI_DEF_CFA:
1432 return ParseDirectiveCFIDefCfa(IDLoc);
1433 case DK_CFI_DEF_CFA_OFFSET:
1434 return ParseDirectiveCFIDefCfaOffset();
1435 case DK_CFI_ADJUST_CFA_OFFSET:
1436 return ParseDirectiveCFIAdjustCfaOffset();
1437 case DK_CFI_DEF_CFA_REGISTER:
1438 return ParseDirectiveCFIDefCfaRegister(IDLoc);
1439 case DK_CFI_OFFSET:
1440 return ParseDirectiveCFIOffset(IDLoc);
1441 case DK_CFI_REL_OFFSET:
1442 return ParseDirectiveCFIRelOffset(IDLoc);
1443 case DK_CFI_PERSONALITY:
1444 return ParseDirectiveCFIPersonalityOrLsda(true);
1445 case DK_CFI_LSDA:
1446 return ParseDirectiveCFIPersonalityOrLsda(false);
1447 case DK_CFI_REMEMBER_STATE:
1448 return ParseDirectiveCFIRememberState();
1449 case DK_CFI_RESTORE_STATE:
1450 return ParseDirectiveCFIRestoreState();
1451 case DK_CFI_SAME_VALUE:
1452 return ParseDirectiveCFISameValue(IDLoc);
1453 case DK_CFI_RESTORE:
1454 return ParseDirectiveCFIRestore(IDLoc);
1455 case DK_CFI_ESCAPE:
1456 return ParseDirectiveCFIEscape();
1457 case DK_CFI_SIGNAL_FRAME:
1458 return ParseDirectiveCFISignalFrame();
1459 case DK_CFI_UNDEFINED:
1460 return ParseDirectiveCFIUndefined(IDLoc);
1461 case DK_CFI_REGISTER:
1462 return ParseDirectiveCFIRegister(IDLoc);
1463 case DK_MACROS_ON:
1464 case DK_MACROS_OFF:
1465 return ParseDirectiveMacrosOnOff(IDVal);
1466 case DK_MACRO:
1467 return ParseDirectiveMacro(IDLoc);
1468 case DK_ENDM:
1469 case DK_ENDMACRO:
1470 return ParseDirectiveEndMacro(IDVal);
1471 case DK_PURGEM:
1472 return ParseDirectivePurgeMacro(IDLoc);
Eli Friedman5d68ec22010-07-19 04:17:25 +00001473 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001474
Jim Grosbach686c0182012-05-01 18:38:27 +00001475 return Error(IDLoc, "unknown directive");
Chris Lattner2cf5f142009-06-22 01:29:09 +00001476 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001477
Chad Rosier469b1442013-02-12 21:33:51 +00001478 // __asm _emit or __asm __emit
1479 if (ParsingInlineAsm && (IDVal == "_emit" || IDVal == "__emit" ||
1480 IDVal == "_EMIT" || IDVal == "__EMIT"))
1481 return ParseDirectiveMSEmit(IDLoc, Info, IDVal.size());
1482
1483 // __asm align
1484 if (ParsingInlineAsm && (IDVal == "align" || IDVal == "ALIGN"))
1485 return ParseDirectiveMSAlign(IDLoc, Info);
Eli Friedman2128aae2012-10-22 23:58:19 +00001486
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001487 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001488
Chris Lattnera7f13542010-05-19 23:34:33 +00001489 // Canonicalize the opcode to lower case.
Eli Benderskyed5df012013-01-16 19:32:36 +00001490 std::string OpcodeStr = IDVal.lower();
Chad Rosier6a020a72012-10-25 20:41:34 +00001491 ParseInstructionInfo IInfo(Info.AsmRewrites);
Eli Benderskyed5df012013-01-16 19:32:36 +00001492 bool HadError = getTargetParser().ParseInstruction(IInfo, OpcodeStr,
1493 IDLoc, Info.ParsedOperands);
Chad Rosier57498012012-12-12 22:45:52 +00001494 Info.ParseError = HadError;
Chris Lattner2cf5f142009-06-22 01:29:09 +00001495
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001496 // Dump the parsed representation, if requested.
1497 if (getShowParsedOperands()) {
1498 SmallString<256> Str;
1499 raw_svector_ostream OS(Str);
1500 OS << "parsed instruction: [";
Eli Friedman2128aae2012-10-22 23:58:19 +00001501 for (unsigned i = 0; i != Info.ParsedOperands.size(); ++i) {
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001502 if (i != 0)
1503 OS << ", ";
Eli Friedman2128aae2012-10-22 23:58:19 +00001504 Info.ParsedOperands[i]->print(OS);
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001505 }
1506 OS << "]";
1507
Chris Lattner3f2d5f62011-10-16 05:43:57 +00001508 PrintMessage(IDLoc, SourceMgr::DK_Note, OS.str());
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001509 }
1510
Kevin Enderby613b7572011-11-01 22:27:22 +00001511 // If we are generating dwarf for assembly source files and the current
1512 // section is the initial text section then generate a .loc directive for
1513 // the instruction.
1514 if (!HadError && getContext().getGenDwarfForAssembly() &&
Peter Collingbournedf39be62013-04-17 21:18:16 +00001515 getContext().getGenDwarfSection() ==
1516 getStreamer().getCurrentSection().first) {
Kevin Enderby938482f2012-11-01 17:31:35 +00001517
Eli Benderskyed5df012013-01-16 19:32:36 +00001518 unsigned Line = SrcMgr.FindLineNumber(IDLoc, CurBuffer);
Kevin Enderby938482f2012-11-01 17:31:35 +00001519
Eli Benderskyed5df012013-01-16 19:32:36 +00001520 // If we previously parsed a cpp hash file line comment then make sure the
1521 // current Dwarf File is for the CppHashFilename if not then emit the
1522 // Dwarf File table for it and adjust the line number for the .loc.
Manman Ren9e999ad2013-03-12 20:17:00 +00001523 const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles =
Eli Benderskyed5df012013-01-16 19:32:36 +00001524 getContext().getMCDwarfFiles();
1525 if (CppHashFilename.size() != 0) {
1526 if (MCDwarfFiles[getContext().getGenDwarfFileNumber()]->getName() !=
Kevin Enderby938482f2012-11-01 17:31:35 +00001527 CppHashFilename)
Eli Benderskyed5df012013-01-16 19:32:36 +00001528 getStreamer().EmitDwarfFileDirective(
1529 getContext().nextGenDwarfFileNumber(), StringRef(), CppHashFilename);
Kevin Enderby938482f2012-11-01 17:31:35 +00001530
Kevin Enderbya8959492013-06-21 20:51:39 +00001531 // Since SrcMgr.FindLineNumber() is slow and messes up the SourceMgr's
1532 // cache with the different Loc from the call above we save the last
1533 // info we queried here with SrcMgr.FindLineNumber().
1534 unsigned CppHashLocLineNo;
1535 if (LastQueryIDLoc == CppHashLoc && LastQueryBuffer == CppHashBuf)
1536 CppHashLocLineNo = LastQueryLine;
1537 else {
1538 CppHashLocLineNo = SrcMgr.FindLineNumber(CppHashLoc, CppHashBuf);
1539 LastQueryLine = CppHashLocLineNo;
1540 LastQueryIDLoc = CppHashLoc;
1541 LastQueryBuffer = CppHashBuf;
1542 }
Kevin Enderby938482f2012-11-01 17:31:35 +00001543 Line = CppHashLineNumber - 1 + (Line - CppHashLocLineNo);
Eli Benderskyed5df012013-01-16 19:32:36 +00001544 }
Kevin Enderby938482f2012-11-01 17:31:35 +00001545
Kevin Enderby613b7572011-11-01 22:27:22 +00001546 getStreamer().EmitDwarfLocDirective(getContext().getGenDwarfFileNumber(),
Kevin Enderby938482f2012-11-01 17:31:35 +00001547 Line, 0, DWARF2_LINE_DEFAULT_IS_STMT ?
Kevin Enderbydba9a172011-11-02 17:56:38 +00001548 DWARF2_FLAG_IS_STMT : 0, 0, 0,
Kevin Enderby613b7572011-11-01 22:27:22 +00001549 StringRef());
1550 }
1551
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001552 // If parsing succeeded, match the instruction.
Chad Rosier84125ca2012-10-13 00:26:04 +00001553 if (!HadError) {
Chad Rosier84125ca2012-10-13 00:26:04 +00001554 unsigned ErrorInfo;
Eli Friedman2128aae2012-10-22 23:58:19 +00001555 HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, Info.Opcode,
1556 Info.ParsedOperands,
1557 Out, ErrorInfo,
Chad Rosier84125ca2012-10-13 00:26:04 +00001558 ParsingInlineAsm);
1559 }
Chris Lattner98986712010-01-14 22:21:20 +00001560
Chris Lattnercbf8a982010-09-11 16:18:25 +00001561 // Don't skip the rest of the line, the instruction parser is responsible for
1562 // that.
1563 return false;
Chris Lattner27aa7d22009-06-21 20:16:42 +00001564}
Chris Lattner9a023f72009-06-24 04:43:34 +00001565
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001566/// EatToEndOfLine uses the Lexer to eat the characters to the end of the line
1567/// since they may not be able to be tokenized to get to the end of line token.
1568void AsmParser::EatToEndOfLine() {
Rafael Espindola12ae5272011-10-19 18:48:52 +00001569 if (!Lexer.is(AsmToken::EndOfStatement))
1570 Lexer.LexUntilEndOfLine();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001571 // Eat EOL.
1572 Lex();
1573}
1574
1575/// ParseCppHashLineFilenameComment as this:
1576/// ::= # number "filename"
1577/// or just as a full line comment if it doesn't have a number and a string.
1578bool AsmParser::ParseCppHashLineFilenameComment(const SMLoc &L) {
1579 Lex(); // Eat the hash token.
1580
1581 if (getLexer().isNot(AsmToken::Integer)) {
1582 // Consume the line since in cases it is not a well-formed line directive,
1583 // as if were simply a full line comment.
1584 EatToEndOfLine();
1585 return false;
1586 }
1587
1588 int64_t LineNumber = getTok().getIntVal();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001589 Lex();
1590
1591 if (getLexer().isNot(AsmToken::String)) {
1592 EatToEndOfLine();
1593 return false;
1594 }
1595
1596 StringRef Filename = getTok().getString();
1597 // Get rid of the enclosing quotes.
1598 Filename = Filename.substr(1, Filename.size()-2);
1599
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001600 // Save the SMLoc, Filename and LineNumber for later use by diagnostics.
1601 CppHashLoc = L;
1602 CppHashFilename = Filename;
1603 CppHashLineNumber = LineNumber;
Kevin Enderby32c1a822012-11-05 21:55:41 +00001604 CppHashBuf = CurBuffer;
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001605
1606 // Ignore any trailing characters, they're just comment.
1607 EatToEndOfLine();
1608 return false;
1609}
1610
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001611/// DiagHandler - will use the last parsed cpp hash line filename comment
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001612/// for the Filename and LineNo if any in the diagnostic.
1613void AsmParser::DiagHandler(const SMDiagnostic &Diag, void *Context) {
1614 const AsmParser *Parser = static_cast<const AsmParser*>(Context);
1615 raw_ostream &OS = errs();
1616
1617 const SourceMgr &DiagSrcMgr = *Diag.getSourceMgr();
1618 const SMLoc &DiagLoc = Diag.getLoc();
1619 int DiagBuf = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
1620 int CppHashBuf = Parser->SrcMgr.FindBufferContainingLoc(Parser->CppHashLoc);
1621
1622 // Like SourceMgr::PrintMessage() we need to print the include stack if any
1623 // before printing the message.
1624 int DiagCurBuffer = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
Benjamin Kramer04a04262011-10-16 10:48:29 +00001625 if (!Parser->SavedDiagHandler && DiagCurBuffer > 0) {
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001626 SMLoc ParentIncludeLoc = DiagSrcMgr.getParentIncludeLoc(DiagCurBuffer);
1627 DiagSrcMgr.PrintIncludeStack(ParentIncludeLoc, OS);
1628 }
1629
Eric Christopher2318ba12012-12-18 00:30:54 +00001630 // If we have not parsed a cpp hash line filename comment or the source
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001631 // manager changed or buffer changed (like in a nested include) then just
1632 // print the normal diagnostic using its Filename and LineNo.
1633 if (!Parser->CppHashLineNumber ||
1634 &DiagSrcMgr != &Parser->SrcMgr ||
1635 DiagBuf != CppHashBuf) {
Benjamin Kramer04a04262011-10-16 10:48:29 +00001636 if (Parser->SavedDiagHandler)
1637 Parser->SavedDiagHandler(Diag, Parser->SavedDiagContext);
1638 else
1639 Diag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001640 return;
1641 }
1642
Eric Christopher2318ba12012-12-18 00:30:54 +00001643 // Use the CppHashFilename and calculate a line number based on the
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001644 // CppHashLoc and CppHashLineNumber relative to this Diag's SMLoc for
1645 // the diagnostic.
1646 const std::string Filename = Parser->CppHashFilename;
1647
1648 int DiagLocLineNo = DiagSrcMgr.FindLineNumber(DiagLoc, DiagBuf);
1649 int CppHashLocLineNo =
1650 Parser->SrcMgr.FindLineNumber(Parser->CppHashLoc, CppHashBuf);
1651 int LineNo = Parser->CppHashLineNumber - 1 +
1652 (DiagLocLineNo - CppHashLocLineNo);
1653
Chris Lattnerd8b7aa22011-10-16 04:47:35 +00001654 SMDiagnostic NewDiag(*Diag.getSourceMgr(), Diag.getLoc(),
1655 Filename, LineNo, Diag.getColumnNo(),
Chris Lattner3f2d5f62011-10-16 05:43:57 +00001656 Diag.getKind(), Diag.getMessage(),
Chris Lattner462b43c2011-10-16 05:47:55 +00001657 Diag.getLineContents(), Diag.getRanges());
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001658
Benjamin Kramer04a04262011-10-16 10:48:29 +00001659 if (Parser->SavedDiagHandler)
1660 Parser->SavedDiagHandler(NewDiag, Parser->SavedDiagContext);
1661 else
1662 NewDiag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001663}
1664
Rafael Espindola799aacf2012-08-21 18:29:30 +00001665// FIXME: This is mostly duplicated from the function in AsmLexer.cpp. The
1666// difference being that that function accepts '@' as part of identifiers and
1667// we can't do that. AsmLexer.cpp should probably be changed to handle
1668// '@' as a special case when needed.
1669static bool isIdentifierChar(char c) {
Guy Benyei87d0b9e2013-02-12 21:21:59 +00001670 return isalnum(static_cast<unsigned char>(c)) || c == '_' || c == '$' ||
1671 c == '.';
Rafael Espindola799aacf2012-08-21 18:29:30 +00001672}
1673
Rafael Espindola761cb062012-06-03 23:57:14 +00001674bool AsmParser::expandMacro(raw_svector_ostream &OS, StringRef Body,
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001675 const MCAsmMacroParameters &Parameters,
1676 const MCAsmMacroArguments &A,
Rafael Espindola65366442011-06-05 02:43:45 +00001677 const SMLoc &L) {
Rafael Espindola65366442011-06-05 02:43:45 +00001678 unsigned NParameters = Parameters.size();
1679 if (NParameters != 0 && NParameters != A.size())
1680 return Error(L, "Wrong number of arguments");
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001681
Preston Gurd7b6f2032012-09-19 20:36:12 +00001682 // A macro without parameters is handled differently on Darwin:
1683 // gas accepts no arguments and does no substitutions
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001684 while (!Body.empty()) {
1685 // Scan for the next substitution.
1686 std::size_t End = Body.size(), Pos = 0;
1687 for (; Pos != End; ++Pos) {
1688 // Check for a substitution or escape.
Rafael Espindola65366442011-06-05 02:43:45 +00001689 if (!NParameters) {
1690 // This macro has no parameters, look for $0, $1, etc.
1691 if (Body[Pos] != '$' || Pos + 1 == End)
1692 continue;
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001693
Rafael Espindola65366442011-06-05 02:43:45 +00001694 char Next = Body[Pos + 1];
Guy Benyei87d0b9e2013-02-12 21:21:59 +00001695 if (Next == '$' || Next == 'n' ||
1696 isdigit(static_cast<unsigned char>(Next)))
Rafael Espindola65366442011-06-05 02:43:45 +00001697 break;
1698 } else {
1699 // This macro has parameters, look for \foo, \bar, etc.
1700 if (Body[Pos] == '\\' && Pos + 1 != End)
1701 break;
1702 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001703 }
1704
1705 // Add the prefix.
1706 OS << Body.slice(0, Pos);
1707
1708 // Check if we reached the end.
1709 if (Pos == End)
1710 break;
1711
Rafael Espindola65366442011-06-05 02:43:45 +00001712 if (!NParameters) {
1713 switch (Body[Pos+1]) {
1714 // $$ => $
1715 case '$':
1716 OS << '$';
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001717 break;
1718
Rafael Espindola65366442011-06-05 02:43:45 +00001719 // $n => number of arguments
1720 case 'n':
1721 OS << A.size();
1722 break;
1723
1724 // $[0-9] => argument
1725 default: {
1726 // Missing arguments are ignored.
1727 unsigned Index = Body[Pos+1] - '0';
1728 if (Index >= A.size())
1729 break;
1730
1731 // Otherwise substitute with the token values, with spaces eliminated.
Eli Bendersky9bac6b22013-01-14 19:00:26 +00001732 for (MCAsmMacroArgument::const_iterator it = A[Index].begin(),
Rafael Espindola65366442011-06-05 02:43:45 +00001733 ie = A[Index].end(); it != ie; ++it)
1734 OS << it->getString();
1735 break;
1736 }
1737 }
1738 Pos += 2;
1739 } else {
1740 unsigned I = Pos + 1;
Rafael Espindola799aacf2012-08-21 18:29:30 +00001741 while (isIdentifierChar(Body[I]) && I + 1 != End)
Rafael Espindola65366442011-06-05 02:43:45 +00001742 ++I;
1743
1744 const char *Begin = Body.data() + Pos +1;
1745 StringRef Argument(Begin, I - (Pos +1));
1746 unsigned Index = 0;
1747 for (; Index < NParameters; ++Index)
Preston Gurd6c9176a2012-09-19 20:29:04 +00001748 if (Parameters[Index].first == Argument)
Rafael Espindola65366442011-06-05 02:43:45 +00001749 break;
1750
Preston Gurd7b6f2032012-09-19 20:36:12 +00001751 if (Index == NParameters) {
1752 if (Body[Pos+1] == '(' && Body[Pos+2] == ')')
1753 Pos += 3;
1754 else {
1755 OS << '\\' << Argument;
1756 Pos = I;
1757 }
1758 } else {
Eli Bendersky9bac6b22013-01-14 19:00:26 +00001759 for (MCAsmMacroArgument::const_iterator it = A[Index].begin(),
Preston Gurd7b6f2032012-09-19 20:36:12 +00001760 ie = A[Index].end(); it != ie; ++it)
1761 if (it->getKind() == AsmToken::String)
1762 OS << it->getStringContents();
1763 else
1764 OS << it->getString();
Rafael Espindola65366442011-06-05 02:43:45 +00001765
Preston Gurd7b6f2032012-09-19 20:36:12 +00001766 Pos += 1 + Argument.size();
1767 }
Rafael Espindola65366442011-06-05 02:43:45 +00001768 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001769 // Update the scan point.
Rafael Espindola65366442011-06-05 02:43:45 +00001770 Body = Body.substr(Pos);
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001771 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001772
Rafael Espindola65366442011-06-05 02:43:45 +00001773 return false;
1774}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001775
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001776MacroInstantiation::MacroInstantiation(const MCAsmMacro *M, SMLoc IL,
Daniel Dunbar4259a1a2012-12-01 01:38:48 +00001777 int EB, SMLoc EL,
Rafael Espindola65366442011-06-05 02:43:45 +00001778 MemoryBuffer *I)
Daniel Dunbar4259a1a2012-12-01 01:38:48 +00001779 : TheMacro(M), Instantiation(I), InstantiationLoc(IL), ExitBuffer(EB),
1780 ExitLoc(EL)
Rafael Espindola65366442011-06-05 02:43:45 +00001781{
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001782}
1783
Preston Gurd7b6f2032012-09-19 20:36:12 +00001784static bool IsOperator(AsmToken::TokenKind kind)
1785{
1786 switch (kind)
1787 {
1788 default:
1789 return false;
1790 case AsmToken::Plus:
1791 case AsmToken::Minus:
1792 case AsmToken::Tilde:
1793 case AsmToken::Slash:
1794 case AsmToken::Star:
1795 case AsmToken::Dot:
1796 case AsmToken::Equal:
1797 case AsmToken::EqualEqual:
1798 case AsmToken::Pipe:
1799 case AsmToken::PipePipe:
1800 case AsmToken::Caret:
1801 case AsmToken::Amp:
1802 case AsmToken::AmpAmp:
1803 case AsmToken::Exclaim:
1804 case AsmToken::ExclaimEqual:
1805 case AsmToken::Percent:
1806 case AsmToken::Less:
1807 case AsmToken::LessEqual:
1808 case AsmToken::LessLess:
1809 case AsmToken::LessGreater:
1810 case AsmToken::Greater:
1811 case AsmToken::GreaterEqual:
1812 case AsmToken::GreaterGreater:
1813 return true;
1814 }
1815}
1816
Eli Bendersky9bac6b22013-01-14 19:00:26 +00001817bool AsmParser::ParseMacroArgument(MCAsmMacroArgument &MA,
Preston Gurd7b6f2032012-09-19 20:36:12 +00001818 AsmToken::TokenKind &ArgumentDelimiter) {
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001819 unsigned ParenLevel = 0;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001820 unsigned AddTokens = 0;
1821
1822 // gas accepts arguments separated by whitespace, except on Darwin
1823 if (!IsDarwin)
1824 Lexer.setSkipSpace(false);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001825
1826 for (;;) {
Preston Gurd7b6f2032012-09-19 20:36:12 +00001827 if (Lexer.is(AsmToken::Eof) || Lexer.is(AsmToken::Equal)) {
1828 Lexer.setSkipSpace(true);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001829 return TokError("unexpected token in macro instantiation");
Preston Gurd7b6f2032012-09-19 20:36:12 +00001830 }
1831
1832 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1833 // Spaces and commas cannot be mixed to delimit parameters
1834 if (ArgumentDelimiter == AsmToken::Eof)
1835 ArgumentDelimiter = AsmToken::Comma;
1836 else if (ArgumentDelimiter != AsmToken::Comma) {
1837 Lexer.setSkipSpace(true);
1838 return TokError("expected ' ' for macro argument separator");
1839 }
1840 break;
1841 }
1842
1843 if (Lexer.is(AsmToken::Space)) {
1844 Lex(); // Eat spaces
1845
1846 // Spaces can delimit parameters, but could also be part an expression.
1847 // If the token after a space is an operator, add the token and the next
1848 // one into this argument
1849 if (ArgumentDelimiter == AsmToken::Space ||
1850 ArgumentDelimiter == AsmToken::Eof) {
1851 if (IsOperator(Lexer.getKind())) {
1852 // Check to see whether the token is used as an operator,
1853 // or part of an identifier
Jordan Rose3ebe59c2013-01-07 19:00:49 +00001854 const char *NextChar = getTok().getEndLoc().getPointer();
Preston Gurd7b6f2032012-09-19 20:36:12 +00001855 if (*NextChar == ' ')
1856 AddTokens = 2;
1857 }
1858
1859 if (!AddTokens && ParenLevel == 0) {
1860 if (ArgumentDelimiter == AsmToken::Eof &&
1861 !IsOperator(Lexer.getKind()))
1862 ArgumentDelimiter = AsmToken::Space;
1863 break;
1864 }
1865 }
1866 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001867
1868 // HandleMacroEntry relies on not advancing the lexer here
1869 // to be able to fill in the remaining default parameter values
1870 if (Lexer.is(AsmToken::EndOfStatement))
1871 break;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001872
1873 // Adjust the current parentheses level.
1874 if (Lexer.is(AsmToken::LParen))
1875 ++ParenLevel;
1876 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1877 --ParenLevel;
1878
1879 // Append the token to the current argument list.
1880 MA.push_back(getTok());
Preston Gurd7b6f2032012-09-19 20:36:12 +00001881 if (AddTokens)
1882 AddTokens--;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001883 Lex();
1884 }
Preston Gurd7b6f2032012-09-19 20:36:12 +00001885
1886 Lexer.setSkipSpace(true);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001887 if (ParenLevel != 0)
Rafael Espindola76ac2002012-08-21 15:55:04 +00001888 return TokError("unbalanced parentheses in macro argument");
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001889 return false;
1890}
1891
1892// Parse the macro instantiation arguments.
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001893bool AsmParser::ParseMacroArguments(const MCAsmMacro *M, MCAsmMacroArguments &A) {
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001894 const unsigned NParameters = M ? M->Parameters.size() : 0;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001895 // Argument delimiter is initially unknown. It will be set by
1896 // ParseMacroArgument()
1897 AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001898
1899 // Parse two kinds of macro invocations:
1900 // - macros defined without any parameters accept an arbitrary number of them
1901 // - macros defined with parameters accept at most that many of them
1902 for (unsigned Parameter = 0; !NParameters || Parameter < NParameters;
1903 ++Parameter) {
Eli Bendersky9bac6b22013-01-14 19:00:26 +00001904 MCAsmMacroArgument MA;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001905
Preston Gurd7b6f2032012-09-19 20:36:12 +00001906 if (ParseMacroArgument(MA, ArgumentDelimiter))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001907 return true;
1908
Preston Gurd6c9176a2012-09-19 20:29:04 +00001909 if (!MA.empty() || !NParameters)
1910 A.push_back(MA);
1911 else if (NParameters) {
1912 if (!M->Parameters[Parameter].second.empty())
1913 A.push_back(M->Parameters[Parameter].second);
1914 }
Jim Grosbach97146442012-07-30 22:44:17 +00001915
Preston Gurd6c9176a2012-09-19 20:29:04 +00001916 // At the end of the statement, fill in remaining arguments that have
1917 // default values. If there aren't any, then the next argument is
1918 // required but missing
1919 if (Lexer.is(AsmToken::EndOfStatement)) {
1920 if (NParameters && Parameter < NParameters - 1) {
1921 if (M->Parameters[Parameter + 1].second.empty())
1922 return TokError("macro argument '" +
1923 Twine(M->Parameters[Parameter + 1].first) +
1924 "' is missing");
1925 else
1926 continue;
1927 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001928 return false;
Preston Gurd6c9176a2012-09-19 20:29:04 +00001929 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001930
1931 if (Lexer.is(AsmToken::Comma))
1932 Lex();
1933 }
1934 return TokError("Too many arguments");
1935}
1936
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001937const MCAsmMacro* AsmParser::LookupMacro(StringRef Name) {
1938 StringMap<MCAsmMacro*>::iterator I = MacroMap.find(Name);
1939 return (I == MacroMap.end()) ? NULL : I->getValue();
1940}
1941
1942void AsmParser::DefineMacro(StringRef Name, const MCAsmMacro& Macro) {
1943 MacroMap[Name] = new MCAsmMacro(Macro);
1944}
1945
1946void AsmParser::UndefineMacro(StringRef Name) {
1947 StringMap<MCAsmMacro*>::iterator I = MacroMap.find(Name);
1948 if (I != MacroMap.end()) {
1949 delete I->getValue();
1950 MacroMap.erase(I);
1951 }
1952}
1953
1954bool AsmParser::HandleMacroEntry(const MCAsmMacro *M, SMLoc NameLoc) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001955 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1956 // this, although we should protect against infinite loops.
1957 if (ActiveMacros.size() == 20)
1958 return TokError("macros cannot be nested more than 20 levels deep");
1959
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001960 MCAsmMacroArguments A;
Rafael Espindola8a403d32012-08-08 14:51:03 +00001961 if (ParseMacroArguments(M, A))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001962 return true;
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001963
Jim Grosbach97146442012-07-30 22:44:17 +00001964 // Remove any trailing empty arguments. Do this after-the-fact as we have
1965 // to keep empty arguments in the middle of the list or positionality
1966 // gets off. e.g., "foo 1, , 2" vs. "foo 1, 2,"
Rafael Espindola8a403d32012-08-08 14:51:03 +00001967 while (!A.empty() && A.back().empty())
1968 A.pop_back();
Jim Grosbach97146442012-07-30 22:44:17 +00001969
Rafael Espindola65366442011-06-05 02:43:45 +00001970 // Macro instantiation is lexical, unfortunately. We construct a new buffer
1971 // to hold the macro body with substitutions.
1972 SmallString<256> Buf;
1973 StringRef Body = M->Body;
Rafael Espindola761cb062012-06-03 23:57:14 +00001974 raw_svector_ostream OS(Buf);
Rafael Espindola65366442011-06-05 02:43:45 +00001975
Rafael Espindola8a403d32012-08-08 14:51:03 +00001976 if (expandMacro(OS, Body, M->Parameters, A, getTok().getLoc()))
Rafael Espindola65366442011-06-05 02:43:45 +00001977 return true;
1978
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001979 // We include the .endmacro in the buffer as our cue to exit the macro
Rafael Espindola761cb062012-06-03 23:57:14 +00001980 // instantiation.
1981 OS << ".endmacro\n";
1982
Rafael Espindola65366442011-06-05 02:43:45 +00001983 MemoryBuffer *Instantiation =
Rafael Espindola761cb062012-06-03 23:57:14 +00001984 MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Rafael Espindola65366442011-06-05 02:43:45 +00001985
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001986 // Create the macro instantiation object and add to the current macro
1987 // instantiation stack.
1988 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar4259a1a2012-12-01 01:38:48 +00001989 CurBuffer,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001990 getTok().getLoc(),
Rafael Espindola65366442011-06-05 02:43:45 +00001991 Instantiation);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001992 ActiveMacros.push_back(MI);
1993
1994 // Jump to the macro instantiation and prime the lexer.
1995 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1996 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1997 Lex();
1998
1999 return false;
2000}
2001
2002void AsmParser::HandleMacroExit() {
2003 // Jump to the EndOfStatement we should return to, and consume it.
Daniel Dunbar4259a1a2012-12-01 01:38:48 +00002004 JumpToLoc(ActiveMacros.back()->ExitLoc, ActiveMacros.back()->ExitBuffer);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00002005 Lex();
2006
2007 // Pop the instantiation entry.
2008 delete ActiveMacros.back();
2009 ActiveMacros.pop_back();
2010}
2011
Rafael Espindolae71cc862012-01-28 05:57:00 +00002012static bool IsUsedIn(const MCSymbol *Sym, const MCExpr *Value) {
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002013 switch (Value->getKind()) {
Rafael Espindolae71cc862012-01-28 05:57:00 +00002014 case MCExpr::Binary: {
2015 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr*>(Value);
2016 return IsUsedIn(Sym, BE->getLHS()) || IsUsedIn(Sym, BE->getRHS());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002017 }
Rafael Espindolae71cc862012-01-28 05:57:00 +00002018 case MCExpr::Target:
2019 case MCExpr::Constant:
2020 return false;
2021 case MCExpr::SymbolRef: {
2022 const MCSymbol &S = static_cast<const MCSymbolRefExpr*>(Value)->getSymbol();
Rafael Espindola8b01c822012-01-28 06:22:14 +00002023 if (S.isVariable())
2024 return IsUsedIn(Sym, S.getVariableValue());
2025 return &S == Sym;
Rafael Espindolae71cc862012-01-28 05:57:00 +00002026 }
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002027 case MCExpr::Unary:
Rafael Espindolae71cc862012-01-28 05:57:00 +00002028 return IsUsedIn(Sym, static_cast<const MCUnaryExpr*>(Value)->getSubExpr());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002029 }
Benjamin Kramer518ff562012-01-28 15:28:41 +00002030
2031 llvm_unreachable("Unknown expr kind!");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002032}
2033
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00002034bool AsmParser::ParseAssignment(StringRef Name, bool allow_redef,
2035 bool NoDeadStrip) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00002036 // FIXME: Use better location, we should use proper tokens.
2037 SMLoc EqualLoc = Lexer.getLoc();
2038
Daniel Dunbar821e3332009-08-31 08:09:28 +00002039 const MCExpr *Value;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002040 if (parseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002041 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002042
Rafael Espindolae71cc862012-01-28 05:57:00 +00002043 // Note: we don't count b as used in "a = b". This is to allow
2044 // a = b
2045 // b = c
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002046
Daniel Dunbar3f872332009-07-28 16:08:33 +00002047 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002048 return TokError("unexpected token in assignment");
2049
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00002050 // Error on assignment to '.'.
2051 if (Name == ".") {
2052 return Error(EqualLoc, ("assignment to pseudo-symbol '.' is unsupported "
2053 "(use '.space' or '.org').)"));
2054 }
2055
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002056 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00002057 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002058
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002059 // Validate that the LHS is allowed to be a variable (either it has not been
2060 // used as a symbol, or it is an absolute symbol).
2061 MCSymbol *Sym = getContext().LookupSymbol(Name);
2062 if (Sym) {
2063 // Diagnose assignment to a label.
2064 //
2065 // FIXME: Diagnostics. Note the location of the definition as a label.
2066 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Rafael Espindolae71cc862012-01-28 05:57:00 +00002067 if (IsUsedIn(Sym, Value))
2068 return Error(EqualLoc, "Recursive use of '" + Name + "'");
2069 else if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
Daniel Dunbar525a3a62010-05-17 17:46:23 +00002070 ; // Allow redefinitions of undefined symbols only used in directives.
Jim Grosbach48c95332012-03-20 21:33:21 +00002071 else if (Sym->isVariable() && !Sym->isUsed() && allow_redef)
2072 ; // Allow redefinitions of variables that haven't yet been used.
Daniel Dunbar6db7fe82011-04-29 17:53:11 +00002073 else if (!Sym->isUndefined() && (!Sym->isVariable() || !allow_redef))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002074 return Error(EqualLoc, "redefinition of '" + Name + "'");
2075 else if (!Sym->isVariable())
2076 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00002077 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002078 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
2079 Name + "'");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002080
2081 // Don't count these checks as uses.
2082 Sym->setUsed(false);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002083 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00002084 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002085
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002086 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00002087
2088 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00002089 Out.EmitAssignment(Sym, Value);
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00002090 if (NoDeadStrip)
2091 Out.EmitSymbolAttribute(Sym, MCSA_NoDeadStrip);
2092
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002093
2094 return false;
2095}
2096
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002097/// parseIdentifier:
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002098/// ::= identifier
2099/// ::= string
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002100bool AsmParser::parseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00002101 // The assembler has relaxed rules for accepting identifiers, in particular we
2102 // allow things like '.globl $foo', which would normally be separate
2103 // tokens. At this level, we have already lexed so we cannot (currently)
2104 // handle this as a context dependent token, instead we detect adjacent tokens
2105 // and return the combined identifier.
2106 if (Lexer.is(AsmToken::Dollar)) {
2107 SMLoc DollarLoc = getLexer().getLoc();
2108
2109 // Consume the dollar sign, and check for a following identifier.
2110 Lex();
2111 if (Lexer.isNot(AsmToken::Identifier))
2112 return true;
2113
2114 // We have a '$' followed by an identifier, make sure they are adjacent.
2115 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
2116 return true;
2117
2118 // Construct the joined identifier and consume the token.
2119 Res = StringRef(DollarLoc.getPointer(),
2120 getTok().getIdentifier().size() + 1);
2121 Lex();
2122 return false;
2123 }
2124
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002125 if (Lexer.isNot(AsmToken::Identifier) &&
2126 Lexer.isNot(AsmToken::String))
2127 return true;
2128
Sean Callanan18b83232010-01-19 21:44:56 +00002129 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002130
Sean Callanan79ed1a82010-01-19 20:22:31 +00002131 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002132
2133 return false;
2134}
2135
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002136/// ParseDirectiveSet:
Nico Weber4c4c7322011-01-28 03:04:41 +00002137/// ::= .equ identifier ',' expression
2138/// ::= .equiv identifier ',' expression
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002139/// ::= .set identifier ',' expression
Nico Weber4c4c7322011-01-28 03:04:41 +00002140bool AsmParser::ParseDirectiveSet(StringRef IDVal, bool allow_redef) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002141 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002142
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002143 if (parseIdentifier(Name))
Roman Divackyf9d17522010-10-28 16:57:58 +00002144 return TokError("expected identifier after '" + Twine(IDVal) + "'");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002145
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002146 if (getLexer().isNot(AsmToken::Comma))
Roman Divackyf9d17522010-10-28 16:57:58 +00002147 return TokError("unexpected token in '" + Twine(IDVal) + "'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002148 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002149
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00002150 return ParseAssignment(Name, allow_redef, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002151}
2152
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002153bool AsmParser::parseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002154 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002155
2156 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00002157 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002158 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
2159 if (Str[i] != '\\') {
2160 Data += Str[i];
2161 continue;
2162 }
2163
2164 // Recognize escaped characters. Note that this escape semantics currently
2165 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
2166 ++i;
2167 if (i == e)
2168 return TokError("unexpected backslash at end of string");
2169
2170 // Recognize octal sequences.
2171 if ((unsigned) (Str[i] - '0') <= 7) {
2172 // Consume up to three octal characters.
2173 unsigned Value = Str[i] - '0';
2174
2175 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
2176 ++i;
2177 Value = Value * 8 + (Str[i] - '0');
2178
2179 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
2180 ++i;
2181 Value = Value * 8 + (Str[i] - '0');
2182 }
2183 }
2184
2185 if (Value > 255)
2186 return TokError("invalid octal escape sequence (out of range)");
2187
2188 Data += (unsigned char) Value;
2189 continue;
2190 }
2191
2192 // Otherwise recognize individual escapes.
2193 switch (Str[i]) {
2194 default:
2195 // Just reject invalid escape sequences for now.
2196 return TokError("invalid escape sequence (unrecognized character)");
2197
2198 case 'b': Data += '\b'; break;
2199 case 'f': Data += '\f'; break;
2200 case 'n': Data += '\n'; break;
2201 case 'r': Data += '\r'; break;
2202 case 't': Data += '\t'; break;
2203 case '"': Data += '"'; break;
2204 case '\\': Data += '\\'; break;
2205 }
2206 }
2207
2208 return false;
2209}
2210
Daniel Dunbara0d14262009-06-24 23:30:00 +00002211/// ParseDirectiveAscii:
Rafael Espindola787c3372010-10-28 20:02:27 +00002212/// ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
2213bool AsmParser::ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002214 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002215 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002216
Daniel Dunbara0d14262009-06-24 23:30:00 +00002217 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002218 if (getLexer().isNot(AsmToken::String))
Rafael Espindola787c3372010-10-28 20:02:27 +00002219 return TokError("expected string in '" + Twine(IDVal) + "' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002220
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002221 std::string Data;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002222 if (parseEscapedString(Data))
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002223 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002224
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002225 getStreamer().EmitBytes(Data);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002226 if (ZeroTerminated)
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002227 getStreamer().EmitBytes(StringRef("\0", 1));
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002228
Sean Callanan79ed1a82010-01-19 20:22:31 +00002229 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002230
2231 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002232 break;
2233
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002234 if (getLexer().isNot(AsmToken::Comma))
Rafael Espindola787c3372010-10-28 20:02:27 +00002235 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002236 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002237 }
2238 }
2239
Sean Callanan79ed1a82010-01-19 20:22:31 +00002240 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002241 return false;
2242}
2243
2244/// ParseDirectiveValue
2245/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
2246bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002247 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002248 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002249
Daniel Dunbara0d14262009-06-24 23:30:00 +00002250 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00002251 const MCExpr *Value;
Jim Grosbach254cf032011-06-29 16:05:14 +00002252 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002253 if (parseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002254 return true;
2255
Daniel Dunbar414c0c42010-05-23 18:36:38 +00002256 // Special case constant expressions to match code generator.
Jim Grosbach254cf032011-06-29 16:05:14 +00002257 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2258 assert(Size <= 8 && "Invalid size");
2259 uint64_t IntValue = MCE->getValue();
2260 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2261 return Error(ExprLoc, "literal value out of range for directive");
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002262 getStreamer().EmitIntValue(IntValue, Size);
Jim Grosbach254cf032011-06-29 16:05:14 +00002263 } else
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002264 getStreamer().EmitValue(Value, Size);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002265
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002266 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002267 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002268
Daniel Dunbara0d14262009-06-24 23:30:00 +00002269 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002270 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002271 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002272 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002273 }
2274 }
2275
Sean Callanan79ed1a82010-01-19 20:22:31 +00002276 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002277 return false;
2278}
2279
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002280/// ParseDirectiveRealValue
2281/// ::= (.single | .double) [ expression (, expression)* ]
2282bool AsmParser::ParseDirectiveRealValue(const fltSemantics &Semantics) {
2283 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002284 checkForValidSection();
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002285
2286 for (;;) {
2287 // We don't truly support arithmetic on floating point expressions, so we
2288 // have to manually parse unary prefixes.
2289 bool IsNeg = false;
2290 if (getLexer().is(AsmToken::Minus)) {
2291 Lex();
2292 IsNeg = true;
2293 } else if (getLexer().is(AsmToken::Plus))
2294 Lex();
2295
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002296 if (getLexer().isNot(AsmToken::Integer) &&
Kevin Enderby360d8d72011-03-29 21:11:52 +00002297 getLexer().isNot(AsmToken::Real) &&
2298 getLexer().isNot(AsmToken::Identifier))
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002299 return TokError("unexpected token in directive");
2300
2301 // Convert to an APFloat.
2302 APFloat Value(Semantics);
Kevin Enderby360d8d72011-03-29 21:11:52 +00002303 StringRef IDVal = getTok().getString();
2304 if (getLexer().is(AsmToken::Identifier)) {
2305 if (!IDVal.compare_lower("infinity") || !IDVal.compare_lower("inf"))
2306 Value = APFloat::getInf(Semantics);
2307 else if (!IDVal.compare_lower("nan"))
2308 Value = APFloat::getNaN(Semantics, false, ~0);
2309 else
2310 return TokError("invalid floating point literal");
2311 } else if (Value.convertFromString(IDVal, APFloat::rmNearestTiesToEven) ==
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002312 APFloat::opInvalidOp)
2313 return TokError("invalid floating point literal");
2314 if (IsNeg)
2315 Value.changeSign();
2316
2317 // Consume the numeric token.
2318 Lex();
2319
2320 // Emit the value as an integer.
2321 APInt AsInt = Value.bitcastToAPInt();
2322 getStreamer().EmitIntValue(AsInt.getLimitedValue(),
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002323 AsInt.getBitWidth() / 8);
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002324
2325 if (getLexer().is(AsmToken::EndOfStatement))
2326 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002327
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002328 if (getLexer().isNot(AsmToken::Comma))
2329 return TokError("unexpected token in directive");
2330 Lex();
2331 }
2332 }
2333
2334 Lex();
2335 return false;
2336}
2337
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002338/// ParseDirectiveZero
2339/// ::= .zero expression
2340bool AsmParser::ParseDirectiveZero() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002341 checkForValidSection();
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002342
2343 int64_t NumBytes;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002344 if (parseAbsoluteExpression(NumBytes))
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002345 return true;
2346
Rafael Espindolae452b172010-10-05 19:42:57 +00002347 int64_t Val = 0;
2348 if (getLexer().is(AsmToken::Comma)) {
2349 Lex();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002350 if (parseAbsoluteExpression(Val))
Rafael Espindolae452b172010-10-05 19:42:57 +00002351 return true;
2352 }
2353
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002354 if (getLexer().isNot(AsmToken::EndOfStatement))
2355 return TokError("unexpected token in '.zero' directive");
2356
2357 Lex();
2358
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002359 getStreamer().EmitFill(NumBytes, Val);
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002360
2361 return false;
2362}
2363
Daniel Dunbara0d14262009-06-24 23:30:00 +00002364/// ParseDirectiveFill
2365/// ::= .fill expression , expression , expression
2366bool AsmParser::ParseDirectiveFill() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002367 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002368
Daniel Dunbara0d14262009-06-24 23:30:00 +00002369 int64_t NumValues;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002370 if (parseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002371 return true;
2372
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002373 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002374 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002375 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002376
Daniel Dunbara0d14262009-06-24 23:30:00 +00002377 int64_t FillSize;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002378 if (parseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002379 return true;
2380
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002381 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002382 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002383 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002384
Daniel Dunbara0d14262009-06-24 23:30:00 +00002385 int64_t FillExpr;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002386 if (parseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002387 return true;
2388
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002389 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002390 return TokError("unexpected token in '.fill' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002391
Sean Callanan79ed1a82010-01-19 20:22:31 +00002392 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002393
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00002394 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
2395 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00002396
2397 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002398 getStreamer().EmitIntValue(FillExpr, FillSize);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002399
2400 return false;
2401}
Daniel Dunbarc238b582009-06-25 22:44:51 +00002402
2403/// ParseDirectiveOrg
2404/// ::= .org expression [ , expression ]
2405bool AsmParser::ParseDirectiveOrg() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002406 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002407
Daniel Dunbar821e3332009-08-31 08:09:28 +00002408 const MCExpr *Offset;
Jim Grosbachebd4c052012-01-27 00:37:08 +00002409 SMLoc Loc = getTok().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002410 if (parseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002411 return true;
2412
2413 // Parse optional fill expression.
2414 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002415 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2416 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002417 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002418 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002419
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002420 if (parseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002421 return true;
2422
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002423 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002424 return TokError("unexpected token in '.org' directive");
2425 }
2426
Sean Callanan79ed1a82010-01-19 20:22:31 +00002427 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00002428
Jim Grosbachebd4c052012-01-27 00:37:08 +00002429 // Only limited forms of relocatable expressions are accepted here, it
2430 // has to be relative to the current section. The streamer will return
2431 // 'true' if the expression wasn't evaluatable.
2432 if (getStreamer().EmitValueToOffset(Offset, FillExpr))
2433 return Error(Loc, "expected assembly-time absolute expression");
Daniel Dunbarc238b582009-06-25 22:44:51 +00002434
2435 return false;
2436}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002437
2438/// ParseDirectiveAlign
2439/// ::= {.align, ...} expression [ , expression [ , expression ]]
2440bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002441 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002442
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002443 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002444 int64_t Alignment;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002445 if (parseAbsoluteExpression(Alignment))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002446 return true;
2447
2448 SMLoc MaxBytesLoc;
2449 bool HasFillExpr = false;
2450 int64_t FillExpr = 0;
2451 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002452 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2453 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002454 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002455 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002456
2457 // The fill expression can be omitted while specifying a maximum number of
2458 // alignment bytes, e.g:
2459 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002460 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002461 HasFillExpr = true;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002462 if (parseAbsoluteExpression(FillExpr))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002463 return true;
2464 }
2465
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002466 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2467 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002468 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002469 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002470
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002471 MaxBytesLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002472 if (parseAbsoluteExpression(MaxBytesToFill))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002473 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002474
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002475 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002476 return TokError("unexpected token in directive");
2477 }
2478 }
2479
Sean Callanan79ed1a82010-01-19 20:22:31 +00002480 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002481
Daniel Dunbar648ac512010-05-17 21:54:30 +00002482 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002483 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002484
2485 // Compute alignment in bytes.
2486 if (IsPow2) {
2487 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002488 if (Alignment >= 32) {
2489 Error(AlignmentLoc, "invalid alignment value");
2490 Alignment = 31;
2491 }
2492
Benjamin Kramer12fd7672009-09-06 09:35:10 +00002493 Alignment = 1ULL << Alignment;
Benjamin Kramer8a89cf22013-02-16 15:00:16 +00002494 } else {
2495 // Reject alignments that aren't a power of two, for gas compatibility.
2496 if (!isPowerOf2_64(Alignment))
2497 Error(AlignmentLoc, "alignment must be a power of 2");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002498 }
2499
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002500 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002501 if (MaxBytesLoc.isValid()) {
2502 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002503 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
2504 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00002505 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002506 }
2507
2508 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00002509 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
2510 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002511 MaxBytesToFill = 0;
2512 }
2513 }
2514
Daniel Dunbar648ac512010-05-17 21:54:30 +00002515 // Check whether we should use optimal code alignment for this .align
2516 // directive.
Peter Collingbournedf39be62013-04-17 21:18:16 +00002517 bool UseCodeAlign = getStreamer().getCurrentSection().first->UseCodeAlign();
Daniel Dunbar648ac512010-05-17 21:54:30 +00002518 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
2519 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002520 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002521 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00002522 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00002523 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
2524 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002525 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002526
2527 return false;
2528}
2529
Eli Bendersky6ee13082013-01-15 22:59:42 +00002530/// ParseDirectiveFile
2531/// ::= .file [number] filename
2532/// ::= .file number directory filename
2533bool AsmParser::ParseDirectiveFile(SMLoc DirectiveLoc) {
2534 // FIXME: I'm not sure what this is.
2535 int64_t FileNumber = -1;
2536 SMLoc FileNumberLoc = getLexer().getLoc();
2537 if (getLexer().is(AsmToken::Integer)) {
2538 FileNumber = getTok().getIntVal();
2539 Lex();
2540
2541 if (FileNumber < 1)
2542 return TokError("file number less than one");
2543 }
2544
2545 if (getLexer().isNot(AsmToken::String))
2546 return TokError("unexpected token in '.file' directive");
2547
2548 // Usually the directory and filename together, otherwise just the directory.
2549 StringRef Path = getTok().getString();
2550 Path = Path.substr(1, Path.size()-2);
2551 Lex();
2552
2553 StringRef Directory;
2554 StringRef Filename;
2555 if (getLexer().is(AsmToken::String)) {
2556 if (FileNumber == -1)
2557 return TokError("explicit path specified, but no file number");
2558 Filename = getTok().getString();
2559 Filename = Filename.substr(1, Filename.size()-2);
2560 Directory = Path;
2561 Lex();
2562 } else {
2563 Filename = Path;
2564 }
2565
2566 if (getLexer().isNot(AsmToken::EndOfStatement))
2567 return TokError("unexpected token in '.file' directive");
2568
2569 if (FileNumber == -1)
2570 getStreamer().EmitFileDirective(Filename);
2571 else {
2572 if (getContext().getGenDwarfForAssembly() == true)
2573 Error(DirectiveLoc, "input can't have .file dwarf directives when -g is "
2574 "used to generate dwarf debug info for assembly code");
2575
2576 if (getStreamer().EmitDwarfFileDirective(FileNumber, Directory, Filename))
2577 Error(FileNumberLoc, "file number already allocated");
2578 }
2579
2580 return false;
2581}
2582
2583/// ParseDirectiveLine
2584/// ::= .line [number]
2585bool AsmParser::ParseDirectiveLine() {
2586 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2587 if (getLexer().isNot(AsmToken::Integer))
2588 return TokError("unexpected token in '.line' directive");
2589
2590 int64_t LineNumber = getTok().getIntVal();
2591 (void) LineNumber;
2592 Lex();
2593
2594 // FIXME: Do something with the .line.
2595 }
2596
2597 if (getLexer().isNot(AsmToken::EndOfStatement))
2598 return TokError("unexpected token in '.line' directive");
2599
2600 return false;
2601}
2602
2603/// ParseDirectiveLoc
2604/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
2605/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2606/// The first number is a file number, must have been previously assigned with
2607/// a .file directive, the second number is the line number and optionally the
2608/// third number is a column position (zero if not specified). The remaining
2609/// optional items are .loc sub-directives.
2610bool AsmParser::ParseDirectiveLoc() {
2611 if (getLexer().isNot(AsmToken::Integer))
2612 return TokError("unexpected token in '.loc' directive");
2613 int64_t FileNumber = getTok().getIntVal();
2614 if (FileNumber < 1)
2615 return TokError("file number less than one in '.loc' directive");
2616 if (!getContext().isValidDwarfFileNumber(FileNumber))
2617 return TokError("unassigned file number in '.loc' directive");
2618 Lex();
2619
2620 int64_t LineNumber = 0;
2621 if (getLexer().is(AsmToken::Integer)) {
2622 LineNumber = getTok().getIntVal();
2623 if (LineNumber < 1)
2624 return TokError("line number less than one in '.loc' directive");
2625 Lex();
2626 }
2627
2628 int64_t ColumnPos = 0;
2629 if (getLexer().is(AsmToken::Integer)) {
2630 ColumnPos = getTok().getIntVal();
2631 if (ColumnPos < 0)
2632 return TokError("column position less than zero in '.loc' directive");
2633 Lex();
2634 }
2635
2636 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
2637 unsigned Isa = 0;
2638 int64_t Discriminator = 0;
2639 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2640 for (;;) {
2641 if (getLexer().is(AsmToken::EndOfStatement))
2642 break;
2643
2644 StringRef Name;
2645 SMLoc Loc = getTok().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002646 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002647 return TokError("unexpected token in '.loc' directive");
2648
2649 if (Name == "basic_block")
2650 Flags |= DWARF2_FLAG_BASIC_BLOCK;
2651 else if (Name == "prologue_end")
2652 Flags |= DWARF2_FLAG_PROLOGUE_END;
2653 else if (Name == "epilogue_begin")
2654 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2655 else if (Name == "is_stmt") {
2656 Loc = getTok().getLoc();
2657 const MCExpr *Value;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002658 if (parseExpression(Value))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002659 return true;
2660 // The expression must be the constant 0 or 1.
2661 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2662 int Value = MCE->getValue();
2663 if (Value == 0)
2664 Flags &= ~DWARF2_FLAG_IS_STMT;
2665 else if (Value == 1)
2666 Flags |= DWARF2_FLAG_IS_STMT;
2667 else
2668 return Error(Loc, "is_stmt value not 0 or 1");
Craig Topperefa703d2013-04-22 04:22:40 +00002669 } else {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002670 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2671 }
Craig Topperefa703d2013-04-22 04:22:40 +00002672 } else if (Name == "isa") {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002673 Loc = getTok().getLoc();
2674 const MCExpr *Value;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002675 if (parseExpression(Value))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002676 return true;
2677 // The expression must be a constant greater or equal to 0.
2678 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2679 int Value = MCE->getValue();
2680 if (Value < 0)
2681 return Error(Loc, "isa number less than zero");
2682 Isa = Value;
Craig Topperefa703d2013-04-22 04:22:40 +00002683 } else {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002684 return Error(Loc, "isa number not a constant value");
2685 }
Craig Topperefa703d2013-04-22 04:22:40 +00002686 } else if (Name == "discriminator") {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002687 if (parseAbsoluteExpression(Discriminator))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002688 return true;
Craig Topperefa703d2013-04-22 04:22:40 +00002689 } else {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002690 return Error(Loc, "unknown sub-directive in '.loc' directive");
2691 }
2692
2693 if (getLexer().is(AsmToken::EndOfStatement))
2694 break;
2695 }
2696 }
2697
2698 getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,
2699 Isa, Discriminator, StringRef());
2700
2701 return false;
2702}
2703
2704/// ParseDirectiveStabs
2705/// ::= .stabs string, number, number, number
2706bool AsmParser::ParseDirectiveStabs() {
2707 return TokError("unsupported directive '.stabs'");
2708}
2709
2710/// ParseDirectiveCFISections
2711/// ::= .cfi_sections section [, section]
2712bool AsmParser::ParseDirectiveCFISections() {
2713 StringRef Name;
2714 bool EH = false;
2715 bool Debug = false;
2716
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002717 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002718 return TokError("Expected an identifier");
2719
2720 if (Name == ".eh_frame")
2721 EH = true;
2722 else if (Name == ".debug_frame")
2723 Debug = true;
2724
2725 if (getLexer().is(AsmToken::Comma)) {
2726 Lex();
2727
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002728 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002729 return TokError("Expected an identifier");
2730
2731 if (Name == ".eh_frame")
2732 EH = true;
2733 else if (Name == ".debug_frame")
2734 Debug = true;
2735 }
2736
2737 getStreamer().EmitCFISections(EH, Debug);
2738 return false;
2739}
2740
2741/// ParseDirectiveCFIStartProc
2742/// ::= .cfi_startproc
2743bool AsmParser::ParseDirectiveCFIStartProc() {
2744 getStreamer().EmitCFIStartProc();
2745 return false;
2746}
2747
2748/// ParseDirectiveCFIEndProc
2749/// ::= .cfi_endproc
2750bool AsmParser::ParseDirectiveCFIEndProc() {
2751 getStreamer().EmitCFIEndProc();
2752 return false;
2753}
2754
2755/// ParseRegisterOrRegisterNumber - parse register name or number.
2756bool AsmParser::ParseRegisterOrRegisterNumber(int64_t &Register,
2757 SMLoc DirectiveLoc) {
2758 unsigned RegNo;
2759
2760 if (getLexer().isNot(AsmToken::Integer)) {
2761 if (getTargetParser().ParseRegister(RegNo, DirectiveLoc, DirectiveLoc))
2762 return true;
Bill Wendling99cb6222013-06-18 07:20:20 +00002763 Register = getContext().getRegisterInfo()->getDwarfRegNum(RegNo, true);
Eli Bendersky6ee13082013-01-15 22:59:42 +00002764 } else
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002765 return parseAbsoluteExpression(Register);
Eli Bendersky6ee13082013-01-15 22:59:42 +00002766
2767 return false;
2768}
2769
2770/// ParseDirectiveCFIDefCfa
2771/// ::= .cfi_def_cfa register, offset
2772bool AsmParser::ParseDirectiveCFIDefCfa(SMLoc DirectiveLoc) {
2773 int64_t Register = 0;
2774 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2775 return true;
2776
2777 if (getLexer().isNot(AsmToken::Comma))
2778 return TokError("unexpected token in directive");
2779 Lex();
2780
2781 int64_t Offset = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002782 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002783 return true;
2784
2785 getStreamer().EmitCFIDefCfa(Register, Offset);
2786 return false;
2787}
2788
2789/// ParseDirectiveCFIDefCfaOffset
2790/// ::= .cfi_def_cfa_offset offset
2791bool AsmParser::ParseDirectiveCFIDefCfaOffset() {
2792 int64_t Offset = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002793 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002794 return true;
2795
2796 getStreamer().EmitCFIDefCfaOffset(Offset);
2797 return false;
2798}
2799
2800/// ParseDirectiveCFIRegister
2801/// ::= .cfi_register register, register
2802bool AsmParser::ParseDirectiveCFIRegister(SMLoc DirectiveLoc) {
2803 int64_t Register1 = 0;
2804 if (ParseRegisterOrRegisterNumber(Register1, DirectiveLoc))
2805 return true;
2806
2807 if (getLexer().isNot(AsmToken::Comma))
2808 return TokError("unexpected token in directive");
2809 Lex();
2810
2811 int64_t Register2 = 0;
2812 if (ParseRegisterOrRegisterNumber(Register2, DirectiveLoc))
2813 return true;
2814
2815 getStreamer().EmitCFIRegister(Register1, Register2);
2816 return false;
2817}
2818
2819/// ParseDirectiveCFIAdjustCfaOffset
2820/// ::= .cfi_adjust_cfa_offset adjustment
2821bool AsmParser::ParseDirectiveCFIAdjustCfaOffset() {
2822 int64_t Adjustment = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002823 if (parseAbsoluteExpression(Adjustment))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002824 return true;
2825
2826 getStreamer().EmitCFIAdjustCfaOffset(Adjustment);
2827 return false;
2828}
2829
2830/// ParseDirectiveCFIDefCfaRegister
2831/// ::= .cfi_def_cfa_register register
2832bool AsmParser::ParseDirectiveCFIDefCfaRegister(SMLoc DirectiveLoc) {
2833 int64_t Register = 0;
2834 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2835 return true;
2836
2837 getStreamer().EmitCFIDefCfaRegister(Register);
2838 return false;
2839}
2840
2841/// ParseDirectiveCFIOffset
2842/// ::= .cfi_offset register, offset
2843bool AsmParser::ParseDirectiveCFIOffset(SMLoc DirectiveLoc) {
2844 int64_t Register = 0;
2845 int64_t Offset = 0;
2846
2847 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2848 return true;
2849
2850 if (getLexer().isNot(AsmToken::Comma))
2851 return TokError("unexpected token in directive");
2852 Lex();
2853
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002854 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002855 return true;
2856
2857 getStreamer().EmitCFIOffset(Register, Offset);
2858 return false;
2859}
2860
2861/// ParseDirectiveCFIRelOffset
2862/// ::= .cfi_rel_offset register, offset
2863bool AsmParser::ParseDirectiveCFIRelOffset(SMLoc DirectiveLoc) {
2864 int64_t Register = 0;
2865
2866 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2867 return true;
2868
2869 if (getLexer().isNot(AsmToken::Comma))
2870 return TokError("unexpected token in directive");
2871 Lex();
2872
2873 int64_t Offset = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002874 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002875 return true;
2876
2877 getStreamer().EmitCFIRelOffset(Register, Offset);
2878 return false;
2879}
2880
2881static bool isValidEncoding(int64_t Encoding) {
2882 if (Encoding & ~0xff)
2883 return false;
2884
2885 if (Encoding == dwarf::DW_EH_PE_omit)
2886 return true;
2887
2888 const unsigned Format = Encoding & 0xf;
2889 if (Format != dwarf::DW_EH_PE_absptr && Format != dwarf::DW_EH_PE_udata2 &&
2890 Format != dwarf::DW_EH_PE_udata4 && Format != dwarf::DW_EH_PE_udata8 &&
2891 Format != dwarf::DW_EH_PE_sdata2 && Format != dwarf::DW_EH_PE_sdata4 &&
2892 Format != dwarf::DW_EH_PE_sdata8 && Format != dwarf::DW_EH_PE_signed)
2893 return false;
2894
2895 const unsigned Application = Encoding & 0x70;
2896 if (Application != dwarf::DW_EH_PE_absptr &&
2897 Application != dwarf::DW_EH_PE_pcrel)
2898 return false;
2899
2900 return true;
2901}
2902
2903/// ParseDirectiveCFIPersonalityOrLsda
2904/// IsPersonality true for cfi_personality, false for cfi_lsda
2905/// ::= .cfi_personality encoding, [symbol_name]
2906/// ::= .cfi_lsda encoding, [symbol_name]
2907bool AsmParser::ParseDirectiveCFIPersonalityOrLsda(bool IsPersonality) {
2908 int64_t Encoding = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002909 if (parseAbsoluteExpression(Encoding))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002910 return true;
2911 if (Encoding == dwarf::DW_EH_PE_omit)
2912 return false;
2913
2914 if (!isValidEncoding(Encoding))
2915 return TokError("unsupported encoding.");
2916
2917 if (getLexer().isNot(AsmToken::Comma))
2918 return TokError("unexpected token in directive");
2919 Lex();
2920
2921 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002922 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002923 return TokError("expected identifier in directive");
2924
2925 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
2926
2927 if (IsPersonality)
2928 getStreamer().EmitCFIPersonality(Sym, Encoding);
2929 else
2930 getStreamer().EmitCFILsda(Sym, Encoding);
2931 return false;
2932}
2933
2934/// ParseDirectiveCFIRememberState
2935/// ::= .cfi_remember_state
2936bool AsmParser::ParseDirectiveCFIRememberState() {
2937 getStreamer().EmitCFIRememberState();
2938 return false;
2939}
2940
2941/// ParseDirectiveCFIRestoreState
2942/// ::= .cfi_remember_state
2943bool AsmParser::ParseDirectiveCFIRestoreState() {
2944 getStreamer().EmitCFIRestoreState();
2945 return false;
2946}
2947
2948/// ParseDirectiveCFISameValue
2949/// ::= .cfi_same_value register
2950bool AsmParser::ParseDirectiveCFISameValue(SMLoc DirectiveLoc) {
2951 int64_t Register = 0;
2952
2953 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2954 return true;
2955
2956 getStreamer().EmitCFISameValue(Register);
2957 return false;
2958}
2959
2960/// ParseDirectiveCFIRestore
2961/// ::= .cfi_restore register
2962bool AsmParser::ParseDirectiveCFIRestore(SMLoc DirectiveLoc) {
2963 int64_t Register = 0;
2964 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2965 return true;
2966
2967 getStreamer().EmitCFIRestore(Register);
2968 return false;
2969}
2970
2971/// ParseDirectiveCFIEscape
2972/// ::= .cfi_escape expression[,...]
2973bool AsmParser::ParseDirectiveCFIEscape() {
2974 std::string Values;
2975 int64_t CurrValue;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002976 if (parseAbsoluteExpression(CurrValue))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002977 return true;
2978
2979 Values.push_back((uint8_t)CurrValue);
2980
2981 while (getLexer().is(AsmToken::Comma)) {
2982 Lex();
2983
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002984 if (parseAbsoluteExpression(CurrValue))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002985 return true;
2986
2987 Values.push_back((uint8_t)CurrValue);
2988 }
2989
2990 getStreamer().EmitCFIEscape(Values);
2991 return false;
2992}
2993
2994/// ParseDirectiveCFISignalFrame
2995/// ::= .cfi_signal_frame
2996bool AsmParser::ParseDirectiveCFISignalFrame() {
2997 if (getLexer().isNot(AsmToken::EndOfStatement))
2998 return Error(getLexer().getLoc(),
2999 "unexpected token in '.cfi_signal_frame'");
3000
3001 getStreamer().EmitCFISignalFrame();
3002 return false;
3003}
3004
3005/// ParseDirectiveCFIUndefined
3006/// ::= .cfi_undefined register
3007bool AsmParser::ParseDirectiveCFIUndefined(SMLoc DirectiveLoc) {
3008 int64_t Register = 0;
3009
3010 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
3011 return true;
3012
3013 getStreamer().EmitCFIUndefined(Register);
3014 return false;
3015}
3016
3017/// ParseDirectiveMacrosOnOff
3018/// ::= .macros_on
3019/// ::= .macros_off
3020bool AsmParser::ParseDirectiveMacrosOnOff(StringRef Directive) {
3021 if (getLexer().isNot(AsmToken::EndOfStatement))
3022 return Error(getLexer().getLoc(),
3023 "unexpected token in '" + Directive + "' directive");
3024
3025 SetMacrosEnabled(Directive == ".macros_on");
3026 return false;
3027}
3028
3029/// ParseDirectiveMacro
3030/// ::= .macro name [parameters]
3031bool AsmParser::ParseDirectiveMacro(SMLoc DirectiveLoc) {
3032 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003033 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003034 return TokError("expected identifier in '.macro' directive");
3035
3036 MCAsmMacroParameters Parameters;
3037 // Argument delimiter is initially unknown. It will be set by
3038 // ParseMacroArgument()
3039 AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
3040 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3041 for (;;) {
3042 MCAsmMacroParameter Parameter;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003043 if (parseIdentifier(Parameter.first))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003044 return TokError("expected identifier in '.macro' directive");
3045
3046 if (getLexer().is(AsmToken::Equal)) {
3047 Lex();
3048 if (ParseMacroArgument(Parameter.second, ArgumentDelimiter))
3049 return true;
3050 }
3051
3052 Parameters.push_back(Parameter);
3053
3054 if (getLexer().is(AsmToken::Comma))
3055 Lex();
3056 else if (getLexer().is(AsmToken::EndOfStatement))
3057 break;
3058 }
3059 }
3060
3061 // Eat the end of statement.
3062 Lex();
3063
3064 AsmToken EndToken, StartToken = getTok();
3065
3066 // Lex the macro definition.
3067 for (;;) {
3068 // Check whether we have reached the end of the file.
3069 if (getLexer().is(AsmToken::Eof))
3070 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
3071
3072 // Otherwise, check whether we have reach the .endmacro.
3073 if (getLexer().is(AsmToken::Identifier) &&
3074 (getTok().getIdentifier() == ".endm" ||
3075 getTok().getIdentifier() == ".endmacro")) {
3076 EndToken = getTok();
3077 Lex();
3078 if (getLexer().isNot(AsmToken::EndOfStatement))
3079 return TokError("unexpected token in '" + EndToken.getIdentifier() +
3080 "' directive");
3081 break;
3082 }
3083
3084 // Otherwise, scan til the end of the statement.
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003085 eatToEndOfStatement();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003086 }
3087
3088 if (LookupMacro(Name)) {
3089 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
3090 }
3091
3092 const char *BodyStart = StartToken.getLoc().getPointer();
3093 const char *BodyEnd = EndToken.getLoc().getPointer();
3094 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
Kevin Enderby221514e2013-01-22 21:44:53 +00003095 CheckForBadMacro(DirectiveLoc, Name, Body, Parameters);
Eli Bendersky6ee13082013-01-15 22:59:42 +00003096 DefineMacro(Name, MCAsmMacro(Name, Body, Parameters));
3097 return false;
3098}
3099
Kevin Enderby221514e2013-01-22 21:44:53 +00003100/// CheckForBadMacro
3101///
3102/// With the support added for named parameters there may be code out there that
3103/// is transitioning from positional parameters. In versions of gas that did
3104/// not support named parameters they would be ignored on the macro defintion.
3105/// But to support both styles of parameters this is not possible so if a macro
3106/// defintion has named parameters but does not use them and has what appears
3107/// to be positional parameters, strings like $1, $2, ... and $n, then issue a
3108/// warning that the positional parameter found in body which have no effect.
3109/// Hoping the developer will either remove the named parameters from the macro
3110/// definiton so the positional parameters get used if that was what was
3111/// intended or change the macro to use the named parameters. It is possible
3112/// this warning will trigger when the none of the named parameters are used
3113/// and the strings like $1 are infact to simply to be passed trough unchanged.
3114void AsmParser::CheckForBadMacro(SMLoc DirectiveLoc, StringRef Name,
3115 StringRef Body,
3116 MCAsmMacroParameters Parameters) {
3117 // If this macro is not defined with named parameters the warning we are
3118 // checking for here doesn't apply.
3119 unsigned NParameters = Parameters.size();
3120 if (NParameters == 0)
3121 return;
3122
3123 bool NamedParametersFound = false;
3124 bool PositionalParametersFound = false;
3125
3126 // Look at the body of the macro for use of both the named parameters and what
3127 // are likely to be positional parameters. This is what expandMacro() is
3128 // doing when it finds the parameters in the body.
3129 while (!Body.empty()) {
3130 // Scan for the next possible parameter.
3131 std::size_t End = Body.size(), Pos = 0;
3132 for (; Pos != End; ++Pos) {
3133 // Check for a substitution or escape.
3134 // This macro is defined with parameters, look for \foo, \bar, etc.
3135 if (Body[Pos] == '\\' && Pos + 1 != End)
3136 break;
3137
3138 // This macro should have parameters, but look for $0, $1, ..., $n too.
3139 if (Body[Pos] != '$' || Pos + 1 == End)
3140 continue;
3141 char Next = Body[Pos + 1];
Guy Benyei87d0b9e2013-02-12 21:21:59 +00003142 if (Next == '$' || Next == 'n' ||
3143 isdigit(static_cast<unsigned char>(Next)))
Kevin Enderby221514e2013-01-22 21:44:53 +00003144 break;
3145 }
3146
3147 // Check if we reached the end.
3148 if (Pos == End)
3149 break;
3150
3151 if (Body[Pos] == '$') {
3152 switch (Body[Pos+1]) {
3153 // $$ => $
3154 case '$':
3155 break;
3156
3157 // $n => number of arguments
3158 case 'n':
3159 PositionalParametersFound = true;
3160 break;
3161
3162 // $[0-9] => argument
3163 default: {
3164 PositionalParametersFound = true;
3165 break;
3166 }
3167 }
3168 Pos += 2;
3169 } else {
3170 unsigned I = Pos + 1;
3171 while (isIdentifierChar(Body[I]) && I + 1 != End)
3172 ++I;
3173
3174 const char *Begin = Body.data() + Pos +1;
3175 StringRef Argument(Begin, I - (Pos +1));
3176 unsigned Index = 0;
3177 for (; Index < NParameters; ++Index)
3178 if (Parameters[Index].first == Argument)
3179 break;
3180
3181 if (Index == NParameters) {
3182 if (Body[Pos+1] == '(' && Body[Pos+2] == ')')
3183 Pos += 3;
3184 else {
3185 Pos = I;
3186 }
3187 } else {
3188 NamedParametersFound = true;
3189 Pos += 1 + Argument.size();
3190 }
3191 }
3192 // Update the scan point.
3193 Body = Body.substr(Pos);
3194 }
3195
3196 if (!NamedParametersFound && PositionalParametersFound)
3197 Warning(DirectiveLoc, "macro defined with named parameters which are not "
3198 "used in macro body, possible positional parameter "
3199 "found in body which will have no effect");
3200}
3201
Eli Bendersky6ee13082013-01-15 22:59:42 +00003202/// ParseDirectiveEndMacro
3203/// ::= .endm
3204/// ::= .endmacro
3205bool AsmParser::ParseDirectiveEndMacro(StringRef Directive) {
3206 if (getLexer().isNot(AsmToken::EndOfStatement))
3207 return TokError("unexpected token in '" + Directive + "' directive");
3208
3209 // If we are inside a macro instantiation, terminate the current
3210 // instantiation.
3211 if (InsideMacroInstantiation()) {
3212 HandleMacroExit();
3213 return false;
3214 }
3215
3216 // Otherwise, this .endmacro is a stray entry in the file; well formed
3217 // .endmacro directives are handled during the macro definition parsing.
3218 return TokError("unexpected '" + Directive + "' in file, "
3219 "no current macro definition");
3220}
3221
3222/// ParseDirectivePurgeMacro
3223/// ::= .purgem
3224bool AsmParser::ParseDirectivePurgeMacro(SMLoc DirectiveLoc) {
3225 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003226 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003227 return TokError("expected identifier in '.purgem' directive");
3228
3229 if (getLexer().isNot(AsmToken::EndOfStatement))
3230 return TokError("unexpected token in '.purgem' directive");
3231
3232 if (!LookupMacro(Name))
3233 return Error(DirectiveLoc, "macro '" + Name + "' is not defined");
3234
3235 UndefineMacro(Name);
3236 return false;
3237}
Eli Bendersky4766ef42012-12-20 19:05:53 +00003238
3239/// ParseDirectiveBundleAlignMode
3240/// ::= {.bundle_align_mode} expression
3241bool AsmParser::ParseDirectiveBundleAlignMode() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003242 checkForValidSection();
Eli Bendersky4766ef42012-12-20 19:05:53 +00003243
3244 // Expect a single argument: an expression that evaluates to a constant
3245 // in the inclusive range 0-30.
3246 SMLoc ExprLoc = getLexer().getLoc();
3247 int64_t AlignSizePow2;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003248 if (parseAbsoluteExpression(AlignSizePow2))
Eli Bendersky4766ef42012-12-20 19:05:53 +00003249 return true;
3250 else if (getLexer().isNot(AsmToken::EndOfStatement))
3251 return TokError("unexpected token after expression in"
3252 " '.bundle_align_mode' directive");
3253 else if (AlignSizePow2 < 0 || AlignSizePow2 > 30)
3254 return Error(ExprLoc,
3255 "invalid bundle alignment size (expected between 0 and 30)");
3256
3257 Lex();
3258
3259 // Because of AlignSizePow2's verified range we can safely truncate it to
3260 // unsigned.
3261 getStreamer().EmitBundleAlignMode(static_cast<unsigned>(AlignSizePow2));
3262 return false;
3263}
3264
3265/// ParseDirectiveBundleLock
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003266/// ::= {.bundle_lock} [align_to_end]
Eli Bendersky4766ef42012-12-20 19:05:53 +00003267bool AsmParser::ParseDirectiveBundleLock() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003268 checkForValidSection();
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003269 bool AlignToEnd = false;
Eli Bendersky4766ef42012-12-20 19:05:53 +00003270
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003271 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3272 StringRef Option;
3273 SMLoc Loc = getTok().getLoc();
3274 const char *kInvalidOptionError =
3275 "invalid option for '.bundle_lock' directive";
3276
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003277 if (parseIdentifier(Option))
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003278 return Error(Loc, kInvalidOptionError);
3279
3280 if (Option != "align_to_end")
3281 return Error(Loc, kInvalidOptionError);
3282 else if (getLexer().isNot(AsmToken::EndOfStatement))
3283 return Error(Loc,
3284 "unexpected token after '.bundle_lock' directive option");
3285 AlignToEnd = true;
3286 }
3287
Eli Bendersky4766ef42012-12-20 19:05:53 +00003288 Lex();
3289
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003290 getStreamer().EmitBundleLock(AlignToEnd);
Eli Bendersky4766ef42012-12-20 19:05:53 +00003291 return false;
3292}
3293
3294/// ParseDirectiveBundleLock
3295/// ::= {.bundle_lock}
3296bool AsmParser::ParseDirectiveBundleUnlock() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003297 checkForValidSection();
Eli Bendersky4766ef42012-12-20 19:05:53 +00003298
3299 if (getLexer().isNot(AsmToken::EndOfStatement))
3300 return TokError("unexpected token in '.bundle_unlock' directive");
3301 Lex();
3302
3303 getStreamer().EmitBundleUnlock();
3304 return false;
3305}
3306
Eli Bendersky6ee13082013-01-15 22:59:42 +00003307/// ParseDirectiveSpace
3308/// ::= (.skip | .space) expression [ , expression ]
3309bool AsmParser::ParseDirectiveSpace(StringRef IDVal) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003310 checkForValidSection();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003311
3312 int64_t NumBytes;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003313 if (parseAbsoluteExpression(NumBytes))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003314 return true;
3315
3316 int64_t FillExpr = 0;
3317 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3318 if (getLexer().isNot(AsmToken::Comma))
3319 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
3320 Lex();
3321
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003322 if (parseAbsoluteExpression(FillExpr))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003323 return true;
3324
3325 if (getLexer().isNot(AsmToken::EndOfStatement))
3326 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
3327 }
3328
3329 Lex();
3330
3331 if (NumBytes <= 0)
3332 return TokError("invalid number of bytes in '" +
3333 Twine(IDVal) + "' directive");
3334
3335 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00003336 getStreamer().EmitFill(NumBytes, FillExpr);
Eli Bendersky6ee13082013-01-15 22:59:42 +00003337
3338 return false;
3339}
3340
3341/// ParseDirectiveLEB128
3342/// ::= (.sleb128 | .uleb128) expression
3343bool AsmParser::ParseDirectiveLEB128(bool Signed) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003344 checkForValidSection();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003345 const MCExpr *Value;
3346
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003347 if (parseExpression(Value))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003348 return true;
3349
3350 if (getLexer().isNot(AsmToken::EndOfStatement))
3351 return TokError("unexpected token in directive");
3352
3353 if (Signed)
3354 getStreamer().EmitSLEB128Value(Value);
3355 else
3356 getStreamer().EmitULEB128Value(Value);
3357
3358 return false;
3359}
3360
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003361/// ParseDirectiveSymbolAttribute
3362/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00003363bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003364 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003365 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00003366 StringRef Name;
Jim Grosbach10ec6502011-09-15 17:56:49 +00003367 SMLoc Loc = getTok().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00003368
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003369 if (parseIdentifier(Name))
Jim Grosbach10ec6502011-09-15 17:56:49 +00003370 return Error(Loc, "expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003371
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00003372 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003373
Jim Grosbach10ec6502011-09-15 17:56:49 +00003374 // Assembler local symbols don't make any sense here. Complain loudly.
3375 if (Sym->isTemporary())
3376 return Error(Loc, "non-local symbol required in directive");
3377
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +00003378 if (!getStreamer().EmitSymbolAttribute(Sym, Attr))
3379 return Error(Loc, "unable to emit symbol attribute");
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003380
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003381 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003382 break;
3383
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003384 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003385 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00003386 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003387 }
3388 }
3389
Sean Callanan79ed1a82010-01-19 20:22:31 +00003390 Lex();
Jan Wen Vounga854a4b2010-09-30 01:09:20 +00003391 return false;
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003392}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003393
3394/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00003395/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
3396bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003397 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00003398
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003399 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00003400 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003401 if (parseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003402 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003403
Daniel Dunbar76c4d762009-07-31 21:55:09 +00003404 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00003405 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003406
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003407 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003408 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00003409 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003410
3411 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003412 SMLoc SizeLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003413 if (parseAbsoluteExpression(Size))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003414 return true;
3415
3416 int64_t Pow2Alignment = 0;
3417 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003418 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00003419 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003420 Pow2AlignmentLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003421 if (parseAbsoluteExpression(Pow2Alignment))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003422 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003423
Benjamin Kramera9e37c52012-09-07 21:08:01 +00003424 LCOMM::LCOMMType LCOMM = Lexer.getMAI().getLCOMMDirectiveAlignmentType();
3425 if (IsLocal && LCOMM == LCOMM::NoAlignment)
Benjamin Kramer39646d92012-09-07 17:25:13 +00003426 return Error(Pow2AlignmentLoc, "alignment not supported on this target");
3427
Chris Lattner258281d2010-01-19 06:22:22 +00003428 // If this target takes alignments in bytes (not log) validate and convert.
Benjamin Kramera9e37c52012-09-07 21:08:01 +00003429 if ((!IsLocal && Lexer.getMAI().getCOMMDirectiveAlignmentIsInBytes()) ||
3430 (IsLocal && LCOMM == LCOMM::ByteAlignment)) {
Chris Lattner258281d2010-01-19 06:22:22 +00003431 if (!isPowerOf2_64(Pow2Alignment))
3432 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
3433 Pow2Alignment = Log2_64(Pow2Alignment);
3434 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003435 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003436
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003437 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00003438 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003439
Sean Callanan79ed1a82010-01-19 20:22:31 +00003440 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003441
Chris Lattner1fc3d752009-07-09 17:25:12 +00003442 // NOTE: a size of zero for a .comm should create a undefined symbol
3443 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003444 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00003445 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
3446 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003447
Eric Christopherc260a3e2010-05-14 01:38:54 +00003448 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003449 // may internally end up wanting an alignment in bytes.
3450 // FIXME: Diagnose overflow.
3451 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00003452 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
3453 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003454
Daniel Dunbar8906ff12009-08-22 07:22:36 +00003455 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003456 return Error(IDLoc, "invalid symbol redefinition");
3457
Chris Lattner1fc3d752009-07-09 17:25:12 +00003458 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00003459 if (IsLocal) {
Benjamin Kramer39646d92012-09-07 17:25:13 +00003460 getStreamer().EmitLocalCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00003461 return false;
3462 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003463
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003464 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003465 return false;
3466}
Chris Lattner9be3fee2009-07-10 22:20:30 +00003467
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003468/// ParseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00003469/// ::= .abort [... message ...]
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003470bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00003471 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003472 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00003473
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003474 StringRef Str = parseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003475 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003476 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00003477
Sean Callanan79ed1a82010-01-19 20:22:31 +00003478 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003479
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00003480 if (Str.empty())
3481 Error(Loc, ".abort detected. Assembly stopping.");
3482 else
3483 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00003484 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003485
3486 return false;
3487}
Kevin Enderby71148242009-07-14 21:35:03 +00003488
Kevin Enderby1f049b22009-07-14 23:21:55 +00003489/// ParseDirectiveInclude
3490/// ::= .include "filename"
3491bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003492 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00003493 return TokError("expected string in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003494
Sean Callanan18b83232010-01-19 21:44:56 +00003495 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003496 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00003497 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00003498
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003499 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00003500 return TokError("unexpected token in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003501
Chris Lattner8e25e2d2009-07-16 06:14:39 +00003502 // Strip the quotes.
3503 Filename = Filename.substr(1, Filename.size()-2);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003504
Chris Lattner8e25e2d2009-07-16 06:14:39 +00003505 // Attempt to switch the lexer to the included file before consuming the end
3506 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00003507 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00003508 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00003509 return true;
3510 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00003511
3512 return false;
3513}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00003514
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003515/// ParseDirectiveIncbin
3516/// ::= .incbin "filename"
3517bool AsmParser::ParseDirectiveIncbin() {
3518 if (getLexer().isNot(AsmToken::String))
3519 return TokError("expected string in '.incbin' directive");
3520
3521 std::string Filename = getTok().getString();
3522 SMLoc IncbinLoc = getLexer().getLoc();
3523 Lex();
3524
3525 if (getLexer().isNot(AsmToken::EndOfStatement))
3526 return TokError("unexpected token in '.incbin' directive");
3527
3528 // Strip the quotes.
3529 Filename = Filename.substr(1, Filename.size()-2);
3530
3531 // Attempt to process the included file.
3532 if (ProcessIncbinFile(Filename)) {
3533 Error(IncbinLoc, "Could not find incbin file '" + Filename + "'");
3534 return true;
3535 }
3536
3537 return false;
3538}
3539
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003540/// ParseDirectiveIf
3541/// ::= .if expression
3542bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003543 TheCondStack.push_back(TheCondState);
3544 TheCondState.TheCond = AsmCond::IfCond;
Benjamin Kramer29739e72012-05-12 16:52:21 +00003545 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003546 eatToEndOfStatement();
Benjamin Kramer29739e72012-05-12 16:52:21 +00003547 } else {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003548 int64_t ExprValue;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003549 if (parseAbsoluteExpression(ExprValue))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003550 return true;
3551
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003552 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003553 return TokError("unexpected token in '.if' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003554
Sean Callanan79ed1a82010-01-19 20:22:31 +00003555 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003556
3557 TheCondState.CondMet = ExprValue;
3558 TheCondState.Ignore = !TheCondState.CondMet;
3559 }
3560
3561 return false;
3562}
3563
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003564/// ParseDirectiveIfb
3565/// ::= .ifb string
3566bool AsmParser::ParseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank) {
3567 TheCondStack.push_back(TheCondState);
3568 TheCondState.TheCond = AsmCond::IfCond;
3569
Benjamin Kramer29739e72012-05-12 16:52:21 +00003570 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003571 eatToEndOfStatement();
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003572 } else {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003573 StringRef Str = parseStringToEndOfStatement();
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003574
3575 if (getLexer().isNot(AsmToken::EndOfStatement))
3576 return TokError("unexpected token in '.ifb' directive");
3577
3578 Lex();
3579
3580 TheCondState.CondMet = ExpectBlank == Str.empty();
3581 TheCondState.Ignore = !TheCondState.CondMet;
3582 }
3583
3584 return false;
3585}
3586
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003587/// ParseDirectiveIfc
3588/// ::= .ifc string1, string2
3589bool AsmParser::ParseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual) {
3590 TheCondStack.push_back(TheCondState);
3591 TheCondState.TheCond = AsmCond::IfCond;
3592
Benjamin Kramer29739e72012-05-12 16:52:21 +00003593 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003594 eatToEndOfStatement();
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003595 } else {
3596 StringRef Str1 = ParseStringToComma();
3597
3598 if (getLexer().isNot(AsmToken::Comma))
3599 return TokError("unexpected token in '.ifc' directive");
3600
3601 Lex();
3602
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003603 StringRef Str2 = parseStringToEndOfStatement();
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003604
3605 if (getLexer().isNot(AsmToken::EndOfStatement))
3606 return TokError("unexpected token in '.ifc' directive");
3607
3608 Lex();
3609
3610 TheCondState.CondMet = ExpectEqual == (Str1 == Str2);
3611 TheCondState.Ignore = !TheCondState.CondMet;
3612 }
3613
3614 return false;
3615}
3616
3617/// ParseDirectiveIfdef
3618/// ::= .ifdef symbol
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00003619bool AsmParser::ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined) {
3620 StringRef Name;
3621 TheCondStack.push_back(TheCondState);
3622 TheCondState.TheCond = AsmCond::IfCond;
3623
3624 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003625 eatToEndOfStatement();
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00003626 } else {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003627 if (parseIdentifier(Name))
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00003628 return TokError("expected identifier after '.ifdef'");
3629
3630 Lex();
3631
3632 MCSymbol *Sym = getContext().LookupSymbol(Name);
3633
3634 if (expect_defined)
3635 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
3636 else
3637 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
3638 TheCondState.Ignore = !TheCondState.CondMet;
3639 }
3640
3641 return false;
3642}
3643
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003644/// ParseDirectiveElseIf
3645/// ::= .elseif expression
3646bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
3647 if (TheCondState.TheCond != AsmCond::IfCond &&
3648 TheCondState.TheCond != AsmCond::ElseIfCond)
Craig Topper955d1e92013-04-22 04:24:02 +00003649 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
3650 " an .elseif");
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003651 TheCondState.TheCond = AsmCond::ElseIfCond;
3652
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003653 bool LastIgnoreState = false;
3654 if (!TheCondStack.empty())
Craig Topper955d1e92013-04-22 04:24:02 +00003655 LastIgnoreState = TheCondStack.back().Ignore;
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003656 if (LastIgnoreState || TheCondState.CondMet) {
3657 TheCondState.Ignore = true;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003658 eatToEndOfStatement();
Craig Topperefa703d2013-04-22 04:22:40 +00003659 } else {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003660 int64_t ExprValue;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003661 if (parseAbsoluteExpression(ExprValue))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003662 return true;
3663
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003664 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003665 return TokError("unexpected token in '.elseif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003666
Sean Callanan79ed1a82010-01-19 20:22:31 +00003667 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003668 TheCondState.CondMet = ExprValue;
3669 TheCondState.Ignore = !TheCondState.CondMet;
3670 }
3671
3672 return false;
3673}
3674
3675/// ParseDirectiveElse
3676/// ::= .else
3677bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003678 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003679 return TokError("unexpected token in '.else' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003680
Sean Callanan79ed1a82010-01-19 20:22:31 +00003681 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003682
3683 if (TheCondState.TheCond != AsmCond::IfCond &&
3684 TheCondState.TheCond != AsmCond::ElseIfCond)
Craig Topper955d1e92013-04-22 04:24:02 +00003685 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
3686 ".elseif");
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003687 TheCondState.TheCond = AsmCond::ElseCond;
3688 bool LastIgnoreState = false;
3689 if (!TheCondStack.empty())
3690 LastIgnoreState = TheCondStack.back().Ignore;
3691 if (LastIgnoreState || TheCondState.CondMet)
3692 TheCondState.Ignore = true;
3693 else
3694 TheCondState.Ignore = false;
3695
3696 return false;
3697}
3698
3699/// ParseDirectiveEndIf
3700/// ::= .endif
3701bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003702 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003703 return TokError("unexpected token in '.endif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003704
Sean Callanan79ed1a82010-01-19 20:22:31 +00003705 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003706
3707 if ((TheCondState.TheCond == AsmCond::NoCond) ||
3708 TheCondStack.empty())
3709 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
3710 ".else");
3711 if (!TheCondStack.empty()) {
3712 TheCondState = TheCondStack.back();
3713 TheCondStack.pop_back();
3714 }
3715
3716 return false;
3717}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00003718
Eli Bendersky6ee13082013-01-15 22:59:42 +00003719void AsmParser::initializeDirectiveKindMap() {
3720 DirectiveKindMap[".set"] = DK_SET;
3721 DirectiveKindMap[".equ"] = DK_EQU;
3722 DirectiveKindMap[".equiv"] = DK_EQUIV;
3723 DirectiveKindMap[".ascii"] = DK_ASCII;
3724 DirectiveKindMap[".asciz"] = DK_ASCIZ;
3725 DirectiveKindMap[".string"] = DK_STRING;
3726 DirectiveKindMap[".byte"] = DK_BYTE;
3727 DirectiveKindMap[".short"] = DK_SHORT;
3728 DirectiveKindMap[".value"] = DK_VALUE;
3729 DirectiveKindMap[".2byte"] = DK_2BYTE;
3730 DirectiveKindMap[".long"] = DK_LONG;
3731 DirectiveKindMap[".int"] = DK_INT;
3732 DirectiveKindMap[".4byte"] = DK_4BYTE;
3733 DirectiveKindMap[".quad"] = DK_QUAD;
3734 DirectiveKindMap[".8byte"] = DK_8BYTE;
3735 DirectiveKindMap[".single"] = DK_SINGLE;
3736 DirectiveKindMap[".float"] = DK_FLOAT;
3737 DirectiveKindMap[".double"] = DK_DOUBLE;
3738 DirectiveKindMap[".align"] = DK_ALIGN;
3739 DirectiveKindMap[".align32"] = DK_ALIGN32;
3740 DirectiveKindMap[".balign"] = DK_BALIGN;
3741 DirectiveKindMap[".balignw"] = DK_BALIGNW;
3742 DirectiveKindMap[".balignl"] = DK_BALIGNL;
3743 DirectiveKindMap[".p2align"] = DK_P2ALIGN;
3744 DirectiveKindMap[".p2alignw"] = DK_P2ALIGNW;
3745 DirectiveKindMap[".p2alignl"] = DK_P2ALIGNL;
3746 DirectiveKindMap[".org"] = DK_ORG;
3747 DirectiveKindMap[".fill"] = DK_FILL;
3748 DirectiveKindMap[".zero"] = DK_ZERO;
3749 DirectiveKindMap[".extern"] = DK_EXTERN;
3750 DirectiveKindMap[".globl"] = DK_GLOBL;
3751 DirectiveKindMap[".global"] = DK_GLOBAL;
3752 DirectiveKindMap[".indirect_symbol"] = DK_INDIRECT_SYMBOL;
3753 DirectiveKindMap[".lazy_reference"] = DK_LAZY_REFERENCE;
3754 DirectiveKindMap[".no_dead_strip"] = DK_NO_DEAD_STRIP;
3755 DirectiveKindMap[".symbol_resolver"] = DK_SYMBOL_RESOLVER;
3756 DirectiveKindMap[".private_extern"] = DK_PRIVATE_EXTERN;
3757 DirectiveKindMap[".reference"] = DK_REFERENCE;
3758 DirectiveKindMap[".weak_definition"] = DK_WEAK_DEFINITION;
3759 DirectiveKindMap[".weak_reference"] = DK_WEAK_REFERENCE;
3760 DirectiveKindMap[".weak_def_can_be_hidden"] = DK_WEAK_DEF_CAN_BE_HIDDEN;
3761 DirectiveKindMap[".comm"] = DK_COMM;
3762 DirectiveKindMap[".common"] = DK_COMMON;
3763 DirectiveKindMap[".lcomm"] = DK_LCOMM;
3764 DirectiveKindMap[".abort"] = DK_ABORT;
3765 DirectiveKindMap[".include"] = DK_INCLUDE;
3766 DirectiveKindMap[".incbin"] = DK_INCBIN;
3767 DirectiveKindMap[".code16"] = DK_CODE16;
3768 DirectiveKindMap[".code16gcc"] = DK_CODE16GCC;
3769 DirectiveKindMap[".rept"] = DK_REPT;
3770 DirectiveKindMap[".irp"] = DK_IRP;
3771 DirectiveKindMap[".irpc"] = DK_IRPC;
3772 DirectiveKindMap[".endr"] = DK_ENDR;
3773 DirectiveKindMap[".bundle_align_mode"] = DK_BUNDLE_ALIGN_MODE;
3774 DirectiveKindMap[".bundle_lock"] = DK_BUNDLE_LOCK;
3775 DirectiveKindMap[".bundle_unlock"] = DK_BUNDLE_UNLOCK;
3776 DirectiveKindMap[".if"] = DK_IF;
3777 DirectiveKindMap[".ifb"] = DK_IFB;
3778 DirectiveKindMap[".ifnb"] = DK_IFNB;
3779 DirectiveKindMap[".ifc"] = DK_IFC;
3780 DirectiveKindMap[".ifnc"] = DK_IFNC;
3781 DirectiveKindMap[".ifdef"] = DK_IFDEF;
3782 DirectiveKindMap[".ifndef"] = DK_IFNDEF;
3783 DirectiveKindMap[".ifnotdef"] = DK_IFNOTDEF;
3784 DirectiveKindMap[".elseif"] = DK_ELSEIF;
3785 DirectiveKindMap[".else"] = DK_ELSE;
3786 DirectiveKindMap[".endif"] = DK_ENDIF;
3787 DirectiveKindMap[".skip"] = DK_SKIP;
3788 DirectiveKindMap[".space"] = DK_SPACE;
3789 DirectiveKindMap[".file"] = DK_FILE;
3790 DirectiveKindMap[".line"] = DK_LINE;
3791 DirectiveKindMap[".loc"] = DK_LOC;
3792 DirectiveKindMap[".stabs"] = DK_STABS;
3793 DirectiveKindMap[".sleb128"] = DK_SLEB128;
3794 DirectiveKindMap[".uleb128"] = DK_ULEB128;
3795 DirectiveKindMap[".cfi_sections"] = DK_CFI_SECTIONS;
3796 DirectiveKindMap[".cfi_startproc"] = DK_CFI_STARTPROC;
3797 DirectiveKindMap[".cfi_endproc"] = DK_CFI_ENDPROC;
3798 DirectiveKindMap[".cfi_def_cfa"] = DK_CFI_DEF_CFA;
3799 DirectiveKindMap[".cfi_def_cfa_offset"] = DK_CFI_DEF_CFA_OFFSET;
3800 DirectiveKindMap[".cfi_adjust_cfa_offset"] = DK_CFI_ADJUST_CFA_OFFSET;
3801 DirectiveKindMap[".cfi_def_cfa_register"] = DK_CFI_DEF_CFA_REGISTER;
3802 DirectiveKindMap[".cfi_offset"] = DK_CFI_OFFSET;
3803 DirectiveKindMap[".cfi_rel_offset"] = DK_CFI_REL_OFFSET;
3804 DirectiveKindMap[".cfi_personality"] = DK_CFI_PERSONALITY;
3805 DirectiveKindMap[".cfi_lsda"] = DK_CFI_LSDA;
3806 DirectiveKindMap[".cfi_remember_state"] = DK_CFI_REMEMBER_STATE;
3807 DirectiveKindMap[".cfi_restore_state"] = DK_CFI_RESTORE_STATE;
3808 DirectiveKindMap[".cfi_same_value"] = DK_CFI_SAME_VALUE;
3809 DirectiveKindMap[".cfi_restore"] = DK_CFI_RESTORE;
3810 DirectiveKindMap[".cfi_escape"] = DK_CFI_ESCAPE;
3811 DirectiveKindMap[".cfi_signal_frame"] = DK_CFI_SIGNAL_FRAME;
3812 DirectiveKindMap[".cfi_undefined"] = DK_CFI_UNDEFINED;
3813 DirectiveKindMap[".cfi_register"] = DK_CFI_REGISTER;
3814 DirectiveKindMap[".macros_on"] = DK_MACROS_ON;
3815 DirectiveKindMap[".macros_off"] = DK_MACROS_OFF;
3816 DirectiveKindMap[".macro"] = DK_MACRO;
3817 DirectiveKindMap[".endm"] = DK_ENDM;
3818 DirectiveKindMap[".endmacro"] = DK_ENDMACRO;
3819 DirectiveKindMap[".purgem"] = DK_PURGEM;
Eli Bendersky5d0f0612013-01-10 22:44:57 +00003820}
3821
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003822
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003823MCAsmMacro *AsmParser::ParseMacroLikeBody(SMLoc DirectiveLoc) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003824 AsmToken EndToken, StartToken = getTok();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003825
Rafael Espindola761cb062012-06-03 23:57:14 +00003826 unsigned NestLevel = 0;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003827 for (;;) {
3828 // Check whether we have reached the end of the file.
Rafael Espindola761cb062012-06-03 23:57:14 +00003829 if (getLexer().is(AsmToken::Eof)) {
3830 Error(DirectiveLoc, "no matching '.endr' in definition");
3831 return 0;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003832 }
3833
Rafael Espindola761cb062012-06-03 23:57:14 +00003834 if (Lexer.is(AsmToken::Identifier) &&
3835 (getTok().getIdentifier() == ".rept")) {
3836 ++NestLevel;
3837 }
3838
3839 // Otherwise, check whether we have reached the .endr.
3840 if (Lexer.is(AsmToken::Identifier) &&
3841 getTok().getIdentifier() == ".endr") {
3842 if (NestLevel == 0) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003843 EndToken = getTok();
3844 Lex();
Rafael Espindola761cb062012-06-03 23:57:14 +00003845 if (Lexer.isNot(AsmToken::EndOfStatement)) {
3846 TokError("unexpected token in '.endr' directive");
3847 return 0;
3848 }
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003849 break;
3850 }
Rafael Espindola761cb062012-06-03 23:57:14 +00003851 --NestLevel;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003852 }
3853
Rafael Espindola761cb062012-06-03 23:57:14 +00003854 // Otherwise, scan till the end of the statement.
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003855 eatToEndOfStatement();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003856 }
3857
3858 const char *BodyStart = StartToken.getLoc().getPointer();
3859 const char *BodyEnd = EndToken.getLoc().getPointer();
3860 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
3861
Rafael Espindola761cb062012-06-03 23:57:14 +00003862 // We Are Anonymous.
3863 StringRef Name;
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003864 MCAsmMacroParameters Parameters;
Benjamin Kramera2b0c332013-08-04 09:06:29 +00003865 MacroLikeBodies.push_back(MCAsmMacro(Name, Body, Parameters));
3866 return &MacroLikeBodies.back();
Rafael Espindola761cb062012-06-03 23:57:14 +00003867}
3868
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003869void AsmParser::InstantiateMacroLikeBody(MCAsmMacro *M, SMLoc DirectiveLoc,
Rafael Espindola761cb062012-06-03 23:57:14 +00003870 raw_svector_ostream &OS) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003871 OS << ".endr\n";
3872
3873 MemoryBuffer *Instantiation =
3874 MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
3875
Rafael Espindola761cb062012-06-03 23:57:14 +00003876 // Create the macro instantiation object and add to the current macro
3877 // instantiation stack.
3878 MacroInstantiation *MI = new MacroInstantiation(M, DirectiveLoc,
Daniel Dunbar4259a1a2012-12-01 01:38:48 +00003879 CurBuffer,
Rafael Espindola761cb062012-06-03 23:57:14 +00003880 getTok().getLoc(),
3881 Instantiation);
3882 ActiveMacros.push_back(MI);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003883
Rafael Espindola761cb062012-06-03 23:57:14 +00003884 // Jump to the macro instantiation and prime the lexer.
3885 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
3886 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
3887 Lex();
3888}
3889
3890bool AsmParser::ParseDirectiveRept(SMLoc DirectiveLoc) {
3891 int64_t Count;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003892 if (parseAbsoluteExpression(Count))
Rafael Espindola761cb062012-06-03 23:57:14 +00003893 return TokError("unexpected token in '.rept' directive");
3894
3895 if (Count < 0)
3896 return TokError("Count is negative");
3897
3898 if (Lexer.isNot(AsmToken::EndOfStatement))
3899 return TokError("unexpected token in '.rept' directive");
3900
3901 // Eat the end of statement.
3902 Lex();
3903
3904 // Lex the rept definition.
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003905 MCAsmMacro *M = ParseMacroLikeBody(DirectiveLoc);
Rafael Espindola761cb062012-06-03 23:57:14 +00003906 if (!M)
3907 return true;
3908
3909 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3910 // to hold the macro body with substitutions.
3911 SmallString<256> Buf;
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003912 MCAsmMacroParameters Parameters;
3913 MCAsmMacroArguments A;
Rafael Espindola761cb062012-06-03 23:57:14 +00003914 raw_svector_ostream OS(Buf);
3915 while (Count--) {
3916 if (expandMacro(OS, M->Body, Parameters, A, getTok().getLoc()))
3917 return true;
3918 }
3919 InstantiateMacroLikeBody(M, DirectiveLoc, OS);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003920
3921 return false;
3922}
3923
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003924/// ParseDirectiveIrp
3925/// ::= .irp symbol,values
3926bool AsmParser::ParseDirectiveIrp(SMLoc DirectiveLoc) {
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003927 MCAsmMacroParameters Parameters;
3928 MCAsmMacroParameter Parameter;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003929
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003930 if (parseIdentifier(Parameter.first))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003931 return TokError("expected identifier in '.irp' directive");
3932
3933 Parameters.push_back(Parameter);
3934
3935 if (Lexer.isNot(AsmToken::Comma))
3936 return TokError("expected comma in '.irp' directive");
3937
3938 Lex();
3939
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003940 MCAsmMacroArguments A;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003941 if (ParseMacroArguments(0, A))
3942 return true;
3943
3944 // Eat the end of statement.
3945 Lex();
3946
3947 // Lex the irp definition.
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003948 MCAsmMacro *M = ParseMacroLikeBody(DirectiveLoc);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003949 if (!M)
3950 return true;
3951
3952 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3953 // to hold the macro body with substitutions.
3954 SmallString<256> Buf;
3955 raw_svector_ostream OS(Buf);
3956
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003957 for (MCAsmMacroArguments::iterator i = A.begin(), e = A.end(); i != e; ++i) {
3958 MCAsmMacroArguments Args;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003959 Args.push_back(*i);
3960
3961 if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
3962 return true;
3963 }
3964
3965 InstantiateMacroLikeBody(M, DirectiveLoc, OS);
3966
3967 return false;
3968}
3969
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003970/// ParseDirectiveIrpc
3971/// ::= .irpc symbol,values
3972bool AsmParser::ParseDirectiveIrpc(SMLoc DirectiveLoc) {
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003973 MCAsmMacroParameters Parameters;
3974 MCAsmMacroParameter Parameter;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003975
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003976 if (parseIdentifier(Parameter.first))
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003977 return TokError("expected identifier in '.irpc' directive");
3978
3979 Parameters.push_back(Parameter);
3980
3981 if (Lexer.isNot(AsmToken::Comma))
3982 return TokError("expected comma in '.irpc' directive");
3983
3984 Lex();
3985
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003986 MCAsmMacroArguments A;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003987 if (ParseMacroArguments(0, A))
3988 return true;
3989
3990 if (A.size() != 1 || A.front().size() != 1)
3991 return TokError("unexpected token in '.irpc' directive");
3992
3993 // Eat the end of statement.
3994 Lex();
3995
3996 // Lex the irpc definition.
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003997 MCAsmMacro *M = ParseMacroLikeBody(DirectiveLoc);
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003998 if (!M)
3999 return true;
4000
4001 // Macro instantiation is lexical, unfortunately. We construct a new buffer
4002 // to hold the macro body with substitutions.
4003 SmallString<256> Buf;
4004 raw_svector_ostream OS(Buf);
4005
4006 StringRef Values = A.front().front().getString();
4007 std::size_t I, End = Values.size();
4008 for (I = 0; I < End; ++I) {
Eli Bendersky9bac6b22013-01-14 19:00:26 +00004009 MCAsmMacroArgument Arg;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004010 Arg.push_back(AsmToken(AsmToken::Identifier, Values.slice(I, I+1)));
4011
Eli Benderskyc0c67b02013-01-14 23:22:36 +00004012 MCAsmMacroArguments Args;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004013 Args.push_back(Arg);
4014
4015 if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
4016 return true;
4017 }
4018
4019 InstantiateMacroLikeBody(M, DirectiveLoc, OS);
4020
4021 return false;
4022}
4023
Rafael Espindola761cb062012-06-03 23:57:14 +00004024bool AsmParser::ParseDirectiveEndr(SMLoc DirectiveLoc) {
4025 if (ActiveMacros.empty())
Preston Gurd6579eea2012-09-19 20:23:43 +00004026 return TokError("unmatched '.endr' directive");
Rafael Espindola2ec304c2012-05-12 16:31:10 +00004027
4028 // The only .repl that should get here are the ones created by
Rafael Espindola761cb062012-06-03 23:57:14 +00004029 // InstantiateMacroLikeBody.
Rafael Espindola2ec304c2012-05-12 16:31:10 +00004030 assert(getLexer().is(AsmToken::EndOfStatement));
4031
Rafael Espindola761cb062012-06-03 23:57:14 +00004032 HandleMacroExit();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00004033 return false;
4034}
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00004035
Benjamin Kramer75234372013-02-15 20:37:21 +00004036bool AsmParser::ParseDirectiveMSEmit(SMLoc IDLoc, ParseStatementInfo &Info,
4037 size_t Len) {
Eli Friedman2128aae2012-10-22 23:58:19 +00004038 const MCExpr *Value;
4039 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00004040 if (parseExpression(Value))
Eli Friedman2128aae2012-10-22 23:58:19 +00004041 return true;
4042 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value);
4043 if (!MCE)
4044 return Error(ExprLoc, "unexpected expression in _emit");
4045 uint64_t IntValue = MCE->getValue();
4046 if (!isUIntN(8, IntValue) && !isIntN(8, IntValue))
4047 return Error(ExprLoc, "literal value out of range for directive");
4048
Chad Rosier469b1442013-02-12 21:33:51 +00004049 Info.AsmRewrites->push_back(AsmRewrite(AOK_Emit, IDLoc, Len));
4050 return false;
4051}
4052
4053bool AsmParser::ParseDirectiveMSAlign(SMLoc IDLoc, ParseStatementInfo &Info) {
4054 const MCExpr *Value;
4055 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00004056 if (parseExpression(Value))
Chad Rosier469b1442013-02-12 21:33:51 +00004057 return true;
4058 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value);
4059 if (!MCE)
4060 return Error(ExprLoc, "unexpected expression in align");
4061 uint64_t IntValue = MCE->getValue();
4062 if (!isPowerOf2_64(IntValue))
4063 return Error(ExprLoc, "literal value not a power of two greater then zero");
4064
Benjamin Kramer75234372013-02-15 20:37:21 +00004065 Info.AsmRewrites->push_back(AsmRewrite(AOK_Align, IDLoc, 5,
4066 Log2_64(IntValue)));
Eli Friedman2128aae2012-10-22 23:58:19 +00004067 return false;
4068}
4069
Chad Rosier19aa3e32013-02-13 21:27:17 +00004070// We are comparing pointers, but the pointers are relative to a single string.
4071// Thus, this should always be deterministic.
Benjamin Kramer75234372013-02-15 20:37:21 +00004072static int RewritesSort(const void *A, const void *B) {
4073 const AsmRewrite *AsmRewriteA = static_cast<const AsmRewrite *>(A);
4074 const AsmRewrite *AsmRewriteB = static_cast<const AsmRewrite *>(B);
Chad Rosierabde6752013-02-13 18:38:58 +00004075 if (AsmRewriteA->Loc.getPointer() < AsmRewriteB->Loc.getPointer())
4076 return -1;
4077 if (AsmRewriteB->Loc.getPointer() < AsmRewriteA->Loc.getPointer())
4078 return 1;
Chad Rosierb54562b2013-02-15 22:54:16 +00004079
Chad Rosier6b369ce2013-04-08 17:43:47 +00004080 // It's possible to have a SizeDirective, Imm/ImmPrefix and an Input/Output
4081 // rewrite to the same location. Make sure the SizeDirective rewrite is
4082 // performed first, then the Imm/ImmPrefix and finally the Input/Output. This
4083 // ensures the sort algorithm is stable.
4084 if (AsmRewritePrecedence [AsmRewriteA->Kind] >
4085 AsmRewritePrecedence [AsmRewriteB->Kind])
Chad Rosierb54562b2013-02-15 22:54:16 +00004086 return -1;
Chad Rosier6b369ce2013-04-08 17:43:47 +00004087
4088 if (AsmRewritePrecedence [AsmRewriteA->Kind] <
4089 AsmRewritePrecedence [AsmRewriteB->Kind])
Chad Rosierb54562b2013-02-15 22:54:16 +00004090 return 1;
Chad Rosierb54562b2013-02-15 22:54:16 +00004091 llvm_unreachable ("Unstable rewrite sort.");
Chad Rosierb1953982013-02-13 01:03:13 +00004092}
4093
Benjamin Kramer75234372013-02-15 20:37:21 +00004094bool
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00004095AsmParser::parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
Benjamin Kramer75234372013-02-15 20:37:21 +00004096 unsigned &NumOutputs, unsigned &NumInputs,
4097 SmallVectorImpl<std::pair<void *, bool> > &OpDecls,
4098 SmallVectorImpl<std::string> &Constraints,
4099 SmallVectorImpl<std::string> &Clobbers,
4100 const MCInstrInfo *MII,
4101 const MCInstPrinter *IP,
4102 MCAsmParserSemaCallback &SI) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00004103 SmallVector<void *, 4> InputDecls;
4104 SmallVector<void *, 4> OutputDecls;
Chad Rosierc1ec2072013-01-10 22:10:27 +00004105 SmallVector<bool, 4> InputDeclsAddressOf;
4106 SmallVector<bool, 4> OutputDeclsAddressOf;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004107 SmallVector<std::string, 4> InputConstraints;
4108 SmallVector<std::string, 4> OutputConstraints;
Benjamin Kramer75234372013-02-15 20:37:21 +00004109 SmallVector<unsigned, 4> ClobberRegs;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004110
Benjamin Kramer75234372013-02-15 20:37:21 +00004111 SmallVector<AsmRewrite, 4> AsmStrRewrites;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004112
4113 // Prime the lexer.
4114 Lex();
4115
4116 // While we have input, parse each statement.
4117 unsigned InputIdx = 0;
4118 unsigned OutputIdx = 0;
4119 while (getLexer().isNot(AsmToken::Eof)) {
Eli Friedman2128aae2012-10-22 23:58:19 +00004120 ParseStatementInfo Info(&AsmStrRewrites);
4121 if (ParseStatement(Info))
Chad Rosierab450e42012-10-19 22:57:33 +00004122 return true;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004123
Chad Rosier57498012012-12-12 22:45:52 +00004124 if (Info.ParseError)
4125 return true;
4126
Benjamin Kramer75234372013-02-15 20:37:21 +00004127 if (Info.Opcode == ~0U)
4128 continue;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004129
Benjamin Kramer75234372013-02-15 20:37:21 +00004130 const MCInstrDesc &Desc = MII->get(Info.Opcode);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004131
Benjamin Kramer75234372013-02-15 20:37:21 +00004132 // Build the list of clobbers, outputs and inputs.
4133 for (unsigned i = 1, e = Info.ParsedOperands.size(); i != e; ++i) {
4134 MCParsedAsmOperand *Operand = Info.ParsedOperands[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00004135
Benjamin Kramer75234372013-02-15 20:37:21 +00004136 // Immediate.
Chad Rosier811ddf62013-03-19 21:58:18 +00004137 if (Operand->isImm())
Benjamin Kramer75234372013-02-15 20:37:21 +00004138 continue;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004139
Benjamin Kramer75234372013-02-15 20:37:21 +00004140 // Register operand.
4141 if (Operand->isReg() && !Operand->needAddressOf()) {
4142 unsigned NumDefs = Desc.getNumDefs();
4143 // Clobber.
4144 if (NumDefs && Operand->getMCOperandNum() < NumDefs)
4145 ClobberRegs.push_back(Operand->getReg());
4146 continue;
4147 }
4148
4149 // Expr/Input or Output.
Chad Rosierb976e402013-04-09 17:53:49 +00004150 StringRef SymName = Operand->getSymName();
4151 if (SymName.empty())
4152 continue;
4153
Chad Rosier087c3092013-04-22 22:12:12 +00004154 void *OpDecl = Operand->getOpDecl();
Benjamin Kramer75234372013-02-15 20:37:21 +00004155 if (!OpDecl)
4156 continue;
4157
4158 bool isOutput = (i == 1) && Desc.mayStore();
Chad Rosierb976e402013-04-09 17:53:49 +00004159 SMLoc Start = SMLoc::getFromPointer(SymName.data());
Benjamin Kramer75234372013-02-15 20:37:21 +00004160 if (isOutput) {
4161 ++InputIdx;
4162 OutputDecls.push_back(OpDecl);
4163 OutputDeclsAddressOf.push_back(Operand->needAddressOf());
4164 OutputConstraints.push_back('=' + Operand->getConstraint().str());
Chad Rosierb976e402013-04-09 17:53:49 +00004165 AsmStrRewrites.push_back(AsmRewrite(AOK_Output, Start, SymName.size()));
Benjamin Kramer75234372013-02-15 20:37:21 +00004166 } else {
4167 InputDecls.push_back(OpDecl);
4168 InputDeclsAddressOf.push_back(Operand->needAddressOf());
4169 InputConstraints.push_back(Operand->getConstraint().str());
Chad Rosierb976e402013-04-09 17:53:49 +00004170 AsmStrRewrites.push_back(AsmRewrite(AOK_Input, Start, SymName.size()));
Chad Rosierb1f8c132012-10-18 15:49:34 +00004171 }
Chad Rosierb1f8c132012-10-18 15:49:34 +00004172 }
4173 }
4174
4175 // Set the number of Outputs and Inputs.
Chad Rosierc8dd27e2012-10-18 19:39:30 +00004176 NumOutputs = OutputDecls.size();
4177 NumInputs = InputDecls.size();
Chad Rosierb1f8c132012-10-18 15:49:34 +00004178
4179 // Set the unique clobbers.
Benjamin Kramer75234372013-02-15 20:37:21 +00004180 array_pod_sort(ClobberRegs.begin(), ClobberRegs.end());
4181 ClobberRegs.erase(std::unique(ClobberRegs.begin(), ClobberRegs.end()),
4182 ClobberRegs.end());
4183 Clobbers.assign(ClobberRegs.size(), std::string());
4184 for (unsigned I = 0, E = ClobberRegs.size(); I != E; ++I) {
4185 raw_string_ostream OS(Clobbers[I]);
4186 IP->printRegName(OS, ClobberRegs[I]);
4187 }
Chad Rosierb1f8c132012-10-18 15:49:34 +00004188
4189 // Merge the various outputs and inputs. Output are expected first.
4190 if (NumOutputs || NumInputs) {
4191 unsigned NumExprs = NumOutputs + NumInputs;
Chad Rosierc8dd27e2012-10-18 19:39:30 +00004192 OpDecls.resize(NumExprs);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004193 Constraints.resize(NumExprs);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004194 for (unsigned i = 0; i < NumOutputs; ++i) {
Chad Rosierc1ec2072013-01-10 22:10:27 +00004195 OpDecls[i] = std::make_pair(OutputDecls[i], OutputDeclsAddressOf[i]);
Chad Rosier1c99a7f2013-01-15 23:07:53 +00004196 Constraints[i] = OutputConstraints[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00004197 }
4198 for (unsigned i = 0, j = NumOutputs; i < NumInputs; ++i, ++j) {
Chad Rosierc1ec2072013-01-10 22:10:27 +00004199 OpDecls[j] = std::make_pair(InputDecls[i], InputDeclsAddressOf[i]);
Chad Rosier1c99a7f2013-01-15 23:07:53 +00004200 Constraints[j] = InputConstraints[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00004201 }
4202 }
4203
4204 // Build the IR assembly string.
4205 std::string AsmStringIR;
4206 raw_string_ostream OS(AsmStringIR);
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004207 const char *AsmStart = SrcMgr.getMemoryBuffer(0)->getBufferStart();
4208 const char *AsmEnd = SrcMgr.getMemoryBuffer(0)->getBufferEnd();
Benjamin Kramer75234372013-02-15 20:37:21 +00004209 array_pod_sort(AsmStrRewrites.begin(), AsmStrRewrites.end(), RewritesSort);
4210 for (SmallVectorImpl<AsmRewrite>::iterator I = AsmStrRewrites.begin(),
4211 E = AsmStrRewrites.end();
4212 I != E; ++I) {
Chad Rosierdda4b6b2013-04-12 16:26:42 +00004213 AsmRewriteKind Kind = (*I).Kind;
4214 if (Kind == AOK_Delete)
4215 continue;
4216
Chad Rosierb1f8c132012-10-18 15:49:34 +00004217 const char *Loc = (*I).Loc.getPointer();
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004218 assert(Loc >= AsmStart && "Expected Loc to be at or after Start!");
Chad Rosier96d58e62012-10-19 20:57:14 +00004219
Chad Rosier023c8802013-03-19 17:32:17 +00004220 // Emit everything up to the immediate/expression.
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004221 unsigned Len = Loc - AsmStart;
Chad Rosierf06cc982013-04-11 21:49:30 +00004222 if (Len)
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004223 OS << StringRef(AsmStart, Len);
Chad Rosier96d58e62012-10-19 20:57:14 +00004224
Chad Rosier5a719fc2012-10-23 17:43:43 +00004225 // Skip the original expression.
4226 if (Kind == AOK_Skip) {
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004227 AsmStart = Loc + (*I).Len;
Chad Rosier5a719fc2012-10-23 17:43:43 +00004228 continue;
4229 }
4230
Chad Rosierdda4b6b2013-04-12 16:26:42 +00004231 unsigned AdditionalSkip = 0;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004232 // Rewrite expressions in $N notation.
Chad Rosier96d58e62012-10-19 20:57:14 +00004233 switch (Kind) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00004234 default: break;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004235 case AOK_Imm:
Benjamin Kramer75234372013-02-15 20:37:21 +00004236 OS << "$$" << (*I).Val;
Chad Rosierefcb3d92012-10-26 18:04:20 +00004237 break;
4238 case AOK_ImmPrefix:
Benjamin Kramer75234372013-02-15 20:37:21 +00004239 OS << "$$";
Chad Rosierb1f8c132012-10-18 15:49:34 +00004240 break;
4241 case AOK_Input:
Benjamin Kramer75234372013-02-15 20:37:21 +00004242 OS << '$' << InputIdx++;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004243 break;
4244 case AOK_Output:
Benjamin Kramer75234372013-02-15 20:37:21 +00004245 OS << '$' << OutputIdx++;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004246 break;
Chad Rosier96d58e62012-10-19 20:57:14 +00004247 case AOK_SizeDirective:
Benjamin Kramer75234372013-02-15 20:37:21 +00004248 switch ((*I).Val) {
Chad Rosier96d58e62012-10-19 20:57:14 +00004249 default: break;
4250 case 8: OS << "byte ptr "; break;
4251 case 16: OS << "word ptr "; break;
4252 case 32: OS << "dword ptr "; break;
4253 case 64: OS << "qword ptr "; break;
4254 case 80: OS << "xword ptr "; break;
4255 case 128: OS << "xmmword ptr "; break;
4256 case 256: OS << "ymmword ptr "; break;
4257 }
Eli Friedman2128aae2012-10-22 23:58:19 +00004258 break;
4259 case AOK_Emit:
4260 OS << ".byte";
4261 break;
Chad Rosier469b1442013-02-12 21:33:51 +00004262 case AOK_Align: {
4263 unsigned Val = (*I).Val;
4264 OS << ".align " << Val;
4265
4266 // Skip the original immediate.
Benjamin Kramer75234372013-02-15 20:37:21 +00004267 assert(Val < 10 && "Expected alignment less then 2^10.");
Chad Rosier469b1442013-02-12 21:33:51 +00004268 AdditionalSkip = (Val < 4) ? 2 : Val < 7 ? 3 : 4;
4269 break;
4270 }
Chad Rosier6a020a72012-10-25 20:41:34 +00004271 case AOK_DotOperator:
4272 OS << (*I).Val;
4273 break;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004274 }
Chad Rosier96d58e62012-10-19 20:57:14 +00004275
Chad Rosierb1f8c132012-10-18 15:49:34 +00004276 // Skip the original expression.
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004277 AsmStart = Loc + (*I).Len + AdditionalSkip;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004278 }
4279
4280 // Emit the remainder of the asm string.
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004281 if (AsmStart != AsmEnd)
4282 OS << StringRef(AsmStart, AsmEnd - AsmStart);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004283
4284 AsmString = OS.str();
4285 return false;
4286}
4287
Daniel Dunbard1e3b442010-07-17 02:26:10 +00004288/// \brief Create an MCAsmParser instance.
Jim Grosbach1b84cce2011-08-16 18:33:49 +00004289MCAsmParser *llvm::createMCAsmParser(SourceMgr &SM,
Daniel Dunbard1e3b442010-07-17 02:26:10 +00004290 MCContext &C, MCStreamer &Out,
4291 const MCAsmInfo &MAI) {
Jim Grosbach1b84cce2011-08-16 18:33:49 +00004292 return new AsmParser(SM, C, Out, MAI);
Daniel Dunbard1e3b442010-07-17 02:26:10 +00004293}