blob: e36850beb8274f311fcf3c93c7e4324e41616e87 [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 {
Jim Grosbach4a200922013-09-20 23:08:21 +000097 /// \brief The parsed operands from the last parsed statement.
Eli Friedman2128aae2012-10-22 23:58:19 +000098 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
99
Jim Grosbach4a200922013-09-20 23:08:21 +0000100 /// \brief The opcode from the last parsed instruction.
Eli Friedman2128aae2012-10-22 23:58:19 +0000101 unsigned Opcode;
102
Jim Grosbach4a200922013-09-20 23:08:21 +0000103 /// \brief Was there an error parsing the inline assembly?
Chad Rosier57498012012-12-12 22:45:52 +0000104 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
Jim Grosbach4a200922013-09-20 23:08:21 +0000141 /// \brief maps directive names to handler methods in parser
Eli Bendersky6ee13082013-01-15 22:59:42 +0000142 /// 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
Jim Grosbach4a200922013-09-20 23:08:21 +0000146 /// \brief Map of currently defined macros.
Eli Benderskyc0c67b02013-01-14 23:22:36 +0000147 StringMap<MCAsmMacro*> MacroMap;
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000148
Jim Grosbach4a200922013-09-20 23:08:21 +0000149 /// \brief Stack of active macro instantiations.
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000150 std::vector<MacroInstantiation*> ActiveMacros;
151
Jim Grosbach4a200922013-09-20 23:08:21 +0000152 /// \brief List of bodies of anonymous macros.
Benjamin Kramera2b0c332013-08-04 09:06:29 +0000153 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
Vladimir Medic7b0a7962013-08-20 13:33:18 +0000168 /// and current line. Since this is slow and messes up the SourceMgr's
Kevin Enderbya8959492013-06-21 20:51:39 +0000169 /// 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
Jim Grosbach4a200922013-09-20 23:08:21 +0000177 /// \brief is Darwin compatibility enabled?
Preston Gurd7b6f2032012-09-19 20:36:12 +0000178 bool IsDarwin;
179
Jim Grosbach4a200922013-09-20 23:08:21 +0000180 /// \brief 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 Grosbach4a200922013-09-20 23:08:21 +0000238 /// \brief 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
Jim Grosbach4a200922013-09-20 23:08:21 +0000248 bool parseStatement(ParseStatementInfo &Info);
249 void eatToEndOfLine();
250 bool parseCppHashLineFilenameComment(const SMLoc &L);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000251
Jim Grosbach4a200922013-09-20 23:08:21 +0000252 void checkForBadMacro(SMLoc DirectiveLoc, StringRef Name, StringRef Body,
Kevin Enderby221514e2013-01-22 21:44:53 +0000253 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?
Jim Grosbach4a200922013-09-20 23:08:21 +0000260 bool areMacrosEnabled() {return MacrosEnabledFlag;}
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000261
262 /// \brief Control a flag in the parser that enables or disables macros.
Jim Grosbach4a200922013-09-20 23:08:21 +0000263 void setMacrosEnabled(bool Flag) {MacrosEnabledFlag = Flag;}
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000264
265 /// \brief Lookup a previously defined macro.
266 /// \param Name Macro name.
267 /// \returns Pointer to macro. NULL if no such macro was defined.
Jim Grosbach4a200922013-09-20 23:08:21 +0000268 const MCAsmMacro* lookupMacro(StringRef Name);
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000269
270 /// \brief Define a new macro with the given name and information.
Jim Grosbach4a200922013-09-20 23:08:21 +0000271 void defineMacro(StringRef Name, const MCAsmMacro& Macro);
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000272
273 /// \brief Undefine a macro. If no such macro was defined, it's a no-op.
Jim Grosbach4a200922013-09-20 23:08:21 +0000274 void undefineMacro(StringRef Name);
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000275
276 /// \brief Are we inside a macro instantiation?
Jim Grosbach4a200922013-09-20 23:08:21 +0000277 bool isInsideMacroInstantiation() {return !ActiveMacros.empty();}
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000278
Vladimir Medic7b0a7962013-08-20 13:33:18 +0000279 /// \brief Handle entry to macro instantiation.
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000280 ///
281 /// \param M The macro.
282 /// \param NameLoc Instantiation location.
Jim Grosbach4a200922013-09-20 23:08:21 +0000283 bool handleMacroEntry(const MCAsmMacro *M, SMLoc NameLoc);
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000284
285 /// \brief Handle exit from macro instantiation.
Jim Grosbach4a200922013-09-20 23:08:21 +0000286 void handleMacroExit();
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000287
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.
Jim Grosbach4a200922013-09-20 23:08:21 +0000291 bool parseMacroArgument(MCAsmMacroArgument &MA,
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000292 AsmToken::TokenKind &ArgumentDelimiter);
293
294 /// \brief Parse all macro arguments for a given macro.
Jim Grosbach4a200922013-09-20 23:08:21 +0000295 bool parseMacroArguments(const MCAsmMacro *M, MCAsmMacroArguments &A);
Eli Benderskyf9f40bd2013-01-16 18:56:50 +0000296
Jim Grosbach4a200922013-09-20 23:08:21 +0000297 void printMacroInstantiations();
298 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
Jim Grosbach4a200922013-09-20 23:08:21 +0000304 /// \brief Enter the specified file. This returns true on failure.
305 bool enterIncludeFile(const std::string &Filename);
306
307 /// \brief Process the specified file for the .incbin directive.
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000308 /// This returns true on failure.
Jim Grosbach4a200922013-09-20 23:08:21 +0000309 bool processIncbinFile(const std::string &Filename);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000310
Dmitri Gribenkoc5252da2012-09-14 14:57:36 +0000311 /// \brief Reset the current lexer position to that given by \p Loc. The
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000312 /// current token is not set; clients should ensure Lex() is called
313 /// subsequently.
Daniel Dunbar4259a1a2012-12-01 01:38:48 +0000314 ///
315 /// \param InBuffer If not -1, should be the known buffer id that contains the
316 /// location.
Jim Grosbach4a200922013-09-20 23:08:21 +0000317 void jumpToLoc(SMLoc Loc, int InBuffer=-1);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000318
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000319 /// \brief Parse up to the end of statement and a return the contents from the
320 /// current token until the end of the statement; the current token on exit
321 /// will be either the EndOfStatement or EOF.
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000322 virtual StringRef parseStringToEndOfStatement();
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000323
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000324 /// \brief Parse until the end of a statement or a comma is encountered,
325 /// return the contents from the current token up to the end or comma.
Jim Grosbach4a200922013-09-20 23:08:21 +0000326 StringRef parseStringToComma();
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000327
Jim Grosbach4a200922013-09-20 23:08:21 +0000328 bool parseAssignment(StringRef Name, bool allow_redef,
Jim Grosbach3f90a4c2012-09-13 23:11:31 +0000329 bool NoDeadStrip = false);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000330
Jim Grosbach4a200922013-09-20 23:08:21 +0000331 bool parseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
332 bool parseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
333 bool parseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000334
Jim Grosbach4a200922013-09-20 23:08:21 +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,
Kevin Enderby4f066b62013-08-28 17:50:59 +0000345 DK_ZERO, DK_EXTERN, DK_GLOBL, DK_GLOBAL,
Eli Bendersky7eef9c12013-01-10 23:40:56 +0000346 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,
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +0000358 DK_CFI_REGISTER, DK_CFI_WINDOW_SAVE,
Eli Bendersky6ee13082013-01-15 22:59:42 +0000359 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
Jim Grosbach4a200922013-09-20 23:08:21 +0000363 /// \brief Maps directive name --> DirectiveKind enum, for
Eli Bendersky6ee13082013-01-15 22:59:42 +0000364 /// directives parsed by this class.
365 StringMap<DirectiveKind> DirectiveKindMap;
Eli Bendersky5d0f0612013-01-10 22:44:57 +0000366
367 // ".ascii", ".asciz", ".string"
Jim Grosbach4a200922013-09-20 23:08:21 +0000368 bool parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
369 bool parseDirectiveValue(unsigned Size); // ".byte", ".long", ...
370 bool parseDirectiveRealValue(const fltSemantics &); // ".single", ...
371 bool parseDirectiveFill(); // ".fill"
372 bool parseDirectiveZero(); // ".zero"
Eric Christopher2318ba12012-12-18 00:30:54 +0000373 // ".set", ".equ", ".equiv"
Jim Grosbach4a200922013-09-20 23:08:21 +0000374 bool parseDirectiveSet(StringRef IDVal, bool allow_redef);
375 bool parseDirectiveOrg(); // ".org"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000376 // ".align{,32}", ".p2align{,w,l}"
Jim Grosbach4a200922013-09-20 23:08:21 +0000377 bool parseDirectiveAlign(bool IsPow2, unsigned ValueSize);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000378
Eli Bendersky6ee13082013-01-15 22:59:42 +0000379 // ".file", ".line", ".loc", ".stabs"
Jim Grosbach4a200922013-09-20 23:08:21 +0000380 bool parseDirectiveFile(SMLoc DirectiveLoc);
381 bool parseDirectiveLine();
382 bool parseDirectiveLoc();
383 bool parseDirectiveStabs();
Eli Bendersky6ee13082013-01-15 22:59:42 +0000384
385 // .cfi directives
Jim Grosbach4a200922013-09-20 23:08:21 +0000386 bool parseDirectiveCFIRegister(SMLoc DirectiveLoc);
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +0000387 bool parseDirectiveCFIWindowSave();
Jim Grosbach4a200922013-09-20 23:08:21 +0000388 bool parseDirectiveCFISections();
389 bool parseDirectiveCFIStartProc();
390 bool parseDirectiveCFIEndProc();
391 bool parseDirectiveCFIDefCfaOffset();
392 bool parseDirectiveCFIDefCfa(SMLoc DirectiveLoc);
393 bool parseDirectiveCFIAdjustCfaOffset();
394 bool parseDirectiveCFIDefCfaRegister(SMLoc DirectiveLoc);
395 bool parseDirectiveCFIOffset(SMLoc DirectiveLoc);
396 bool parseDirectiveCFIRelOffset(SMLoc DirectiveLoc);
397 bool parseDirectiveCFIPersonalityOrLsda(bool IsPersonality);
398 bool parseDirectiveCFIRememberState();
399 bool parseDirectiveCFIRestoreState();
400 bool parseDirectiveCFISameValue(SMLoc DirectiveLoc);
401 bool parseDirectiveCFIRestore(SMLoc DirectiveLoc);
402 bool parseDirectiveCFIEscape();
403 bool parseDirectiveCFISignalFrame();
404 bool parseDirectiveCFIUndefined(SMLoc DirectiveLoc);
Eli Bendersky6ee13082013-01-15 22:59:42 +0000405
406 // macro directives
Jim Grosbach4a200922013-09-20 23:08:21 +0000407 bool parseDirectivePurgeMacro(SMLoc DirectiveLoc);
408 bool parseDirectiveEndMacro(StringRef Directive);
409 bool parseDirectiveMacro(SMLoc DirectiveLoc);
410 bool parseDirectiveMacrosOnOff(StringRef Directive);
Eli Bendersky6ee13082013-01-15 22:59:42 +0000411
Eli Bendersky4766ef42012-12-20 19:05:53 +0000412 // ".bundle_align_mode"
Jim Grosbach4a200922013-09-20 23:08:21 +0000413 bool parseDirectiveBundleAlignMode();
Eli Bendersky4766ef42012-12-20 19:05:53 +0000414 // ".bundle_lock"
Jim Grosbach4a200922013-09-20 23:08:21 +0000415 bool parseDirectiveBundleLock();
Eli Bendersky4766ef42012-12-20 19:05:53 +0000416 // ".bundle_unlock"
Jim Grosbach4a200922013-09-20 23:08:21 +0000417 bool parseDirectiveBundleUnlock();
Eli Bendersky4766ef42012-12-20 19:05:53 +0000418
Eli Bendersky6ee13082013-01-15 22:59:42 +0000419 // ".space", ".skip"
Jim Grosbach4a200922013-09-20 23:08:21 +0000420 bool parseDirectiveSpace(StringRef IDVal);
Eli Bendersky6ee13082013-01-15 22:59:42 +0000421
422 // .sleb128 (Signed=true) and .uleb128 (Signed=false)
Jim Grosbach4a200922013-09-20 23:08:21 +0000423 bool parseDirectiveLEB128(bool Signed);
Eli Bendersky6ee13082013-01-15 22:59:42 +0000424
Jim Grosbach4a200922013-09-20 23:08:21 +0000425 /// \brief Parse a directive like ".globl" which
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000426 /// accepts a single symbol (which should be a label or an external).
Jim Grosbach4a200922013-09-20 23:08:21 +0000427 bool parseDirectiveSymbolAttribute(MCSymbolAttr Attr);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000428
Jim Grosbach4a200922013-09-20 23:08:21 +0000429 bool parseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000430
Jim Grosbach4a200922013-09-20 23:08:21 +0000431 bool parseDirectiveAbort(); // ".abort"
432 bool parseDirectiveInclude(); // ".include"
433 bool parseDirectiveIncbin(); // ".incbin"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000434
Jim Grosbach4a200922013-09-20 23:08:21 +0000435 bool parseDirectiveIf(SMLoc DirectiveLoc); // ".if"
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +0000436 // ".ifb" or ".ifnb", depending on ExpectBlank.
Jim Grosbach4a200922013-09-20 23:08:21 +0000437 bool parseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank);
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000438 // ".ifc" or ".ifnc", depending on ExpectEqual.
Jim Grosbach4a200922013-09-20 23:08:21 +0000439 bool parseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual);
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +0000440 // ".ifdef" or ".ifndef", depending on expect_defined
Jim Grosbach4a200922013-09-20 23:08:21 +0000441 bool parseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined);
442 bool parseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
443 bool parseDirectiveElse(SMLoc DirectiveLoc); // ".else"
444 bool parseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000445 virtual bool parseEscapedString(std::string &Data);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000446
Jim Grosbach4a200922013-09-20 23:08:21 +0000447 const MCExpr *applyModifierToExpr(const MCExpr *E,
Daniel Dunbarcceba832010-09-17 02:47:07 +0000448 MCSymbolRefExpr::VariantKind Variant);
Rafael Espindola2ec304c2012-05-12 16:31:10 +0000449
Rafael Espindola761cb062012-06-03 23:57:14 +0000450 // Macro-like directives
Jim Grosbach4a200922013-09-20 23:08:21 +0000451 MCAsmMacro *parseMacroLikeBody(SMLoc DirectiveLoc);
452 void instantiateMacroLikeBody(MCAsmMacro *M, SMLoc DirectiveLoc,
Rafael Espindola761cb062012-06-03 23:57:14 +0000453 raw_svector_ostream &OS);
Jim Grosbach4a200922013-09-20 23:08:21 +0000454 bool parseDirectiveRept(SMLoc DirectiveLoc); // ".rept"
455 bool parseDirectiveIrp(SMLoc DirectiveLoc); // ".irp"
456 bool parseDirectiveIrpc(SMLoc DirectiveLoc); // ".irpc"
457 bool parseDirectiveEndr(SMLoc DirectiveLoc); // ".endr"
Chad Rosierb1f8c132012-10-18 15:49:34 +0000458
Chad Rosier469b1442013-02-12 21:33:51 +0000459 // "_emit" or "__emit"
Jim Grosbach4a200922013-09-20 23:08:21 +0000460 bool parseDirectiveMSEmit(SMLoc DirectiveLoc, ParseStatementInfo &Info,
Chad Rosier469b1442013-02-12 21:33:51 +0000461 size_t Len);
462
463 // "align"
Jim Grosbach4a200922013-09-20 23:08:21 +0000464 bool parseDirectiveMSAlign(SMLoc DirectiveLoc, ParseStatementInfo &Info);
Eli Bendersky5d0f0612013-01-10 22:44:57 +0000465
Eli Bendersky6ee13082013-01-15 22:59:42 +0000466 void initializeDirectiveKindMap();
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000467};
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000468}
469
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000470namespace llvm {
471
472extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000473extern MCAsmParserExtension *createELFAsmParser();
Michael J. Spencer7d490042010-10-09 11:01:07 +0000474extern MCAsmParserExtension *createCOFFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000475
476}
477
Chris Lattneraaec2052010-01-19 19:46:13 +0000478enum { DEFAULT_ADDRSPACE = 0 };
479
Jim Grosbach4a200922013-09-20 23:08:21 +0000480AsmParser::AsmParser(SourceMgr &_SM, MCContext &_Ctx, MCStreamer &_Out,
481 const MCAsmInfo &_MAI)
482 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), MAI(_MAI), SrcMgr(_SM),
483 PlatformParser(0), CurBuffer(0), MacrosEnabledFlag(true),
484 CppHashLineNumber(0), AssemblerDialect(~0U), IsDarwin(false),
485 ParsingInlineAsm(false) {
Benjamin Kramer04a04262011-10-16 10:48:29 +0000486 // Save the old handler.
487 SavedDiagHandler = SrcMgr.getDiagHandler();
488 SavedDiagContext = SrcMgr.getDiagContext();
489 // Set our own handler which calls the saved handler.
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000490 SrcMgr.setDiagHandler(DiagHandler, this);
Sean Callananfd0b0282010-01-21 00:19:58 +0000491 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000492
Daniel Dunbare4749702010-07-12 18:12:02 +0000493 // Initialize the platform / file format parser.
494 //
495 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
496 // created.
Michael J. Spencer7d490042010-10-09 11:01:07 +0000497 if (_MAI.hasMicrosoftFastStdCallMangling()) {
498 PlatformParser = createCOFFAsmParser();
499 PlatformParser->Initialize(*this);
500 } else if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000501 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000502 PlatformParser->Initialize(*this);
Preston Gurd7b6f2032012-09-19 20:36:12 +0000503 IsDarwin = true;
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000504 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000505 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000506 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000507 }
Eli Bendersky5d0f0612013-01-10 22:44:57 +0000508
Eli Bendersky6ee13082013-01-15 22:59:42 +0000509 initializeDirectiveKindMap();
Chris Lattnerebb89b42009-09-27 21:16:52 +0000510}
511
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000512AsmParser::~AsmParser() {
Daniel Dunbar56491302010-07-29 01:51:55 +0000513 assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
514
515 // Destroy any macros.
Jim Grosbach4a200922013-09-20 23:08:21 +0000516 for (StringMap<MCAsmMacro *>::iterator it = MacroMap.begin(),
517 ie = MacroMap.end();
518 it != ie; ++it)
Daniel Dunbar56491302010-07-29 01:51:55 +0000519 delete it->getValue();
520
Daniel Dunbare4749702010-07-12 18:12:02 +0000521 delete PlatformParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000522}
523
Jim Grosbach4a200922013-09-20 23:08:21 +0000524void AsmParser::printMacroInstantiations() {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000525 // Print the active macro instantiation stack.
Jim Grosbach4a200922013-09-20 23:08:21 +0000526 for (std::vector<MacroInstantiation *>::const_reverse_iterator
527 it = ActiveMacros.rbegin(),
528 ie = ActiveMacros.rend();
529 it != ie; ++it)
530 printMessage((*it)->InstantiationLoc, SourceMgr::DK_Note,
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000531 "while in macro instantiation");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000532}
533
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000534bool AsmParser::Warning(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +0000535 if (FatalAssemblerWarnings)
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000536 return Error(L, Msg, Ranges);
Jim Grosbach4a200922013-09-20 23:08:21 +0000537 printMessage(L, SourceMgr::DK_Warning, Msg, Ranges);
538 printMacroInstantiations();
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +0000539 return false;
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000540}
541
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000542bool AsmParser::Error(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000543 HadError = true;
Jim Grosbach4a200922013-09-20 23:08:21 +0000544 printMessage(L, SourceMgr::DK_Error, Msg, Ranges);
545 printMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000546 return true;
547}
548
Jim Grosbach4a200922013-09-20 23:08:21 +0000549bool AsmParser::enterIncludeFile(const std::string &Filename) {
Joerg Sonnenbergerdd137902011-06-01 13:10:15 +0000550 std::string IncludedFile;
551 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
Sean Callananfd0b0282010-01-21 00:19:58 +0000552 if (NewBuf == -1)
553 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000554
Sean Callananfd0b0282010-01-21 00:19:58 +0000555 CurBuffer = NewBuf;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000556
Sean Callananfd0b0282010-01-21 00:19:58 +0000557 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000558
Sean Callananfd0b0282010-01-21 00:19:58 +0000559 return false;
560}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000561
Sylvestre Ledruda2ed452013-05-14 23:36:24 +0000562/// Process the specified .incbin file by searching for it in the include paths
Benjamin Kramerd9b0b022012-06-02 10:20:22 +0000563/// then just emitting the byte contents of the file to the streamer. This
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000564/// returns true on failure.
Jim Grosbach4a200922013-09-20 23:08:21 +0000565bool AsmParser::processIncbinFile(const std::string &Filename) {
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000566 std::string IncludedFile;
567 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
568 if (NewBuf == -1)
569 return true;
570
Kevin Enderbyc3fc3132011-12-14 22:34:45 +0000571 // Pick up the bytes from the file and emit them.
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000572 getStreamer().EmitBytes(SrcMgr.getMemoryBuffer(NewBuf)->getBuffer());
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000573 return false;
574}
575
Jim Grosbach4a200922013-09-20 23:08:21 +0000576void AsmParser::jumpToLoc(SMLoc Loc, int InBuffer) {
Daniel Dunbar4259a1a2012-12-01 01:38:48 +0000577 if (InBuffer != -1) {
578 CurBuffer = InBuffer;
579 } else {
580 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
581 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000582 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
583}
584
Sean Callananfd0b0282010-01-21 00:19:58 +0000585const AsmToken &AsmParser::Lex() {
586 const AsmToken *tok = &Lexer.Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000587
Sean Callananfd0b0282010-01-21 00:19:58 +0000588 if (tok->is(AsmToken::Eof)) {
589 // If this is the end of an included file, pop the parent file off the
590 // include stack.
591 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
592 if (ParentIncludeLoc != SMLoc()) {
Jim Grosbach4a200922013-09-20 23:08:21 +0000593 jumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000594 tok = &Lexer.Lex();
595 }
596 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000597
Sean Callananfd0b0282010-01-21 00:19:58 +0000598 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000599 Error(Lexer.getErrLoc(), Lexer.getErr());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000600
Sean Callananfd0b0282010-01-21 00:19:58 +0000601 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000602}
603
Chris Lattner79180e22010-04-05 23:15:42 +0000604bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000605 // Create the initial section, if requested.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000606 if (!NoInitialTextSection)
Rafael Espindolad80781b2010-09-15 21:48:40 +0000607 Out.InitSections();
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000608
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000609 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000610 Lex();
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000611
612 HadError = false;
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000613 AsmCond StartingCondState = TheCondState;
614
Kevin Enderby613b7572011-11-01 22:27:22 +0000615 // If we are generating dwarf for assembly source files save the initial text
616 // section and generate a .file directive.
617 if (getContext().getGenDwarfForAssembly()) {
Peter Collingbournedf39be62013-04-17 21:18:16 +0000618 getContext().setGenDwarfSection(getStreamer().getCurrentSection().first);
Kevin Enderby94c2e852011-12-09 18:09:40 +0000619 MCSymbol *SectionStartSym = getContext().CreateTempSymbol();
620 getStreamer().EmitLabel(SectionStartSym);
621 getContext().setGenDwarfSectionStartSym(SectionStartSym);
Kevin Enderby613b7572011-11-01 22:27:22 +0000622 getStreamer().EmitDwarfFileDirective(getContext().nextGenDwarfFileNumber(),
Eric Christopher6c583142012-12-18 00:31:01 +0000623 StringRef(),
624 getContext().getMainFileName());
Kevin Enderby613b7572011-11-01 22:27:22 +0000625 }
626
Chris Lattnerb717fb02009-07-02 21:53:43 +0000627 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000628 while (Lexer.isNot(AsmToken::Eof)) {
Eli Friedman2128aae2012-10-22 23:58:19 +0000629 ParseStatementInfo Info;
Jim Grosbach4a200922013-09-20 23:08:21 +0000630 if (!parseStatement(Info))
631 continue;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000632
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000633 // We had an error, validate that one was emitted and recover by skipping to
634 // the next line.
635 assert(HadError && "Parse statement returned an error, but none emitted!");
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000636 eatToEndOfStatement();
Chris Lattnerb717fb02009-07-02 21:53:43 +0000637 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000638
639 if (TheCondState.TheCond != StartingCondState.TheCond ||
640 TheCondState.Ignore != StartingCondState.Ignore)
641 return TokError("unmatched .ifs or .elses");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000642
643 // Check to see there are no empty DwarfFile slots.
Manman Ren9e999ad2013-03-12 20:17:00 +0000644 const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles =
Jim Grosbach4a200922013-09-20 23:08:21 +0000645 getContext().getMCDwarfFiles();
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000646 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000647 if (!MCDwarfFiles[i])
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000648 TokError("unassigned file number: " + Twine(i) + " for .file directives");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000649 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000650
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000651 // Check to see that all assembler local symbols were actually defined.
652 // Targets that don't do subsections via symbols may not want this, though,
653 // so conservatively exclude them. Only do this if we're finalizing, though,
654 // as otherwise we won't necessarilly have seen everything yet.
655 if (!NoFinalize && MAI.hasSubsectionsViaSymbols()) {
656 const MCContext::SymbolTable &Symbols = getContext().getSymbols();
657 for (MCContext::SymbolTable::const_iterator i = Symbols.begin(),
Jim Grosbach4a200922013-09-20 23:08:21 +0000658 e = Symbols.end();
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000659 i != e; ++i) {
660 MCSymbol *Sym = i->getValue();
661 // Variable symbols may not be marked as defined, so check those
662 // explicitly. If we know it's a variable, we have a definition for
663 // the purposes of this check.
664 if (Sym->isTemporary() && !Sym->isVariable() && !Sym->isDefined())
665 // FIXME: We would really like to refer back to where the symbol was
666 // first referenced for a source location. We need to add something
667 // to track that. Currently, we just point to the end of the file.
Jim Grosbach4a200922013-09-20 23:08:21 +0000668 printMessage(
669 getLexer().getLoc(), SourceMgr::DK_Error,
670 "assembler local symbol '" + Sym->getName() + "' not defined");
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000671 }
672 }
673
Chris Lattner79180e22010-04-05 23:15:42 +0000674 // Finalize the output stream if there are no errors and if the client wants
675 // us to.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000676 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000677 Out.Finish();
678
Chris Lattnerb717fb02009-07-02 21:53:43 +0000679 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000680}
681
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000682void AsmParser::checkForValidSection() {
Peter Collingbournedf39be62013-04-17 21:18:16 +0000683 if (!ParsingInlineAsm && !getStreamer().getCurrentSection().first) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000684 TokError("expected section directive before assembly directive");
Eli Bendersky030f63a2013-01-14 19:04:57 +0000685 Out.InitToTextSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000686 }
687}
688
Jim Grosbach4a200922013-09-20 23:08:21 +0000689/// \brief Throw away the rest of the line for testing purposes.
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000690void AsmParser::eatToEndOfStatement() {
Jim Grosbach4a200922013-09-20 23:08:21 +0000691 while (Lexer.isNot(AsmToken::EndOfStatement) && Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000692 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000693
Chris Lattner2cf5f142009-06-22 01:29:09 +0000694 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000695 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000696 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000697}
698
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000699StringRef AsmParser::parseStringToEndOfStatement() {
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000700 const char *Start = getTok().getLoc().getPointer();
701
Jim Grosbach4a200922013-09-20 23:08:21 +0000702 while (Lexer.isNot(AsmToken::EndOfStatement) && Lexer.isNot(AsmToken::Eof))
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000703 Lex();
704
705 const char *End = getTok().getLoc().getPointer();
706 return StringRef(Start, End - Start);
707}
Chris Lattnerc4193832009-06-22 05:51:26 +0000708
Jim Grosbach4a200922013-09-20 23:08:21 +0000709StringRef AsmParser::parseStringToComma() {
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000710 const char *Start = getTok().getLoc().getPointer();
711
712 while (Lexer.isNot(AsmToken::EndOfStatement) &&
Jim Grosbach4a200922013-09-20 23:08:21 +0000713 Lexer.isNot(AsmToken::Comma) && Lexer.isNot(AsmToken::Eof))
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000714 Lex();
715
716 const char *End = getTok().getLoc().getPointer();
717 return StringRef(Start, End - Start);
718}
719
Jim Grosbach4a200922013-09-20 23:08:21 +0000720/// \brief Parse a paren expression and return it.
Chris Lattner74ec1a32009-06-22 06:32:03 +0000721/// NOTE: This assumes the leading '(' has already been consumed.
722///
723/// parenexpr ::= expr)
724///
Jim Grosbach4a200922013-09-20 23:08:21 +0000725bool AsmParser::parseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
726 if (parseExpression(Res))
727 return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000728 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000729 return TokError("expected ')' in parentheses expression");
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000730 EndLoc = Lexer.getTok().getEndLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000731 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000732 return false;
733}
Chris Lattnerc4193832009-06-22 05:51:26 +0000734
Jim Grosbach4a200922013-09-20 23:08:21 +0000735/// \brief Parse a bracket expression and return it.
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000736/// NOTE: This assumes the leading '[' has already been consumed.
737///
738/// bracketexpr ::= expr]
739///
Jim Grosbach4a200922013-09-20 23:08:21 +0000740bool AsmParser::parseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc) {
741 if (parseExpression(Res))
742 return true;
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000743 if (Lexer.isNot(AsmToken::RBrac))
744 return TokError("expected ']' in brackets expression");
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000745 EndLoc = Lexer.getTok().getEndLoc();
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000746 Lex();
747 return false;
748}
749
Jim Grosbach4a200922013-09-20 23:08:21 +0000750/// \brief Parse a primary expression and return it.
Chris Lattner74ec1a32009-06-22 06:32:03 +0000751/// primaryexpr ::= (parenexpr
752/// primaryexpr ::= symbol
753/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000754/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000755/// primaryexpr ::= ~,+,- primaryexpr
Jim Grosbach4a200922013-09-20 23:08:21 +0000756bool AsmParser::parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Kevin Enderby5de048e2013-01-22 21:09:20 +0000757 SMLoc FirstTokenLoc = getLexer().getLoc();
758 AsmToken::TokenKind FirstTokenKind = Lexer.getKind();
759 switch (FirstTokenKind) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000760 default:
761 return TokError("unknown token in expression");
Eric Christopherf3755b22011-04-12 00:03:13 +0000762 // If we have an error assume that we've already handled it.
763 case AsmToken::Error:
764 return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000765 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000766 Lex(); // Eat the operator.
Jim Grosbach4a200922013-09-20 23:08:21 +0000767 if (parsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000768 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000769 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000770 return false;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000771 case AsmToken::Dollar:
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000772 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000773 case AsmToken::Identifier: {
Daniel Dunbare17edff2010-08-24 19:13:42 +0000774 StringRef Identifier;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000775 if (parseIdentifier(Identifier)) {
David Majnemer3f22cc12013-09-25 10:47:21 +0000776 if (FirstTokenKind == AsmToken::Dollar) {
777 if (Lexer.getMAI().getDollarIsPC()) {
778 // This is a '$' reference, which references the current PC. Emit a
779 // temporary label to the streamer and refer to it.
780 MCSymbol *Sym = Ctx.CreateTempSymbol();
781 Out.EmitLabel(Sym);
782 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
783 EndLoc = FirstTokenLoc;
784 return false;
785 } else
786 return Error(FirstTokenLoc, "invalid token in expression");
787 return true;
788 }
Kevin Enderby5de048e2013-01-22 21:09:20 +0000789 }
Daniel Dunbare17edff2010-08-24 19:13:42 +0000790
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000791 EndLoc = SMLoc::getFromPointer(Identifier.end());
792
Daniel Dunbarfffff912009-10-16 01:34:54 +0000793 // This is a symbol reference.
Daniel Dunbare17edff2010-08-24 19:13:42 +0000794 std::pair<StringRef, StringRef> Split = Identifier.split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000795 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000796
797 // Lookup the symbol variant if used.
798 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000799 if (Split.first.size() != Identifier.size()) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000800 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000801 if (Variant == MCSymbolRefExpr::VK_Invalid) {
802 Variant = MCSymbolRefExpr::VK_None;
Jim Grosbach4121e8a2011-01-19 23:06:07 +0000803 return TokError("invalid variant '" + Split.second + "'");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000804 }
805 }
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000806
Daniel Dunbarfffff912009-10-16 01:34:54 +0000807 // If this is an absolute variable reference, substitute it now to preserve
808 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000809 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000810 if (Variant)
Daniel Dunbar603abd52010-11-08 17:53:02 +0000811 return Error(EndLoc, "unexpected modifier on variable reference");
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000812
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000813 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000814 return false;
815 }
816
817 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000818 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000819 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000820 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000821 case AsmToken::Integer: {
822 SMLoc Loc = getTok().getLoc();
823 int64_t IntVal = getTok().getIntVal();
824 Res = MCConstantExpr::Create(IntVal, getContext());
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000825 EndLoc = Lexer.getTok().getEndLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000826 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000827 // Look for 'b' or 'f' following an Integer as a directional label
828 if (Lexer.getKind() == AsmToken::Identifier) {
829 StringRef IDVal = getTok().getString();
Ulrich Weigand151ad372013-06-20 16:24:17 +0000830 // Lookup the symbol variant if used.
831 std::pair<StringRef, StringRef> Split = IDVal.split('@');
832 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
833 if (Split.first.size() != IDVal.size()) {
834 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
835 if (Variant == MCSymbolRefExpr::VK_Invalid) {
836 Variant = MCSymbolRefExpr::VK_None;
837 return TokError("invalid variant '" + Split.second + "'");
838 }
Vladimir Medic7b0a7962013-08-20 13:33:18 +0000839 IDVal = Split.first;
Ulrich Weigand151ad372013-06-20 16:24:17 +0000840 }
Jim Grosbach4a200922013-09-20 23:08:21 +0000841 if (IDVal == "f" || IDVal == "b") {
842 MCSymbol *Sym =
843 Ctx.GetDirectionalLocalSymbol(IntVal, IDVal == "f" ? 1 : 0);
Ulrich Weigand151ad372013-06-20 16:24:17 +0000844 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Benjamin Kramer29739e72012-05-12 16:52:21 +0000845 if (IDVal == "b" && Sym->isUndefined())
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000846 return Error(Loc, "invalid reference to undefined symbol");
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000847 EndLoc = Lexer.getTok().getEndLoc();
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000848 Lex(); // Eat identifier.
849 }
850 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000851 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000852 }
Bill Wendling69c4ef32011-01-25 21:26:41 +0000853 case AsmToken::Real: {
854 APFloat RealVal(APFloat::IEEEdouble, getTok().getString());
Bob Wilson720b9182011-02-03 23:17:47 +0000855 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
Bill Wendling69c4ef32011-01-25 21:26:41 +0000856 Res = MCConstantExpr::Create(IntVal, getContext());
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000857 EndLoc = Lexer.getTok().getEndLoc();
Bill Wendling69c4ef32011-01-25 21:26:41 +0000858 Lex(); // Eat token.
859 return false;
860 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000861 case AsmToken::Dot: {
862 // This is a '.' reference, which references the current PC. Emit a
863 // temporary label to the streamer and refer to it.
864 MCSymbol *Sym = Ctx.CreateTempSymbol();
865 Out.EmitLabel(Sym);
866 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000867 EndLoc = Lexer.getTok().getEndLoc();
Chris Lattnerd3050352010-04-14 04:40:28 +0000868 Lex(); // Eat identifier.
869 return false;
870 }
Daniel Dunbar3f872332009-07-28 16:08:33 +0000871 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000872 Lex(); // Eat the '('.
Jim Grosbach4a200922013-09-20 23:08:21 +0000873 return parseParenExpr(Res, EndLoc);
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000874 case AsmToken::LBrac:
875 if (!PlatformParser->HasBracketExpressions())
876 return TokError("brackets expression not supported on this target");
877 Lex(); // Eat the '['.
Jim Grosbach4a200922013-09-20 23:08:21 +0000878 return parseBracketExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000879 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000880 Lex(); // Eat the operator.
Jim Grosbach4a200922013-09-20 23:08:21 +0000881 if (parsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000882 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000883 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000884 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000885 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000886 Lex(); // Eat the operator.
Jim Grosbach4a200922013-09-20 23:08:21 +0000887 if (parsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000888 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000889 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000890 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000891 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000892 Lex(); // Eat the operator.
Jim Grosbach4a200922013-09-20 23:08:21 +0000893 if (parsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000894 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000895 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000896 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000897 }
898}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000899
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000900bool AsmParser::parseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000901 SMLoc EndLoc;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000902 return parseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000903}
904
Daniel Dunbarcceba832010-09-17 02:47:07 +0000905const MCExpr *
Jim Grosbach4a200922013-09-20 23:08:21 +0000906AsmParser::applyModifierToExpr(const MCExpr *E,
Daniel Dunbarcceba832010-09-17 02:47:07 +0000907 MCSymbolRefExpr::VariantKind Variant) {
Joerg Sonnenberger66b71392013-08-27 20:23:19 +0000908 // Ask the target implementation about this expression first.
909 const MCExpr *NewE = getTargetParser().applyModifierToExpr(E, Variant, Ctx);
910 if (NewE)
911 return NewE;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000912 // Recurse over the given expression, rebuilding it to apply the given variant
913 // if there is exactly one symbol.
914 switch (E->getKind()) {
915 case MCExpr::Target:
916 case MCExpr::Constant:
917 return 0;
918
919 case MCExpr::SymbolRef: {
920 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
921
922 if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
Jim Grosbach4a200922013-09-20 23:08:21 +0000923 TokError("invalid variant on expression '" + getTok().getIdentifier() +
924 "' (already modified)");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000925 return E;
926 }
927
928 return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
929 }
930
931 case MCExpr::Unary: {
932 const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
Jim Grosbach4a200922013-09-20 23:08:21 +0000933 const MCExpr *Sub = applyModifierToExpr(UE->getSubExpr(), Variant);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000934 if (!Sub)
935 return 0;
936 return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
937 }
938
939 case MCExpr::Binary: {
940 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
Jim Grosbach4a200922013-09-20 23:08:21 +0000941 const MCExpr *LHS = applyModifierToExpr(BE->getLHS(), Variant);
942 const MCExpr *RHS = applyModifierToExpr(BE->getRHS(), Variant);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000943
944 if (!LHS && !RHS)
945 return 0;
946
Jim Grosbach4a200922013-09-20 23:08:21 +0000947 if (!LHS)
948 LHS = BE->getLHS();
949 if (!RHS)
950 RHS = BE->getRHS();
Daniel Dunbarcceba832010-09-17 02:47:07 +0000951
952 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
953 }
954 }
Daniel Dunbarf3f95c92010-09-17 16:34:24 +0000955
Craig Topper85814382012-02-07 05:05:23 +0000956 llvm_unreachable("Invalid expression kind!");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000957}
958
Jim Grosbach4a200922013-09-20 23:08:21 +0000959/// \brief Parse an expression and return it.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000960///
Jim Grosbachfbe16812011-08-20 16:24:13 +0000961/// expr ::= expr &&,|| expr -> lowest.
962/// expr ::= expr |,^,&,! expr
963/// expr ::= expr ==,!=,<>,<,<=,>,>= expr
964/// expr ::= expr <<,>> expr
965/// expr ::= expr +,- expr
966/// expr ::= expr *,/,% expr -> highest.
Chris Lattner74ec1a32009-06-22 06:32:03 +0000967/// expr ::= primaryexpr
968///
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000969bool AsmParser::parseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000970 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000971 Res = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +0000972 if (parsePrimaryExpr(Res, EndLoc) || parseBinOpRHS(1, Res, EndLoc))
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000973 return true;
974
Daniel Dunbarcceba832010-09-17 02:47:07 +0000975 // As a special case, we support 'a op b @ modifier' by rewriting the
976 // expression to include the modifier. This is inefficient, but in general we
977 // expect users to use 'a@modifier op b'.
978 if (Lexer.getKind() == AsmToken::At) {
979 Lex();
980
981 if (Lexer.isNot(AsmToken::Identifier))
982 return TokError("unexpected symbol modifier following '@'");
983
984 MCSymbolRefExpr::VariantKind Variant =
Jim Grosbach4a200922013-09-20 23:08:21 +0000985 MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
Daniel Dunbarcceba832010-09-17 02:47:07 +0000986 if (Variant == MCSymbolRefExpr::VK_Invalid)
987 return TokError("invalid variant '" + getTok().getIdentifier() + "'");
988
Jim Grosbach4a200922013-09-20 23:08:21 +0000989 const MCExpr *ModifiedRes = applyModifierToExpr(Res, Variant);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000990 if (!ModifiedRes) {
991 return TokError("invalid modifier '" + getTok().getIdentifier() +
992 "' (no symbols present)");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000993 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000994
Daniel Dunbarcceba832010-09-17 02:47:07 +0000995 Res = ModifiedRes;
996 Lex();
997 }
998
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000999 // Try to constant fold it up front, if possible.
1000 int64_t Value;
1001 if (Res->EvaluateAsAbsolute(Value))
1002 Res = MCConstantExpr::Create(Value, getContext());
1003
1004 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +00001005}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001006
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001007bool AsmParser::parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +00001008 Res = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00001009 return parseParenExpr(Res, EndLoc) || parseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +00001010}
1011
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001012bool AsmParser::parseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +00001013 const MCExpr *Expr;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001014
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001015 SMLoc StartLoc = Lexer.getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001016 if (parseExpression(Expr))
Daniel Dunbar475839e2009-06-29 20:37:27 +00001017 return true;
1018
Daniel Dunbare00b0112009-10-16 01:57:52 +00001019 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001020 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +00001021
1022 return false;
1023}
1024
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001025static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001026 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001027 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +00001028 default:
Jim Grosbach4a200922013-09-20 23:08:21 +00001029 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +00001030
Jim Grosbach4a200922013-09-20 23:08:21 +00001031 // Lowest Precedence: &&, ||
Daniel Dunbar3f872332009-07-28 16:08:33 +00001032 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001033 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001034 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001035 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001036 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001037 return 1;
1038
Jim Grosbach4a200922013-09-20 23:08:21 +00001039 // Low Precedence: |, &, ^
1040 //
1041 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +00001042 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001043 Kind = MCBinaryExpr::Or;
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001044 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001045 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001046 Kind = MCBinaryExpr::Xor;
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001047 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001048 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001049 Kind = MCBinaryExpr::And;
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001050 return 2;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001051
Jim Grosbach4a200922013-09-20 23:08:21 +00001052 // Low Intermediate Precedence: ==, !=, <>, <, <=, >, >=
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001053 case AsmToken::EqualEqual:
1054 Kind = MCBinaryExpr::EQ;
1055 return 3;
1056 case AsmToken::ExclaimEqual:
1057 case AsmToken::LessGreater:
1058 Kind = MCBinaryExpr::NE;
1059 return 3;
1060 case AsmToken::Less:
1061 Kind = MCBinaryExpr::LT;
1062 return 3;
1063 case AsmToken::LessEqual:
1064 Kind = MCBinaryExpr::LTE;
1065 return 3;
1066 case AsmToken::Greater:
1067 Kind = MCBinaryExpr::GT;
1068 return 3;
1069 case AsmToken::GreaterEqual:
1070 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001071 return 3;
1072
Jim Grosbach4a200922013-09-20 23:08:21 +00001073 // Intermediate Precedence: <<, >>
Jim Grosbachfbe16812011-08-20 16:24:13 +00001074 case AsmToken::LessLess:
1075 Kind = MCBinaryExpr::Shl;
1076 return 4;
1077 case AsmToken::GreaterGreater:
1078 Kind = MCBinaryExpr::Shr;
1079 return 4;
1080
Jim Grosbach4a200922013-09-20 23:08:21 +00001081 // High Intermediate Precedence: +, -
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001082 case AsmToken::Plus:
1083 Kind = MCBinaryExpr::Add;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001084 return 5;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001085 case AsmToken::Minus:
1086 Kind = MCBinaryExpr::Sub;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001087 return 5;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001088
Jim Grosbach4a200922013-09-20 23:08:21 +00001089 // Highest Precedence: *, /, %
Daniel Dunbar3f872332009-07-28 16:08:33 +00001090 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001091 Kind = MCBinaryExpr::Mul;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001092 return 6;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001093 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001094 Kind = MCBinaryExpr::Div;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001095 return 6;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001096 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001097 Kind = MCBinaryExpr::Mod;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001098 return 6;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001099 }
1100}
1101
Jim Grosbach4a200922013-09-20 23:08:21 +00001102/// \brief Parse all binary operators with precedence >= 'Precedence'.
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001103/// Res contains the LHS of the expression on input.
Jim Grosbach4a200922013-09-20 23:08:21 +00001104bool AsmParser::parseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
Chris Lattnerb4307b32010-01-15 19:28:38 +00001105 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001106 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001107 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001108 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001109
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001110 // If the next token is lower precedence than we are allowed to eat, return
1111 // successfully with what we ate already.
1112 if (TokPrec < Precedence)
1113 return false;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001114
Sean Callanan79ed1a82010-01-19 20:22:31 +00001115 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001116
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001117 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +00001118 const MCExpr *RHS;
Jim Grosbach4a200922013-09-20 23:08:21 +00001119 if (parsePrimaryExpr(RHS, EndLoc))
1120 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001121
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001122 // If BinOp binds less tightly with RHS than the operator after RHS, let
1123 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001124 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001125 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Jim Grosbach4a200922013-09-20 23:08:21 +00001126 if (TokPrec < NextTokPrec && parseBinOpRHS(TokPrec + 1, RHS, EndLoc))
1127 return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001128
Daniel Dunbar475839e2009-06-29 20:37:27 +00001129 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +00001130 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001131 }
1132}
1133
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001134/// ParseStatement:
1135/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +00001136/// ::= Label* Directive ...Operands... EndOfStatement
1137/// ::= Label* Identifier OperandList* EndOfStatement
Jim Grosbach4a200922013-09-20 23:08:21 +00001138bool AsmParser::parseStatement(ParseStatementInfo &Info) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001139 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +00001140 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001141 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001142 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001143 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001144
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001145 // Statements always start with an identifier or are a full line comment.
Sean Callanan18b83232010-01-19 21:44:56 +00001146 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +00001147 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001148 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001149 int64_t LocalLabelVal = -1;
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001150 // A full line comment is a '#' as the first token.
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001151 if (Lexer.is(AsmToken::Hash))
Jim Grosbach4a200922013-09-20 23:08:21 +00001152 return parseCppHashLineFilenameComment(IDLoc);
Daniel Dunbar0143ac12011-03-25 17:47:14 +00001153
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001154 // Allow an integer followed by a ':' as a directional local label.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001155 if (Lexer.is(AsmToken::Integer)) {
1156 LocalLabelVal = getTok().getIntVal();
1157 if (LocalLabelVal < 0) {
1158 if (!TheCondState.Ignore)
1159 return TokError("unexpected token at start of statement");
1160 IDVal = "";
Eli Benderskyed5df012013-01-16 19:32:36 +00001161 } else {
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001162 IDVal = getTok().getString();
1163 Lex(); // Consume the integer token to be used as an identifier token.
1164 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +00001165 if (!TheCondState.Ignore)
1166 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001167 }
1168 }
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001169 } else if (Lexer.is(AsmToken::Dot)) {
1170 // Treat '.' as a valid identifier in this context.
1171 Lex();
1172 IDVal = ".";
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001173 } else if (parseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +00001174 if (!TheCondState.Ignore)
1175 return TokError("unexpected token at start of statement");
1176 IDVal = "";
1177 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001178
Chris Lattner7834fac2010-04-17 18:14:27 +00001179 // Handle conditional assembly here before checking for skipping. We
1180 // have to do this so that .endif isn't skipped in a ".if 0" block for
1181 // example.
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001182 StringMap<DirectiveKind>::const_iterator DirKindIt =
Jim Grosbach4a200922013-09-20 23:08:21 +00001183 DirectiveKindMap.find(IDVal);
1184 DirectiveKind DirKind = (DirKindIt == DirectiveKindMap.end())
1185 ? DK_NO_DIRECTIVE
1186 : DirKindIt->getValue();
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001187 switch (DirKind) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001188 default:
1189 break;
1190 case DK_IF:
1191 return parseDirectiveIf(IDLoc);
1192 case DK_IFB:
1193 return parseDirectiveIfb(IDLoc, true);
1194 case DK_IFNB:
1195 return parseDirectiveIfb(IDLoc, false);
1196 case DK_IFC:
1197 return parseDirectiveIfc(IDLoc, true);
1198 case DK_IFNC:
1199 return parseDirectiveIfc(IDLoc, false);
1200 case DK_IFDEF:
1201 return parseDirectiveIfdef(IDLoc, true);
1202 case DK_IFNDEF:
1203 case DK_IFNOTDEF:
1204 return parseDirectiveIfdef(IDLoc, false);
1205 case DK_ELSEIF:
1206 return parseDirectiveElseIf(IDLoc);
1207 case DK_ELSE:
1208 return parseDirectiveElse(IDLoc);
1209 case DK_ENDIF:
1210 return parseDirectiveEndIf(IDLoc);
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001211 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001212
Eli Benderskyed5df012013-01-16 19:32:36 +00001213 // Ignore the statement if in the middle of inactive conditional
1214 // (e.g. ".if 0").
Chad Rosier17feeec2012-10-20 00:47:08 +00001215 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001216 eatToEndOfStatement();
Chris Lattner7834fac2010-04-17 18:14:27 +00001217 return false;
1218 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001219
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001220 // FIXME: Recurse on local labels?
1221
1222 // See what kind of statement we have.
1223 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001224 case AsmToken::Colon: {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001225 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001226
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001227 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001228 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001229
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001230 // Diagnose attempt to use '.' as a label.
1231 if (IDVal == ".")
1232 return Error(IDLoc, "invalid use of pseudo-symbol '.' as a label");
1233
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001234 // Diagnose attempt to use a variable as a label.
1235 //
1236 // FIXME: Diagnostics. Note the location of the definition as a label.
1237 // FIXME: This doesn't diagnose assignment to a symbol which has been
1238 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001239 MCSymbol *Sym;
1240 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001241 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001242 else
1243 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +00001244 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001245 return Error(IDLoc, "invalid symbol redefinition");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001246
Daniel Dunbar959fd882009-08-26 22:13:22 +00001247 // Emit the label.
Chad Rosierdeb1bab2013-01-07 20:34:12 +00001248 if (!ParsingInlineAsm)
1249 Out.EmitLabel(Sym);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001250
Kevin Enderby94c2e852011-12-09 18:09:40 +00001251 // If we are generating dwarf for assembly source files then gather the
Kevin Enderby11c2def2012-01-10 21:12:34 +00001252 // info to make a dwarf label entry for this label if needed.
Kevin Enderby94c2e852011-12-09 18:09:40 +00001253 if (getContext().getGenDwarfForAssembly())
Kevin Enderby11c2def2012-01-10 21:12:34 +00001254 MCGenDwarfLabelEntry::Make(Sym, &getStreamer(), getSourceManager(),
1255 IDLoc);
Kevin Enderby94c2e852011-12-09 18:09:40 +00001256
Daniel Dunbar01777ff2010-05-23 18:36:34 +00001257 // Consume any end of statement token, if present, to avoid spurious
1258 // AddBlankLine calls().
1259 if (Lexer.is(AsmToken::EndOfStatement)) {
1260 Lex();
1261 if (Lexer.is(AsmToken::Eof))
1262 return false;
1263 }
1264
Eli Friedman2128aae2012-10-22 23:58:19 +00001265 return false;
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001266 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001267
Daniel Dunbar3f872332009-07-28 16:08:33 +00001268 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001269 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +00001270 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001271
Jim Grosbach4a200922013-09-20 23:08:21 +00001272 return parseAssignment(IDVal, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001273
1274 default: // Normal instruction or directive.
1275 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001276 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001277
1278 // If macros are enabled, check to see if this is a macro instantiation.
Jim Grosbach4a200922013-09-20 23:08:21 +00001279 if (areMacrosEnabled())
1280 if (const MCAsmMacro *M = lookupMacro(IDVal)) {
1281 return handleMacroEntry(M, IDLoc);
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001282 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001283
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001284 // Otherwise, we have a normal instruction or directive.
Vladimir Medic7b0a7962013-08-20 13:33:18 +00001285
Eli Bendersky6ee13082013-01-15 22:59:42 +00001286 // Directives start with "."
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001287 if (IDVal[0] == '.' && IDVal != ".") {
Eli Bendersky6ee13082013-01-15 22:59:42 +00001288 // There are several entities interested in parsing directives:
Vladimir Medic7b0a7962013-08-20 13:33:18 +00001289 //
Eli Bendersky6ee13082013-01-15 22:59:42 +00001290 // 1. The target-specific assembly parser. Some directives are target
1291 // specific or may potentially behave differently on certain targets.
1292 // 2. Asm parser extensions. For example, platform-specific parsers
1293 // (like the ELF parser) register themselves as extensions.
1294 // 3. The generic directive parser implemented by this class. These are
1295 // all the directives that behave in a target and platform independent
1296 // manner, or at least have a default behavior that's shared between
1297 // all targets and platforms.
Akira Hatanaka3b02d952012-07-05 19:09:33 +00001298
Eli Bendersky6ee13082013-01-15 22:59:42 +00001299 // First query the target-specific parser. It will return 'true' if it
1300 // isn't interested in this directive.
Akira Hatanaka3b02d952012-07-05 19:09:33 +00001301 if (!getTargetParser().ParseDirective(ID))
1302 return false;
1303
Eli Bendersky6ee13082013-01-15 22:59:42 +00001304 // Next, check the extention directive map to see if any extension has
1305 // registered itself to parse this directive.
Jim Grosbach4a200922013-09-20 23:08:21 +00001306 std::pair<MCAsmParserExtension *, DirectiveHandler> Handler =
1307 ExtensionDirectiveMap.lookup(IDVal);
Eli Bendersky6ee13082013-01-15 22:59:42 +00001308 if (Handler.first)
1309 return (*Handler.second)(Handler.first, IDVal, IDLoc);
1310
1311 // Finally, if no one else is interested in this directive, it must be
1312 // generic and familiar to this class.
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001313 switch (DirKind) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001314 default:
1315 break;
1316 case DK_SET:
1317 case DK_EQU:
1318 return parseDirectiveSet(IDVal, true);
1319 case DK_EQUIV:
1320 return parseDirectiveSet(IDVal, false);
1321 case DK_ASCII:
1322 return parseDirectiveAscii(IDVal, false);
1323 case DK_ASCIZ:
1324 case DK_STRING:
1325 return parseDirectiveAscii(IDVal, true);
1326 case DK_BYTE:
1327 return parseDirectiveValue(1);
1328 case DK_SHORT:
1329 case DK_VALUE:
1330 case DK_2BYTE:
1331 return parseDirectiveValue(2);
1332 case DK_LONG:
1333 case DK_INT:
1334 case DK_4BYTE:
1335 return parseDirectiveValue(4);
1336 case DK_QUAD:
1337 case DK_8BYTE:
1338 return parseDirectiveValue(8);
1339 case DK_SINGLE:
1340 case DK_FLOAT:
1341 return parseDirectiveRealValue(APFloat::IEEEsingle);
1342 case DK_DOUBLE:
1343 return parseDirectiveRealValue(APFloat::IEEEdouble);
1344 case DK_ALIGN: {
1345 bool IsPow2 = !getContext().getAsmInfo()->getAlignmentIsInBytes();
1346 return parseDirectiveAlign(IsPow2, /*ExprSize=*/1);
1347 }
1348 case DK_ALIGN32: {
1349 bool IsPow2 = !getContext().getAsmInfo()->getAlignmentIsInBytes();
1350 return parseDirectiveAlign(IsPow2, /*ExprSize=*/4);
1351 }
1352 case DK_BALIGN:
1353 return parseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
1354 case DK_BALIGNW:
1355 return parseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
1356 case DK_BALIGNL:
1357 return parseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
1358 case DK_P2ALIGN:
1359 return parseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
1360 case DK_P2ALIGNW:
1361 return parseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
1362 case DK_P2ALIGNL:
1363 return parseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
1364 case DK_ORG:
1365 return parseDirectiveOrg();
1366 case DK_FILL:
1367 return parseDirectiveFill();
1368 case DK_ZERO:
1369 return parseDirectiveZero();
1370 case DK_EXTERN:
1371 eatToEndOfStatement(); // .extern is the default, ignore it.
1372 return false;
1373 case DK_GLOBL:
1374 case DK_GLOBAL:
1375 return parseDirectiveSymbolAttribute(MCSA_Global);
1376 case DK_LAZY_REFERENCE:
1377 return parseDirectiveSymbolAttribute(MCSA_LazyReference);
1378 case DK_NO_DEAD_STRIP:
1379 return parseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
1380 case DK_SYMBOL_RESOLVER:
1381 return parseDirectiveSymbolAttribute(MCSA_SymbolResolver);
1382 case DK_PRIVATE_EXTERN:
1383 return parseDirectiveSymbolAttribute(MCSA_PrivateExtern);
1384 case DK_REFERENCE:
1385 return parseDirectiveSymbolAttribute(MCSA_Reference);
1386 case DK_WEAK_DEFINITION:
1387 return parseDirectiveSymbolAttribute(MCSA_WeakDefinition);
1388 case DK_WEAK_REFERENCE:
1389 return parseDirectiveSymbolAttribute(MCSA_WeakReference);
1390 case DK_WEAK_DEF_CAN_BE_HIDDEN:
1391 return parseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
1392 case DK_COMM:
1393 case DK_COMMON:
1394 return parseDirectiveComm(/*IsLocal=*/false);
1395 case DK_LCOMM:
1396 return parseDirectiveComm(/*IsLocal=*/true);
1397 case DK_ABORT:
1398 return parseDirectiveAbort();
1399 case DK_INCLUDE:
1400 return parseDirectiveInclude();
1401 case DK_INCBIN:
1402 return parseDirectiveIncbin();
1403 case DK_CODE16:
1404 case DK_CODE16GCC:
1405 return TokError(Twine(IDVal) + " not supported yet");
1406 case DK_REPT:
1407 return parseDirectiveRept(IDLoc);
1408 case DK_IRP:
1409 return parseDirectiveIrp(IDLoc);
1410 case DK_IRPC:
1411 return parseDirectiveIrpc(IDLoc);
1412 case DK_ENDR:
1413 return parseDirectiveEndr(IDLoc);
1414 case DK_BUNDLE_ALIGN_MODE:
1415 return parseDirectiveBundleAlignMode();
1416 case DK_BUNDLE_LOCK:
1417 return parseDirectiveBundleLock();
1418 case DK_BUNDLE_UNLOCK:
1419 return parseDirectiveBundleUnlock();
1420 case DK_SLEB128:
1421 return parseDirectiveLEB128(true);
1422 case DK_ULEB128:
1423 return parseDirectiveLEB128(false);
1424 case DK_SPACE:
1425 case DK_SKIP:
1426 return parseDirectiveSpace(IDVal);
1427 case DK_FILE:
1428 return parseDirectiveFile(IDLoc);
1429 case DK_LINE:
1430 return parseDirectiveLine();
1431 case DK_LOC:
1432 return parseDirectiveLoc();
1433 case DK_STABS:
1434 return parseDirectiveStabs();
1435 case DK_CFI_SECTIONS:
1436 return parseDirectiveCFISections();
1437 case DK_CFI_STARTPROC:
1438 return parseDirectiveCFIStartProc();
1439 case DK_CFI_ENDPROC:
1440 return parseDirectiveCFIEndProc();
1441 case DK_CFI_DEF_CFA:
1442 return parseDirectiveCFIDefCfa(IDLoc);
1443 case DK_CFI_DEF_CFA_OFFSET:
1444 return parseDirectiveCFIDefCfaOffset();
1445 case DK_CFI_ADJUST_CFA_OFFSET:
1446 return parseDirectiveCFIAdjustCfaOffset();
1447 case DK_CFI_DEF_CFA_REGISTER:
1448 return parseDirectiveCFIDefCfaRegister(IDLoc);
1449 case DK_CFI_OFFSET:
1450 return parseDirectiveCFIOffset(IDLoc);
1451 case DK_CFI_REL_OFFSET:
1452 return parseDirectiveCFIRelOffset(IDLoc);
1453 case DK_CFI_PERSONALITY:
1454 return parseDirectiveCFIPersonalityOrLsda(true);
1455 case DK_CFI_LSDA:
1456 return parseDirectiveCFIPersonalityOrLsda(false);
1457 case DK_CFI_REMEMBER_STATE:
1458 return parseDirectiveCFIRememberState();
1459 case DK_CFI_RESTORE_STATE:
1460 return parseDirectiveCFIRestoreState();
1461 case DK_CFI_SAME_VALUE:
1462 return parseDirectiveCFISameValue(IDLoc);
1463 case DK_CFI_RESTORE:
1464 return parseDirectiveCFIRestore(IDLoc);
1465 case DK_CFI_ESCAPE:
1466 return parseDirectiveCFIEscape();
1467 case DK_CFI_SIGNAL_FRAME:
1468 return parseDirectiveCFISignalFrame();
1469 case DK_CFI_UNDEFINED:
1470 return parseDirectiveCFIUndefined(IDLoc);
1471 case DK_CFI_REGISTER:
1472 return parseDirectiveCFIRegister(IDLoc);
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +00001473 case DK_CFI_WINDOW_SAVE:
1474 return parseDirectiveCFIWindowSave();
Jim Grosbach4a200922013-09-20 23:08:21 +00001475 case DK_MACROS_ON:
1476 case DK_MACROS_OFF:
1477 return parseDirectiveMacrosOnOff(IDVal);
1478 case DK_MACRO:
1479 return parseDirectiveMacro(IDLoc);
1480 case DK_ENDM:
1481 case DK_ENDMACRO:
1482 return parseDirectiveEndMacro(IDVal);
1483 case DK_PURGEM:
1484 return parseDirectivePurgeMacro(IDLoc);
Eli Friedman5d68ec22010-07-19 04:17:25 +00001485 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001486
Jim Grosbach686c0182012-05-01 18:38:27 +00001487 return Error(IDLoc, "unknown directive");
Chris Lattner2cf5f142009-06-22 01:29:09 +00001488 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001489
Chad Rosier469b1442013-02-12 21:33:51 +00001490 // __asm _emit or __asm __emit
1491 if (ParsingInlineAsm && (IDVal == "_emit" || IDVal == "__emit" ||
1492 IDVal == "_EMIT" || IDVal == "__EMIT"))
Jim Grosbach4a200922013-09-20 23:08:21 +00001493 return parseDirectiveMSEmit(IDLoc, Info, IDVal.size());
Chad Rosier469b1442013-02-12 21:33:51 +00001494
1495 // __asm align
1496 if (ParsingInlineAsm && (IDVal == "align" || IDVal == "ALIGN"))
Jim Grosbach4a200922013-09-20 23:08:21 +00001497 return parseDirectiveMSAlign(IDLoc, Info);
Eli Friedman2128aae2012-10-22 23:58:19 +00001498
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001499 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001500
Chris Lattnera7f13542010-05-19 23:34:33 +00001501 // Canonicalize the opcode to lower case.
Eli Benderskyed5df012013-01-16 19:32:36 +00001502 std::string OpcodeStr = IDVal.lower();
Chad Rosier6a020a72012-10-25 20:41:34 +00001503 ParseInstructionInfo IInfo(Info.AsmRewrites);
Jim Grosbach4a200922013-09-20 23:08:21 +00001504 bool HadError = getTargetParser().ParseInstruction(IInfo, OpcodeStr, IDLoc,
Vladimir Medic7b0a7962013-08-20 13:33:18 +00001505 Info.ParsedOperands);
Chad Rosier57498012012-12-12 22:45:52 +00001506 Info.ParseError = HadError;
Chris Lattner2cf5f142009-06-22 01:29:09 +00001507
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001508 // Dump the parsed representation, if requested.
1509 if (getShowParsedOperands()) {
1510 SmallString<256> Str;
1511 raw_svector_ostream OS(Str);
1512 OS << "parsed instruction: [";
Eli Friedman2128aae2012-10-22 23:58:19 +00001513 for (unsigned i = 0; i != Info.ParsedOperands.size(); ++i) {
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001514 if (i != 0)
1515 OS << ", ";
Eli Friedman2128aae2012-10-22 23:58:19 +00001516 Info.ParsedOperands[i]->print(OS);
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001517 }
1518 OS << "]";
1519
Jim Grosbach4a200922013-09-20 23:08:21 +00001520 printMessage(IDLoc, SourceMgr::DK_Note, OS.str());
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001521 }
1522
Kevin Enderby613b7572011-11-01 22:27:22 +00001523 // If we are generating dwarf for assembly source files and the current
1524 // section is the initial text section then generate a .loc directive for
1525 // the instruction.
1526 if (!HadError && getContext().getGenDwarfForAssembly() &&
Peter Collingbournedf39be62013-04-17 21:18:16 +00001527 getContext().getGenDwarfSection() ==
Jim Grosbach4a200922013-09-20 23:08:21 +00001528 getStreamer().getCurrentSection().first) {
Kevin Enderby938482f2012-11-01 17:31:35 +00001529
Eli Benderskyed5df012013-01-16 19:32:36 +00001530 unsigned Line = SrcMgr.FindLineNumber(IDLoc, CurBuffer);
Kevin Enderby938482f2012-11-01 17:31:35 +00001531
Eli Benderskyed5df012013-01-16 19:32:36 +00001532 // If we previously parsed a cpp hash file line comment then make sure the
1533 // current Dwarf File is for the CppHashFilename if not then emit the
1534 // Dwarf File table for it and adjust the line number for the .loc.
Vladimir Medic7b0a7962013-08-20 13:33:18 +00001535 const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles =
Jim Grosbach4a200922013-09-20 23:08:21 +00001536 getContext().getMCDwarfFiles();
Eli Benderskyed5df012013-01-16 19:32:36 +00001537 if (CppHashFilename.size() != 0) {
1538 if (MCDwarfFiles[getContext().getGenDwarfFileNumber()]->getName() !=
Kevin Enderby938482f2012-11-01 17:31:35 +00001539 CppHashFilename)
Eli Benderskyed5df012013-01-16 19:32:36 +00001540 getStreamer().EmitDwarfFileDirective(
Jim Grosbach4a200922013-09-20 23:08:21 +00001541 getContext().nextGenDwarfFileNumber(), StringRef(),
1542 CppHashFilename);
Kevin Enderby938482f2012-11-01 17:31:35 +00001543
Jim Grosbach4a200922013-09-20 23:08:21 +00001544 // Since SrcMgr.FindLineNumber() is slow and messes up the SourceMgr's
1545 // cache with the different Loc from the call above we save the last
1546 // info we queried here with SrcMgr.FindLineNumber().
1547 unsigned CppHashLocLineNo;
1548 if (LastQueryIDLoc == CppHashLoc && LastQueryBuffer == CppHashBuf)
1549 CppHashLocLineNo = LastQueryLine;
1550 else {
1551 CppHashLocLineNo = SrcMgr.FindLineNumber(CppHashLoc, CppHashBuf);
1552 LastQueryLine = CppHashLocLineNo;
1553 LastQueryIDLoc = CppHashLoc;
1554 LastQueryBuffer = CppHashBuf;
1555 }
1556 Line = CppHashLineNumber - 1 + (Line - CppHashLocLineNo);
Eli Benderskyed5df012013-01-16 19:32:36 +00001557 }
Kevin Enderby938482f2012-11-01 17:31:35 +00001558
Jim Grosbach4a200922013-09-20 23:08:21 +00001559 getStreamer().EmitDwarfLocDirective(
1560 getContext().getGenDwarfFileNumber(), Line, 0,
1561 DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0, 0, 0,
1562 StringRef());
Kevin Enderby613b7572011-11-01 22:27:22 +00001563 }
1564
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001565 // If parsing succeeded, match the instruction.
Chad Rosier84125ca2012-10-13 00:26:04 +00001566 if (!HadError) {
Chad Rosier84125ca2012-10-13 00:26:04 +00001567 unsigned ErrorInfo;
Jim Grosbach4a200922013-09-20 23:08:21 +00001568 HadError = getTargetParser().MatchAndEmitInstruction(
1569 IDLoc, Info.Opcode, Info.ParsedOperands, Out, ErrorInfo,
1570 ParsingInlineAsm);
Chad Rosier84125ca2012-10-13 00:26:04 +00001571 }
Chris Lattner98986712010-01-14 22:21:20 +00001572
Chris Lattnercbf8a982010-09-11 16:18:25 +00001573 // Don't skip the rest of the line, the instruction parser is responsible for
1574 // that.
1575 return false;
Chris Lattner27aa7d22009-06-21 20:16:42 +00001576}
Chris Lattner9a023f72009-06-24 04:43:34 +00001577
Jim Grosbach4a200922013-09-20 23:08:21 +00001578/// eatToEndOfLine uses the Lexer to eat the characters to the end of the line
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001579/// since they may not be able to be tokenized to get to the end of line token.
Jim Grosbach4a200922013-09-20 23:08:21 +00001580void AsmParser::eatToEndOfLine() {
Rafael Espindola12ae5272011-10-19 18:48:52 +00001581 if (!Lexer.is(AsmToken::EndOfStatement))
1582 Lexer.LexUntilEndOfLine();
Jim Grosbach4a200922013-09-20 23:08:21 +00001583 // Eat EOL.
1584 Lex();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001585}
1586
Jim Grosbach4a200922013-09-20 23:08:21 +00001587/// parseCppHashLineFilenameComment as this:
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001588/// ::= # number "filename"
1589/// or just as a full line comment if it doesn't have a number and a string.
Jim Grosbach4a200922013-09-20 23:08:21 +00001590bool AsmParser::parseCppHashLineFilenameComment(const SMLoc &L) {
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001591 Lex(); // Eat the hash token.
1592
1593 if (getLexer().isNot(AsmToken::Integer)) {
1594 // Consume the line since in cases it is not a well-formed line directive,
1595 // as if were simply a full line comment.
Jim Grosbach4a200922013-09-20 23:08:21 +00001596 eatToEndOfLine();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001597 return false;
1598 }
1599
1600 int64_t LineNumber = getTok().getIntVal();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001601 Lex();
1602
1603 if (getLexer().isNot(AsmToken::String)) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001604 eatToEndOfLine();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001605 return false;
1606 }
1607
1608 StringRef Filename = getTok().getString();
1609 // Get rid of the enclosing quotes.
Jim Grosbach4a200922013-09-20 23:08:21 +00001610 Filename = Filename.substr(1, Filename.size() - 2);
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001611
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001612 // Save the SMLoc, Filename and LineNumber for later use by diagnostics.
1613 CppHashLoc = L;
1614 CppHashFilename = Filename;
1615 CppHashLineNumber = LineNumber;
Kevin Enderby32c1a822012-11-05 21:55:41 +00001616 CppHashBuf = CurBuffer;
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001617
1618 // Ignore any trailing characters, they're just comment.
Jim Grosbach4a200922013-09-20 23:08:21 +00001619 eatToEndOfLine();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001620 return false;
1621}
1622
Jim Grosbach4a200922013-09-20 23:08:21 +00001623/// \brief will use the last parsed cpp hash line filename comment
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001624/// for the Filename and LineNo if any in the diagnostic.
1625void AsmParser::DiagHandler(const SMDiagnostic &Diag, void *Context) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001626 const AsmParser *Parser = static_cast<const AsmParser *>(Context);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001627 raw_ostream &OS = errs();
1628
1629 const SourceMgr &DiagSrcMgr = *Diag.getSourceMgr();
1630 const SMLoc &DiagLoc = Diag.getLoc();
1631 int DiagBuf = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
1632 int CppHashBuf = Parser->SrcMgr.FindBufferContainingLoc(Parser->CppHashLoc);
1633
Jim Grosbach4a200922013-09-20 23:08:21 +00001634 // Like SourceMgr::printMessage() we need to print the include stack if any
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001635 // before printing the message.
1636 int DiagCurBuffer = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
Benjamin Kramer04a04262011-10-16 10:48:29 +00001637 if (!Parser->SavedDiagHandler && DiagCurBuffer > 0) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001638 SMLoc ParentIncludeLoc = DiagSrcMgr.getParentIncludeLoc(DiagCurBuffer);
1639 DiagSrcMgr.PrintIncludeStack(ParentIncludeLoc, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001640 }
1641
Eric Christopher2318ba12012-12-18 00:30:54 +00001642 // If we have not parsed a cpp hash line filename comment or the source
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001643 // manager changed or buffer changed (like in a nested include) then just
1644 // print the normal diagnostic using its Filename and LineNo.
Jim Grosbach4a200922013-09-20 23:08:21 +00001645 if (!Parser->CppHashLineNumber || &DiagSrcMgr != &Parser->SrcMgr ||
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001646 DiagBuf != CppHashBuf) {
Benjamin Kramer04a04262011-10-16 10:48:29 +00001647 if (Parser->SavedDiagHandler)
1648 Parser->SavedDiagHandler(Diag, Parser->SavedDiagContext);
1649 else
1650 Diag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001651 return;
1652 }
1653
Eric Christopher2318ba12012-12-18 00:30:54 +00001654 // Use the CppHashFilename and calculate a line number based on the
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001655 // CppHashLoc and CppHashLineNumber relative to this Diag's SMLoc for
1656 // the diagnostic.
Jakub Staszakb06ea252013-09-16 22:03:38 +00001657 const std::string &Filename = Parser->CppHashFilename;
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001658
1659 int DiagLocLineNo = DiagSrcMgr.FindLineNumber(DiagLoc, DiagBuf);
1660 int CppHashLocLineNo =
1661 Parser->SrcMgr.FindLineNumber(Parser->CppHashLoc, CppHashBuf);
Jim Grosbach4a200922013-09-20 23:08:21 +00001662 int LineNo =
1663 Parser->CppHashLineNumber - 1 + (DiagLocLineNo - CppHashLocLineNo);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001664
Jim Grosbach4a200922013-09-20 23:08:21 +00001665 SMDiagnostic NewDiag(*Diag.getSourceMgr(), Diag.getLoc(), Filename, LineNo,
1666 Diag.getColumnNo(), Diag.getKind(), Diag.getMessage(),
Chris Lattner462b43c2011-10-16 05:47:55 +00001667 Diag.getLineContents(), Diag.getRanges());
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001668
Benjamin Kramer04a04262011-10-16 10:48:29 +00001669 if (Parser->SavedDiagHandler)
1670 Parser->SavedDiagHandler(NewDiag, Parser->SavedDiagContext);
1671 else
1672 NewDiag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001673}
1674
Rafael Espindola799aacf2012-08-21 18:29:30 +00001675// FIXME: This is mostly duplicated from the function in AsmLexer.cpp. The
1676// difference being that that function accepts '@' as part of identifiers and
1677// we can't do that. AsmLexer.cpp should probably be changed to handle
1678// '@' as a special case when needed.
1679static bool isIdentifierChar(char c) {
Guy Benyei87d0b9e2013-02-12 21:21:59 +00001680 return isalnum(static_cast<unsigned char>(c)) || c == '_' || c == '$' ||
1681 c == '.';
Rafael Espindola799aacf2012-08-21 18:29:30 +00001682}
1683
Rafael Espindola761cb062012-06-03 23:57:14 +00001684bool AsmParser::expandMacro(raw_svector_ostream &OS, StringRef Body,
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001685 const MCAsmMacroParameters &Parameters,
Jim Grosbach4a200922013-09-20 23:08:21 +00001686 const MCAsmMacroArguments &A, const SMLoc &L) {
Rafael Espindola65366442011-06-05 02:43:45 +00001687 unsigned NParameters = Parameters.size();
1688 if (NParameters != 0 && NParameters != A.size())
1689 return Error(L, "Wrong number of arguments");
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001690
Preston Gurd7b6f2032012-09-19 20:36:12 +00001691 // A macro without parameters is handled differently on Darwin:
1692 // gas accepts no arguments and does no substitutions
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001693 while (!Body.empty()) {
1694 // Scan for the next substitution.
1695 std::size_t End = Body.size(), Pos = 0;
1696 for (; Pos != End; ++Pos) {
1697 // Check for a substitution or escape.
Rafael Espindola65366442011-06-05 02:43:45 +00001698 if (!NParameters) {
1699 // This macro has no parameters, look for $0, $1, etc.
1700 if (Body[Pos] != '$' || Pos + 1 == End)
1701 continue;
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001702
Rafael Espindola65366442011-06-05 02:43:45 +00001703 char Next = Body[Pos + 1];
Guy Benyei87d0b9e2013-02-12 21:21:59 +00001704 if (Next == '$' || Next == 'n' ||
1705 isdigit(static_cast<unsigned char>(Next)))
Rafael Espindola65366442011-06-05 02:43:45 +00001706 break;
1707 } else {
1708 // This macro has parameters, look for \foo, \bar, etc.
1709 if (Body[Pos] == '\\' && Pos + 1 != End)
1710 break;
1711 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001712 }
1713
1714 // Add the prefix.
1715 OS << Body.slice(0, Pos);
1716
1717 // Check if we reached the end.
1718 if (Pos == End)
1719 break;
1720
Rafael Espindola65366442011-06-05 02:43:45 +00001721 if (!NParameters) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001722 switch (Body[Pos + 1]) {
1723 // $$ => $
Rafael Espindola65366442011-06-05 02:43:45 +00001724 case '$':
1725 OS << '$';
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001726 break;
1727
Jim Grosbach4a200922013-09-20 23:08:21 +00001728 // $n => number of arguments
Rafael Espindola65366442011-06-05 02:43:45 +00001729 case 'n':
1730 OS << A.size();
1731 break;
1732
Jim Grosbach4a200922013-09-20 23:08:21 +00001733 // $[0-9] => argument
Rafael Espindola65366442011-06-05 02:43:45 +00001734 default: {
1735 // Missing arguments are ignored.
Jim Grosbach4a200922013-09-20 23:08:21 +00001736 unsigned Index = Body[Pos + 1] - '0';
Rafael Espindola65366442011-06-05 02:43:45 +00001737 if (Index >= A.size())
1738 break;
1739
1740 // Otherwise substitute with the token values, with spaces eliminated.
Eli Bendersky9bac6b22013-01-14 19:00:26 +00001741 for (MCAsmMacroArgument::const_iterator it = A[Index].begin(),
Jim Grosbach4a200922013-09-20 23:08:21 +00001742 ie = A[Index].end();
1743 it != ie; ++it)
Rafael Espindola65366442011-06-05 02:43:45 +00001744 OS << it->getString();
1745 break;
1746 }
1747 }
1748 Pos += 2;
1749 } else {
1750 unsigned I = Pos + 1;
Rafael Espindola799aacf2012-08-21 18:29:30 +00001751 while (isIdentifierChar(Body[I]) && I + 1 != End)
Rafael Espindola65366442011-06-05 02:43:45 +00001752 ++I;
1753
Jim Grosbach4a200922013-09-20 23:08:21 +00001754 const char *Begin = Body.data() + Pos + 1;
1755 StringRef Argument(Begin, I - (Pos + 1));
Rafael Espindola65366442011-06-05 02:43:45 +00001756 unsigned Index = 0;
1757 for (; Index < NParameters; ++Index)
Preston Gurd6c9176a2012-09-19 20:29:04 +00001758 if (Parameters[Index].first == Argument)
Rafael Espindola65366442011-06-05 02:43:45 +00001759 break;
1760
Preston Gurd7b6f2032012-09-19 20:36:12 +00001761 if (Index == NParameters) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001762 if (Body[Pos + 1] == '(' && Body[Pos + 2] == ')')
1763 Pos += 3;
1764 else {
1765 OS << '\\' << Argument;
1766 Pos = I;
1767 }
Preston Gurd7b6f2032012-09-19 20:36:12 +00001768 } else {
Eli Bendersky9bac6b22013-01-14 19:00:26 +00001769 for (MCAsmMacroArgument::const_iterator it = A[Index].begin(),
Jim Grosbach4a200922013-09-20 23:08:21 +00001770 ie = A[Index].end();
1771 it != ie; ++it)
Preston Gurd7b6f2032012-09-19 20:36:12 +00001772 if (it->getKind() == AsmToken::String)
1773 OS << it->getStringContents();
1774 else
1775 OS << it->getString();
Rafael Espindola65366442011-06-05 02:43:45 +00001776
Preston Gurd7b6f2032012-09-19 20:36:12 +00001777 Pos += 1 + Argument.size();
1778 }
Rafael Espindola65366442011-06-05 02:43:45 +00001779 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001780 // Update the scan point.
Rafael Espindola65366442011-06-05 02:43:45 +00001781 Body = Body.substr(Pos);
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001782 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001783
Rafael Espindola65366442011-06-05 02:43:45 +00001784 return false;
1785}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001786
Jim Grosbach4a200922013-09-20 23:08:21 +00001787MacroInstantiation::MacroInstantiation(const MCAsmMacro *M, SMLoc IL, int EB,
1788 SMLoc EL, MemoryBuffer *I)
1789 : TheMacro(M), Instantiation(I), InstantiationLoc(IL), ExitBuffer(EB),
1790 ExitLoc(EL) {}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001791
Jim Grosbach4a200922013-09-20 23:08:21 +00001792static bool isOperator(AsmToken::TokenKind kind) {
1793 switch (kind) {
1794 default:
1795 return false;
1796 case AsmToken::Plus:
1797 case AsmToken::Minus:
1798 case AsmToken::Tilde:
1799 case AsmToken::Slash:
1800 case AsmToken::Star:
1801 case AsmToken::Dot:
1802 case AsmToken::Equal:
1803 case AsmToken::EqualEqual:
1804 case AsmToken::Pipe:
1805 case AsmToken::PipePipe:
1806 case AsmToken::Caret:
1807 case AsmToken::Amp:
1808 case AsmToken::AmpAmp:
1809 case AsmToken::Exclaim:
1810 case AsmToken::ExclaimEqual:
1811 case AsmToken::Percent:
1812 case AsmToken::Less:
1813 case AsmToken::LessEqual:
1814 case AsmToken::LessLess:
1815 case AsmToken::LessGreater:
1816 case AsmToken::Greater:
1817 case AsmToken::GreaterEqual:
1818 case AsmToken::GreaterGreater:
1819 return true;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001820 }
1821}
1822
Jim Grosbach4a200922013-09-20 23:08:21 +00001823bool AsmParser::parseMacroArgument(MCAsmMacroArgument &MA,
Preston Gurd7b6f2032012-09-19 20:36:12 +00001824 AsmToken::TokenKind &ArgumentDelimiter) {
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001825 unsigned ParenLevel = 0;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001826 unsigned AddTokens = 0;
1827
1828 // gas accepts arguments separated by whitespace, except on Darwin
1829 if (!IsDarwin)
1830 Lexer.setSkipSpace(false);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001831
1832 for (;;) {
Preston Gurd7b6f2032012-09-19 20:36:12 +00001833 if (Lexer.is(AsmToken::Eof) || Lexer.is(AsmToken::Equal)) {
1834 Lexer.setSkipSpace(true);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001835 return TokError("unexpected token in macro instantiation");
Preston Gurd7b6f2032012-09-19 20:36:12 +00001836 }
1837
1838 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1839 // Spaces and commas cannot be mixed to delimit parameters
1840 if (ArgumentDelimiter == AsmToken::Eof)
1841 ArgumentDelimiter = AsmToken::Comma;
1842 else if (ArgumentDelimiter != AsmToken::Comma) {
1843 Lexer.setSkipSpace(true);
1844 return TokError("expected ' ' for macro argument separator");
1845 }
1846 break;
1847 }
1848
1849 if (Lexer.is(AsmToken::Space)) {
1850 Lex(); // Eat spaces
1851
1852 // Spaces can delimit parameters, but could also be part an expression.
1853 // If the token after a space is an operator, add the token and the next
1854 // one into this argument
1855 if (ArgumentDelimiter == AsmToken::Space ||
1856 ArgumentDelimiter == AsmToken::Eof) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001857 if (isOperator(Lexer.getKind())) {
Preston Gurd7b6f2032012-09-19 20:36:12 +00001858 // Check to see whether the token is used as an operator,
1859 // or part of an identifier
Jordan Rose3ebe59c2013-01-07 19:00:49 +00001860 const char *NextChar = getTok().getEndLoc().getPointer();
Preston Gurd7b6f2032012-09-19 20:36:12 +00001861 if (*NextChar == ' ')
1862 AddTokens = 2;
1863 }
1864
1865 if (!AddTokens && ParenLevel == 0) {
1866 if (ArgumentDelimiter == AsmToken::Eof &&
Jim Grosbach4a200922013-09-20 23:08:21 +00001867 !isOperator(Lexer.getKind()))
Preston Gurd7b6f2032012-09-19 20:36:12 +00001868 ArgumentDelimiter = AsmToken::Space;
1869 break;
1870 }
1871 }
1872 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001873
Jim Grosbach4a200922013-09-20 23:08:21 +00001874 // handleMacroEntry relies on not advancing the lexer here
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001875 // to be able to fill in the remaining default parameter values
1876 if (Lexer.is(AsmToken::EndOfStatement))
1877 break;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001878
1879 // Adjust the current parentheses level.
1880 if (Lexer.is(AsmToken::LParen))
1881 ++ParenLevel;
1882 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1883 --ParenLevel;
1884
1885 // Append the token to the current argument list.
1886 MA.push_back(getTok());
Preston Gurd7b6f2032012-09-19 20:36:12 +00001887 if (AddTokens)
1888 AddTokens--;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001889 Lex();
1890 }
Preston Gurd7b6f2032012-09-19 20:36:12 +00001891
1892 Lexer.setSkipSpace(true);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001893 if (ParenLevel != 0)
Rafael Espindola76ac2002012-08-21 15:55:04 +00001894 return TokError("unbalanced parentheses in macro argument");
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001895 return false;
1896}
1897
1898// Parse the macro instantiation arguments.
Jim Grosbach4a200922013-09-20 23:08:21 +00001899bool AsmParser::parseMacroArguments(const MCAsmMacro *M,
Vladimir Medic7b0a7962013-08-20 13:33:18 +00001900 MCAsmMacroArguments &A) {
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001901 const unsigned NParameters = M ? M->Parameters.size() : 0;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001902 // Argument delimiter is initially unknown. It will be set by
Jim Grosbach4a200922013-09-20 23:08:21 +00001903 // parseMacroArgument()
Preston Gurd7b6f2032012-09-19 20:36:12 +00001904 AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001905
1906 // Parse two kinds of macro invocations:
1907 // - macros defined without any parameters accept an arbitrary number of them
1908 // - macros defined with parameters accept at most that many of them
1909 for (unsigned Parameter = 0; !NParameters || Parameter < NParameters;
1910 ++Parameter) {
Eli Bendersky9bac6b22013-01-14 19:00:26 +00001911 MCAsmMacroArgument MA;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001912
Jim Grosbach4a200922013-09-20 23:08:21 +00001913 if (parseMacroArgument(MA, ArgumentDelimiter))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001914 return true;
1915
Preston Gurd6c9176a2012-09-19 20:29:04 +00001916 if (!MA.empty() || !NParameters)
1917 A.push_back(MA);
1918 else if (NParameters) {
1919 if (!M->Parameters[Parameter].second.empty())
1920 A.push_back(M->Parameters[Parameter].second);
1921 }
Jim Grosbach97146442012-07-30 22:44:17 +00001922
Preston Gurd6c9176a2012-09-19 20:29:04 +00001923 // At the end of the statement, fill in remaining arguments that have
1924 // default values. If there aren't any, then the next argument is
1925 // required but missing
1926 if (Lexer.is(AsmToken::EndOfStatement)) {
1927 if (NParameters && Parameter < NParameters - 1) {
1928 if (M->Parameters[Parameter + 1].second.empty())
1929 return TokError("macro argument '" +
1930 Twine(M->Parameters[Parameter + 1].first) +
1931 "' is missing");
1932 else
1933 continue;
1934 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001935 return false;
Preston Gurd6c9176a2012-09-19 20:29:04 +00001936 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001937
1938 if (Lexer.is(AsmToken::Comma))
1939 Lex();
1940 }
1941 return TokError("Too many arguments");
1942}
1943
Jim Grosbach4a200922013-09-20 23:08:21 +00001944const MCAsmMacro *AsmParser::lookupMacro(StringRef Name) {
1945 StringMap<MCAsmMacro *>::iterator I = MacroMap.find(Name);
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001946 return (I == MacroMap.end()) ? NULL : I->getValue();
1947}
1948
Jim Grosbach4a200922013-09-20 23:08:21 +00001949void AsmParser::defineMacro(StringRef Name, const MCAsmMacro &Macro) {
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001950 MacroMap[Name] = new MCAsmMacro(Macro);
1951}
1952
Jim Grosbach4a200922013-09-20 23:08:21 +00001953void AsmParser::undefineMacro(StringRef Name) {
1954 StringMap<MCAsmMacro *>::iterator I = MacroMap.find(Name);
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001955 if (I != MacroMap.end()) {
1956 delete I->getValue();
1957 MacroMap.erase(I);
1958 }
1959}
1960
Jim Grosbach4a200922013-09-20 23:08:21 +00001961bool AsmParser::handleMacroEntry(const MCAsmMacro *M, SMLoc NameLoc) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001962 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1963 // this, although we should protect against infinite loops.
1964 if (ActiveMacros.size() == 20)
1965 return TokError("macros cannot be nested more than 20 levels deep");
1966
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001967 MCAsmMacroArguments A;
Jim Grosbach4a200922013-09-20 23:08:21 +00001968 if (parseMacroArguments(M, A))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001969 return true;
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001970
Jim Grosbach97146442012-07-30 22:44:17 +00001971 // Remove any trailing empty arguments. Do this after-the-fact as we have
1972 // to keep empty arguments in the middle of the list or positionality
1973 // gets off. e.g., "foo 1, , 2" vs. "foo 1, 2,"
Rafael Espindola8a403d32012-08-08 14:51:03 +00001974 while (!A.empty() && A.back().empty())
1975 A.pop_back();
Jim Grosbach97146442012-07-30 22:44:17 +00001976
Rafael Espindola65366442011-06-05 02:43:45 +00001977 // Macro instantiation is lexical, unfortunately. We construct a new buffer
1978 // to hold the macro body with substitutions.
1979 SmallString<256> Buf;
1980 StringRef Body = M->Body;
Rafael Espindola761cb062012-06-03 23:57:14 +00001981 raw_svector_ostream OS(Buf);
Rafael Espindola65366442011-06-05 02:43:45 +00001982
Rafael Espindola8a403d32012-08-08 14:51:03 +00001983 if (expandMacro(OS, Body, M->Parameters, A, getTok().getLoc()))
Rafael Espindola65366442011-06-05 02:43:45 +00001984 return true;
1985
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001986 // We include the .endmacro in the buffer as our cue to exit the macro
Rafael Espindola761cb062012-06-03 23:57:14 +00001987 // instantiation.
1988 OS << ".endmacro\n";
1989
Rafael Espindola65366442011-06-05 02:43:45 +00001990 MemoryBuffer *Instantiation =
Jim Grosbach4a200922013-09-20 23:08:21 +00001991 MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Rafael Espindola65366442011-06-05 02:43:45 +00001992
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001993 // Create the macro instantiation object and add to the current macro
1994 // instantiation stack.
Jim Grosbach4a200922013-09-20 23:08:21 +00001995 MacroInstantiation *MI = new MacroInstantiation(
1996 M, NameLoc, CurBuffer, getTok().getLoc(), Instantiation);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001997 ActiveMacros.push_back(MI);
1998
1999 // Jump to the macro instantiation and prime the lexer.
2000 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
2001 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
2002 Lex();
2003
2004 return false;
2005}
2006
Jim Grosbach4a200922013-09-20 23:08:21 +00002007void AsmParser::handleMacroExit() {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00002008 // Jump to the EndOfStatement we should return to, and consume it.
Jim Grosbach4a200922013-09-20 23:08:21 +00002009 jumpToLoc(ActiveMacros.back()->ExitLoc, ActiveMacros.back()->ExitBuffer);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00002010 Lex();
2011
2012 // Pop the instantiation entry.
2013 delete ActiveMacros.back();
2014 ActiveMacros.pop_back();
2015}
2016
Jim Grosbach4a200922013-09-20 23:08:21 +00002017static bool isUsedIn(const MCSymbol *Sym, const MCExpr *Value) {
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002018 switch (Value->getKind()) {
Rafael Espindolae71cc862012-01-28 05:57:00 +00002019 case MCExpr::Binary: {
Jim Grosbach4a200922013-09-20 23:08:21 +00002020 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr *>(Value);
2021 return isUsedIn(Sym, BE->getLHS()) || isUsedIn(Sym, BE->getRHS());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002022 }
Rafael Espindolae71cc862012-01-28 05:57:00 +00002023 case MCExpr::Target:
2024 case MCExpr::Constant:
2025 return false;
2026 case MCExpr::SymbolRef: {
Jim Grosbach4a200922013-09-20 23:08:21 +00002027 const MCSymbol &S =
2028 static_cast<const MCSymbolRefExpr *>(Value)->getSymbol();
Rafael Espindola8b01c822012-01-28 06:22:14 +00002029 if (S.isVariable())
Jim Grosbach4a200922013-09-20 23:08:21 +00002030 return isUsedIn(Sym, S.getVariableValue());
Rafael Espindola8b01c822012-01-28 06:22:14 +00002031 return &S == Sym;
Rafael Espindolae71cc862012-01-28 05:57:00 +00002032 }
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002033 case MCExpr::Unary:
Jim Grosbach4a200922013-09-20 23:08:21 +00002034 return isUsedIn(Sym, static_cast<const MCUnaryExpr *>(Value)->getSubExpr());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002035 }
Benjamin Kramer518ff562012-01-28 15:28:41 +00002036
2037 llvm_unreachable("Unknown expr kind!");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002038}
2039
Jim Grosbach4a200922013-09-20 23:08:21 +00002040bool AsmParser::parseAssignment(StringRef Name, bool allow_redef,
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00002041 bool NoDeadStrip) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00002042 // FIXME: Use better location, we should use proper tokens.
2043 SMLoc EqualLoc = Lexer.getLoc();
2044
Daniel Dunbar821e3332009-08-31 08:09:28 +00002045 const MCExpr *Value;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002046 if (parseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002047 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002048
Rafael Espindolae71cc862012-01-28 05:57:00 +00002049 // Note: we don't count b as used in "a = b". This is to allow
2050 // a = b
2051 // b = c
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002052
Daniel Dunbar3f872332009-07-28 16:08:33 +00002053 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002054 return TokError("unexpected token in assignment");
2055
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00002056 // Error on assignment to '.'.
2057 if (Name == ".") {
2058 return Error(EqualLoc, ("assignment to pseudo-symbol '.' is unsupported "
2059 "(use '.space' or '.org').)"));
2060 }
2061
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002062 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00002063 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002064
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002065 // Validate that the LHS is allowed to be a variable (either it has not been
2066 // used as a symbol, or it is an absolute symbol).
2067 MCSymbol *Sym = getContext().LookupSymbol(Name);
2068 if (Sym) {
2069 // Diagnose assignment to a label.
2070 //
2071 // FIXME: Diagnostics. Note the location of the definition as a label.
2072 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Jim Grosbach4a200922013-09-20 23:08:21 +00002073 if (isUsedIn(Sym, Value))
Rafael Espindolae71cc862012-01-28 05:57:00 +00002074 return Error(EqualLoc, "Recursive use of '" + Name + "'");
2075 else if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
Daniel Dunbar525a3a62010-05-17 17:46:23 +00002076 ; // Allow redefinitions of undefined symbols only used in directives.
Jim Grosbach48c95332012-03-20 21:33:21 +00002077 else if (Sym->isVariable() && !Sym->isUsed() && allow_redef)
2078 ; // Allow redefinitions of variables that haven't yet been used.
Daniel Dunbar6db7fe82011-04-29 17:53:11 +00002079 else if (!Sym->isUndefined() && (!Sym->isVariable() || !allow_redef))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002080 return Error(EqualLoc, "redefinition of '" + Name + "'");
2081 else if (!Sym->isVariable())
2082 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00002083 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002084 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
Jim Grosbach4a200922013-09-20 23:08:21 +00002085 Name + "'");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002086
2087 // Don't count these checks as uses.
2088 Sym->setUsed(false);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002089 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00002090 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002091
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002092 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00002093
2094 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00002095 Out.EmitAssignment(Sym, Value);
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00002096 if (NoDeadStrip)
2097 Out.EmitSymbolAttribute(Sym, MCSA_NoDeadStrip);
2098
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002099 return false;
2100}
2101
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002102/// parseIdentifier:
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002103/// ::= identifier
2104/// ::= string
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002105bool AsmParser::parseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00002106 // The assembler has relaxed rules for accepting identifiers, in particular we
2107 // allow things like '.globl $foo', which would normally be separate
2108 // tokens. At this level, we have already lexed so we cannot (currently)
2109 // handle this as a context dependent token, instead we detect adjacent tokens
2110 // and return the combined identifier.
2111 if (Lexer.is(AsmToken::Dollar)) {
2112 SMLoc DollarLoc = getLexer().getLoc();
2113
2114 // Consume the dollar sign, and check for a following identifier.
2115 Lex();
2116 if (Lexer.isNot(AsmToken::Identifier))
2117 return true;
2118
2119 // We have a '$' followed by an identifier, make sure they are adjacent.
2120 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
2121 return true;
2122
2123 // Construct the joined identifier and consume the token.
Jim Grosbach4a200922013-09-20 23:08:21 +00002124 Res =
2125 StringRef(DollarLoc.getPointer(), getTok().getIdentifier().size() + 1);
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00002126 Lex();
2127 return false;
2128 }
2129
Jim Grosbach4a200922013-09-20 23:08:21 +00002130 if (Lexer.isNot(AsmToken::Identifier) && Lexer.isNot(AsmToken::String))
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002131 return true;
2132
Sean Callanan18b83232010-01-19 21:44:56 +00002133 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002134
Sean Callanan79ed1a82010-01-19 20:22:31 +00002135 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002136
2137 return false;
2138}
2139
Jim Grosbach4a200922013-09-20 23:08:21 +00002140/// parseDirectiveSet:
Nico Weber4c4c7322011-01-28 03:04:41 +00002141/// ::= .equ identifier ',' expression
2142/// ::= .equiv identifier ',' expression
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002143/// ::= .set identifier ',' expression
Jim Grosbach4a200922013-09-20 23:08:21 +00002144bool AsmParser::parseDirectiveSet(StringRef IDVal, bool allow_redef) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002145 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002146
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002147 if (parseIdentifier(Name))
Roman Divackyf9d17522010-10-28 16:57:58 +00002148 return TokError("expected identifier after '" + Twine(IDVal) + "'");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002149
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002150 if (getLexer().isNot(AsmToken::Comma))
Roman Divackyf9d17522010-10-28 16:57:58 +00002151 return TokError("unexpected token in '" + Twine(IDVal) + "'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002152 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002153
Jim Grosbach4a200922013-09-20 23:08:21 +00002154 return parseAssignment(Name, allow_redef, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002155}
2156
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002157bool AsmParser::parseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002158 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002159
2160 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00002161 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002162 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
2163 if (Str[i] != '\\') {
2164 Data += Str[i];
2165 continue;
2166 }
2167
2168 // Recognize escaped characters. Note that this escape semantics currently
2169 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
2170 ++i;
2171 if (i == e)
2172 return TokError("unexpected backslash at end of string");
2173
2174 // Recognize octal sequences.
Jim Grosbach4a200922013-09-20 23:08:21 +00002175 if ((unsigned)(Str[i] - '0') <= 7) {
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002176 // Consume up to three octal characters.
2177 unsigned Value = Str[i] - '0';
2178
Jim Grosbach4a200922013-09-20 23:08:21 +00002179 if (i + 1 != e && ((unsigned)(Str[i + 1] - '0')) <= 7) {
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002180 ++i;
2181 Value = Value * 8 + (Str[i] - '0');
2182
Jim Grosbach4a200922013-09-20 23:08:21 +00002183 if (i + 1 != e && ((unsigned)(Str[i + 1] - '0')) <= 7) {
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002184 ++i;
2185 Value = Value * 8 + (Str[i] - '0');
2186 }
2187 }
2188
2189 if (Value > 255)
2190 return TokError("invalid octal escape sequence (out of range)");
2191
Jim Grosbach4a200922013-09-20 23:08:21 +00002192 Data += (unsigned char)Value;
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002193 continue;
2194 }
2195
2196 // Otherwise recognize individual escapes.
2197 switch (Str[i]) {
2198 default:
2199 // Just reject invalid escape sequences for now.
2200 return TokError("invalid escape sequence (unrecognized character)");
2201
2202 case 'b': Data += '\b'; break;
2203 case 'f': Data += '\f'; break;
2204 case 'n': Data += '\n'; break;
2205 case 'r': Data += '\r'; break;
2206 case 't': Data += '\t'; break;
2207 case '"': Data += '"'; break;
2208 case '\\': Data += '\\'; break;
2209 }
2210 }
2211
2212 return false;
2213}
2214
Jim Grosbach4a200922013-09-20 23:08:21 +00002215/// parseDirectiveAscii:
Rafael Espindola787c3372010-10-28 20:02:27 +00002216/// ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
Jim Grosbach4a200922013-09-20 23:08:21 +00002217bool AsmParser::parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002218 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002219 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002220
Daniel Dunbara0d14262009-06-24 23:30:00 +00002221 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002222 if (getLexer().isNot(AsmToken::String))
Rafael Espindola787c3372010-10-28 20:02:27 +00002223 return TokError("expected string in '" + Twine(IDVal) + "' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002224
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002225 std::string Data;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002226 if (parseEscapedString(Data))
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002227 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002228
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002229 getStreamer().EmitBytes(Data);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002230 if (ZeroTerminated)
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002231 getStreamer().EmitBytes(StringRef("\0", 1));
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002232
Sean Callanan79ed1a82010-01-19 20:22:31 +00002233 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002234
2235 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002236 break;
2237
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002238 if (getLexer().isNot(AsmToken::Comma))
Rafael Espindola787c3372010-10-28 20:02:27 +00002239 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002240 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002241 }
2242 }
2243
Sean Callanan79ed1a82010-01-19 20:22:31 +00002244 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002245 return false;
2246}
2247
Jim Grosbach4a200922013-09-20 23:08:21 +00002248/// parseDirectiveValue
Daniel Dunbara0d14262009-06-24 23:30:00 +00002249/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
Jim Grosbach4a200922013-09-20 23:08:21 +00002250bool AsmParser::parseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002251 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002252 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002253
Daniel Dunbara0d14262009-06-24 23:30:00 +00002254 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00002255 const MCExpr *Value;
Jim Grosbach254cf032011-06-29 16:05:14 +00002256 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002257 if (parseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002258 return true;
2259
Daniel Dunbar414c0c42010-05-23 18:36:38 +00002260 // Special case constant expressions to match code generator.
Jim Grosbach254cf032011-06-29 16:05:14 +00002261 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2262 assert(Size <= 8 && "Invalid size");
2263 uint64_t IntValue = MCE->getValue();
2264 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2265 return Error(ExprLoc, "literal value out of range for directive");
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002266 getStreamer().EmitIntValue(IntValue, Size);
Jim Grosbach254cf032011-06-29 16:05:14 +00002267 } else
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002268 getStreamer().EmitValue(Value, Size);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002269
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002270 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002271 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002272
Daniel Dunbara0d14262009-06-24 23:30:00 +00002273 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002274 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002275 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002276 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002277 }
2278 }
2279
Sean Callanan79ed1a82010-01-19 20:22:31 +00002280 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002281 return false;
2282}
2283
Jim Grosbach4a200922013-09-20 23:08:21 +00002284/// parseDirectiveRealValue
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002285/// ::= (.single | .double) [ expression (, expression)* ]
Jim Grosbach4a200922013-09-20 23:08:21 +00002286bool AsmParser::parseDirectiveRealValue(const fltSemantics &Semantics) {
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002287 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002288 checkForValidSection();
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002289
2290 for (;;) {
2291 // We don't truly support arithmetic on floating point expressions, so we
2292 // have to manually parse unary prefixes.
2293 bool IsNeg = false;
2294 if (getLexer().is(AsmToken::Minus)) {
2295 Lex();
2296 IsNeg = true;
2297 } else if (getLexer().is(AsmToken::Plus))
2298 Lex();
2299
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002300 if (getLexer().isNot(AsmToken::Integer) &&
Kevin Enderby360d8d72011-03-29 21:11:52 +00002301 getLexer().isNot(AsmToken::Real) &&
2302 getLexer().isNot(AsmToken::Identifier))
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002303 return TokError("unexpected token in directive");
2304
2305 // Convert to an APFloat.
2306 APFloat Value(Semantics);
Kevin Enderby360d8d72011-03-29 21:11:52 +00002307 StringRef IDVal = getTok().getString();
2308 if (getLexer().is(AsmToken::Identifier)) {
2309 if (!IDVal.compare_lower("infinity") || !IDVal.compare_lower("inf"))
2310 Value = APFloat::getInf(Semantics);
2311 else if (!IDVal.compare_lower("nan"))
2312 Value = APFloat::getNaN(Semantics, false, ~0);
2313 else
2314 return TokError("invalid floating point literal");
2315 } else if (Value.convertFromString(IDVal, APFloat::rmNearestTiesToEven) ==
Jim Grosbach4a200922013-09-20 23:08:21 +00002316 APFloat::opInvalidOp)
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002317 return TokError("invalid floating point literal");
2318 if (IsNeg)
2319 Value.changeSign();
2320
2321 // Consume the numeric token.
2322 Lex();
2323
2324 // Emit the value as an integer.
2325 APInt AsInt = Value.bitcastToAPInt();
2326 getStreamer().EmitIntValue(AsInt.getLimitedValue(),
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002327 AsInt.getBitWidth() / 8);
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002328
2329 if (getLexer().is(AsmToken::EndOfStatement))
2330 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002331
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002332 if (getLexer().isNot(AsmToken::Comma))
2333 return TokError("unexpected token in directive");
2334 Lex();
2335 }
2336 }
2337
2338 Lex();
2339 return false;
2340}
2341
Jim Grosbach4a200922013-09-20 23:08:21 +00002342/// parseDirectiveZero
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002343/// ::= .zero expression
Jim Grosbach4a200922013-09-20 23:08:21 +00002344bool AsmParser::parseDirectiveZero() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002345 checkForValidSection();
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002346
2347 int64_t NumBytes;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002348 if (parseAbsoluteExpression(NumBytes))
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002349 return true;
2350
Rafael Espindolae452b172010-10-05 19:42:57 +00002351 int64_t Val = 0;
2352 if (getLexer().is(AsmToken::Comma)) {
2353 Lex();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002354 if (parseAbsoluteExpression(Val))
Rafael Espindolae452b172010-10-05 19:42:57 +00002355 return true;
2356 }
2357
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002358 if (getLexer().isNot(AsmToken::EndOfStatement))
2359 return TokError("unexpected token in '.zero' directive");
2360
2361 Lex();
2362
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002363 getStreamer().EmitFill(NumBytes, Val);
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002364
2365 return false;
2366}
2367
Jim Grosbach4a200922013-09-20 23:08:21 +00002368/// parseDirectiveFill
Roman Divacky9c607102013-09-24 17:44:41 +00002369/// ::= .fill expression [ , expression [ , expression ] ]
Jim Grosbach4a200922013-09-20 23:08:21 +00002370bool AsmParser::parseDirectiveFill() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002371 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002372
Daniel Dunbara0d14262009-06-24 23:30:00 +00002373 int64_t NumValues;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002374 if (parseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002375 return true;
2376
Roman Divacky9c607102013-09-24 17:44:41 +00002377 int64_t FillSize = 1;
2378 int64_t FillExpr = 0;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002379
Roman Divacky9c607102013-09-24 17:44:41 +00002380 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2381 if (getLexer().isNot(AsmToken::Comma))
2382 return TokError("unexpected token in '.fill' directive");
2383 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002384
Roman Divacky9c607102013-09-24 17:44:41 +00002385 if (parseAbsoluteExpression(FillSize))
2386 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002387
Roman Divacky9c607102013-09-24 17:44:41 +00002388 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2389 if (getLexer().isNot(AsmToken::Comma))
2390 return TokError("unexpected token in '.fill' directive");
2391 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002392
Roman Divacky9c607102013-09-24 17:44:41 +00002393 if (parseAbsoluteExpression(FillExpr))
2394 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002395
Roman Divacky9c607102013-09-24 17:44:41 +00002396 if (getLexer().isNot(AsmToken::EndOfStatement))
2397 return TokError("unexpected token in '.fill' directive");
2398
2399 Lex();
2400 }
2401 }
Daniel Dunbara0d14262009-06-24 23:30:00 +00002402
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00002403 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
2404 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00002405
2406 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002407 getStreamer().EmitIntValue(FillExpr, FillSize);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002408
2409 return false;
2410}
Daniel Dunbarc238b582009-06-25 22:44:51 +00002411
Jim Grosbach4a200922013-09-20 23:08:21 +00002412/// parseDirectiveOrg
Daniel Dunbarc238b582009-06-25 22:44:51 +00002413/// ::= .org expression [ , expression ]
Jim Grosbach4a200922013-09-20 23:08:21 +00002414bool AsmParser::parseDirectiveOrg() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002415 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002416
Daniel Dunbar821e3332009-08-31 08:09:28 +00002417 const MCExpr *Offset;
Jim Grosbachebd4c052012-01-27 00:37:08 +00002418 SMLoc Loc = getTok().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002419 if (parseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002420 return true;
2421
2422 // Parse optional fill expression.
2423 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002424 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2425 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002426 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002427 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002428
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002429 if (parseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002430 return true;
2431
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002432 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002433 return TokError("unexpected token in '.org' directive");
2434 }
2435
Sean Callanan79ed1a82010-01-19 20:22:31 +00002436 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00002437
Jim Grosbachebd4c052012-01-27 00:37:08 +00002438 // Only limited forms of relocatable expressions are accepted here, it
2439 // has to be relative to the current section. The streamer will return
2440 // 'true' if the expression wasn't evaluatable.
2441 if (getStreamer().EmitValueToOffset(Offset, FillExpr))
2442 return Error(Loc, "expected assembly-time absolute expression");
Daniel Dunbarc238b582009-06-25 22:44:51 +00002443
2444 return false;
2445}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002446
Jim Grosbach4a200922013-09-20 23:08:21 +00002447/// parseDirectiveAlign
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002448/// ::= {.align, ...} expression [ , expression [ , expression ]]
Jim Grosbach4a200922013-09-20 23:08:21 +00002449bool AsmParser::parseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002450 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002451
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002452 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002453 int64_t Alignment;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002454 if (parseAbsoluteExpression(Alignment))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002455 return true;
2456
2457 SMLoc MaxBytesLoc;
2458 bool HasFillExpr = false;
2459 int64_t FillExpr = 0;
2460 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002461 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2462 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002463 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002464 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002465
2466 // The fill expression can be omitted while specifying a maximum number of
2467 // alignment bytes, e.g:
2468 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002469 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002470 HasFillExpr = true;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002471 if (parseAbsoluteExpression(FillExpr))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002472 return true;
2473 }
2474
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002475 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2476 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002477 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002478 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002479
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002480 MaxBytesLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002481 if (parseAbsoluteExpression(MaxBytesToFill))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002482 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002483
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002484 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002485 return TokError("unexpected token in directive");
2486 }
2487 }
2488
Sean Callanan79ed1a82010-01-19 20:22:31 +00002489 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002490
Daniel Dunbar648ac512010-05-17 21:54:30 +00002491 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002492 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002493
2494 // Compute alignment in bytes.
2495 if (IsPow2) {
2496 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002497 if (Alignment >= 32) {
2498 Error(AlignmentLoc, "invalid alignment value");
2499 Alignment = 31;
2500 }
2501
Benjamin Kramer12fd7672009-09-06 09:35:10 +00002502 Alignment = 1ULL << Alignment;
Benjamin Kramer8a89cf22013-02-16 15:00:16 +00002503 } else {
2504 // Reject alignments that aren't a power of two, for gas compatibility.
2505 if (!isPowerOf2_64(Alignment))
2506 Error(AlignmentLoc, "alignment must be a power of 2");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002507 }
2508
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002509 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002510 if (MaxBytesLoc.isValid()) {
2511 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002512 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
Jim Grosbach4a200922013-09-20 23:08:21 +00002513 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00002514 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002515 }
2516
2517 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00002518 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
Jim Grosbach4a200922013-09-20 23:08:21 +00002519 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002520 MaxBytesToFill = 0;
2521 }
2522 }
2523
Daniel Dunbar648ac512010-05-17 21:54:30 +00002524 // Check whether we should use optimal code alignment for this .align
2525 // directive.
Peter Collingbournedf39be62013-04-17 21:18:16 +00002526 bool UseCodeAlign = getStreamer().getCurrentSection().first->UseCodeAlign();
Daniel Dunbar648ac512010-05-17 21:54:30 +00002527 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
2528 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002529 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002530 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00002531 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00002532 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
2533 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002534 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002535
2536 return false;
2537}
2538
Jim Grosbach4a200922013-09-20 23:08:21 +00002539/// parseDirectiveFile
Eli Bendersky6ee13082013-01-15 22:59:42 +00002540/// ::= .file [number] filename
2541/// ::= .file number directory filename
Jim Grosbach4a200922013-09-20 23:08:21 +00002542bool AsmParser::parseDirectiveFile(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002543 // FIXME: I'm not sure what this is.
2544 int64_t FileNumber = -1;
2545 SMLoc FileNumberLoc = getLexer().getLoc();
2546 if (getLexer().is(AsmToken::Integer)) {
2547 FileNumber = getTok().getIntVal();
2548 Lex();
2549
2550 if (FileNumber < 1)
2551 return TokError("file number less than one");
2552 }
2553
2554 if (getLexer().isNot(AsmToken::String))
2555 return TokError("unexpected token in '.file' directive");
2556
2557 // Usually the directory and filename together, otherwise just the directory.
Yunzhong Gaoed119822013-09-05 19:14:26 +00002558 // Allow the strings to have escaped octal character sequence.
2559 std::string Path = getTok().getString();
2560 if (parseEscapedString(Path))
2561 return true;
Eli Bendersky6ee13082013-01-15 22:59:42 +00002562 Lex();
2563
2564 StringRef Directory;
2565 StringRef Filename;
Yunzhong Gaoed119822013-09-05 19:14:26 +00002566 std::string FilenameData;
Eli Bendersky6ee13082013-01-15 22:59:42 +00002567 if (getLexer().is(AsmToken::String)) {
2568 if (FileNumber == -1)
2569 return TokError("explicit path specified, but no file number");
Yunzhong Gaoed119822013-09-05 19:14:26 +00002570 if (parseEscapedString(FilenameData))
2571 return true;
2572 Filename = FilenameData;
Eli Bendersky6ee13082013-01-15 22:59:42 +00002573 Directory = Path;
2574 Lex();
2575 } else {
2576 Filename = Path;
2577 }
2578
2579 if (getLexer().isNot(AsmToken::EndOfStatement))
2580 return TokError("unexpected token in '.file' directive");
2581
2582 if (FileNumber == -1)
2583 getStreamer().EmitFileDirective(Filename);
2584 else {
2585 if (getContext().getGenDwarfForAssembly() == true)
Jim Grosbach4a200922013-09-20 23:08:21 +00002586 Error(DirectiveLoc,
2587 "input can't have .file dwarf directives when -g is "
2588 "used to generate dwarf debug info for assembly code");
Eli Bendersky6ee13082013-01-15 22:59:42 +00002589
2590 if (getStreamer().EmitDwarfFileDirective(FileNumber, Directory, Filename))
2591 Error(FileNumberLoc, "file number already allocated");
2592 }
2593
2594 return false;
2595}
2596
Jim Grosbach4a200922013-09-20 23:08:21 +00002597/// parseDirectiveLine
Eli Bendersky6ee13082013-01-15 22:59:42 +00002598/// ::= .line [number]
Jim Grosbach4a200922013-09-20 23:08:21 +00002599bool AsmParser::parseDirectiveLine() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002600 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2601 if (getLexer().isNot(AsmToken::Integer))
2602 return TokError("unexpected token in '.line' directive");
2603
2604 int64_t LineNumber = getTok().getIntVal();
Jim Grosbach4a200922013-09-20 23:08:21 +00002605 (void)LineNumber;
Eli Bendersky6ee13082013-01-15 22:59:42 +00002606 Lex();
2607
2608 // FIXME: Do something with the .line.
2609 }
2610
2611 if (getLexer().isNot(AsmToken::EndOfStatement))
2612 return TokError("unexpected token in '.line' directive");
2613
2614 return false;
2615}
2616
Jim Grosbach4a200922013-09-20 23:08:21 +00002617/// parseDirectiveLoc
Eli Bendersky6ee13082013-01-15 22:59:42 +00002618/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
2619/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2620/// The first number is a file number, must have been previously assigned with
2621/// a .file directive, the second number is the line number and optionally the
2622/// third number is a column position (zero if not specified). The remaining
2623/// optional items are .loc sub-directives.
Jim Grosbach4a200922013-09-20 23:08:21 +00002624bool AsmParser::parseDirectiveLoc() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002625 if (getLexer().isNot(AsmToken::Integer))
2626 return TokError("unexpected token in '.loc' directive");
2627 int64_t FileNumber = getTok().getIntVal();
2628 if (FileNumber < 1)
2629 return TokError("file number less than one in '.loc' directive");
2630 if (!getContext().isValidDwarfFileNumber(FileNumber))
2631 return TokError("unassigned file number in '.loc' directive");
2632 Lex();
2633
2634 int64_t LineNumber = 0;
2635 if (getLexer().is(AsmToken::Integer)) {
2636 LineNumber = getTok().getIntVal();
2637 if (LineNumber < 1)
2638 return TokError("line number less than one in '.loc' directive");
2639 Lex();
2640 }
2641
2642 int64_t ColumnPos = 0;
2643 if (getLexer().is(AsmToken::Integer)) {
2644 ColumnPos = getTok().getIntVal();
2645 if (ColumnPos < 0)
2646 return TokError("column position less than zero in '.loc' directive");
2647 Lex();
2648 }
2649
2650 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
2651 unsigned Isa = 0;
2652 int64_t Discriminator = 0;
2653 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2654 for (;;) {
2655 if (getLexer().is(AsmToken::EndOfStatement))
2656 break;
2657
2658 StringRef Name;
2659 SMLoc Loc = getTok().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002660 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002661 return TokError("unexpected token in '.loc' directive");
2662
2663 if (Name == "basic_block")
2664 Flags |= DWARF2_FLAG_BASIC_BLOCK;
2665 else if (Name == "prologue_end")
2666 Flags |= DWARF2_FLAG_PROLOGUE_END;
2667 else if (Name == "epilogue_begin")
2668 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2669 else if (Name == "is_stmt") {
2670 Loc = getTok().getLoc();
2671 const MCExpr *Value;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002672 if (parseExpression(Value))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002673 return true;
2674 // The expression must be the constant 0 or 1.
2675 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2676 int Value = MCE->getValue();
2677 if (Value == 0)
2678 Flags &= ~DWARF2_FLAG_IS_STMT;
2679 else if (Value == 1)
2680 Flags |= DWARF2_FLAG_IS_STMT;
2681 else
2682 return Error(Loc, "is_stmt value not 0 or 1");
Craig Topperefa703d2013-04-22 04:22:40 +00002683 } else {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002684 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2685 }
Craig Topperefa703d2013-04-22 04:22:40 +00002686 } else if (Name == "isa") {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002687 Loc = getTok().getLoc();
2688 const MCExpr *Value;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002689 if (parseExpression(Value))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002690 return true;
2691 // The expression must be a constant greater or equal to 0.
2692 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2693 int Value = MCE->getValue();
2694 if (Value < 0)
2695 return Error(Loc, "isa number less than zero");
2696 Isa = Value;
Craig Topperefa703d2013-04-22 04:22:40 +00002697 } else {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002698 return Error(Loc, "isa number not a constant value");
2699 }
Craig Topperefa703d2013-04-22 04:22:40 +00002700 } else if (Name == "discriminator") {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002701 if (parseAbsoluteExpression(Discriminator))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002702 return true;
Craig Topperefa703d2013-04-22 04:22:40 +00002703 } else {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002704 return Error(Loc, "unknown sub-directive in '.loc' directive");
2705 }
2706
2707 if (getLexer().is(AsmToken::EndOfStatement))
2708 break;
2709 }
2710 }
2711
2712 getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,
2713 Isa, Discriminator, StringRef());
2714
2715 return false;
2716}
2717
Jim Grosbach4a200922013-09-20 23:08:21 +00002718/// parseDirectiveStabs
Eli Bendersky6ee13082013-01-15 22:59:42 +00002719/// ::= .stabs string, number, number, number
Jim Grosbach4a200922013-09-20 23:08:21 +00002720bool AsmParser::parseDirectiveStabs() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002721 return TokError("unsupported directive '.stabs'");
2722}
2723
Jim Grosbach4a200922013-09-20 23:08:21 +00002724/// parseDirectiveCFISections
Eli Bendersky6ee13082013-01-15 22:59:42 +00002725/// ::= .cfi_sections section [, section]
Jim Grosbach4a200922013-09-20 23:08:21 +00002726bool AsmParser::parseDirectiveCFISections() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002727 StringRef Name;
2728 bool EH = false;
2729 bool Debug = false;
2730
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002731 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002732 return TokError("Expected an identifier");
2733
2734 if (Name == ".eh_frame")
2735 EH = true;
2736 else if (Name == ".debug_frame")
2737 Debug = true;
2738
2739 if (getLexer().is(AsmToken::Comma)) {
2740 Lex();
2741
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002742 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002743 return TokError("Expected an identifier");
2744
2745 if (Name == ".eh_frame")
2746 EH = true;
2747 else if (Name == ".debug_frame")
2748 Debug = true;
2749 }
2750
2751 getStreamer().EmitCFISections(EH, Debug);
2752 return false;
2753}
2754
Jim Grosbach4a200922013-09-20 23:08:21 +00002755/// parseDirectiveCFIStartProc
Eli Bendersky6ee13082013-01-15 22:59:42 +00002756/// ::= .cfi_startproc
Jim Grosbach4a200922013-09-20 23:08:21 +00002757bool AsmParser::parseDirectiveCFIStartProc() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002758 getStreamer().EmitCFIStartProc();
2759 return false;
2760}
2761
Jim Grosbach4a200922013-09-20 23:08:21 +00002762/// parseDirectiveCFIEndProc
Eli Bendersky6ee13082013-01-15 22:59:42 +00002763/// ::= .cfi_endproc
Jim Grosbach4a200922013-09-20 23:08:21 +00002764bool AsmParser::parseDirectiveCFIEndProc() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002765 getStreamer().EmitCFIEndProc();
2766 return false;
2767}
2768
Jim Grosbach4a200922013-09-20 23:08:21 +00002769/// \brief parse register name or number.
2770bool AsmParser::parseRegisterOrRegisterNumber(int64_t &Register,
Eli Bendersky6ee13082013-01-15 22:59:42 +00002771 SMLoc DirectiveLoc) {
2772 unsigned RegNo;
2773
2774 if (getLexer().isNot(AsmToken::Integer)) {
2775 if (getTargetParser().ParseRegister(RegNo, DirectiveLoc, DirectiveLoc))
2776 return true;
Bill Wendling99cb6222013-06-18 07:20:20 +00002777 Register = getContext().getRegisterInfo()->getDwarfRegNum(RegNo, true);
Eli Bendersky6ee13082013-01-15 22:59:42 +00002778 } else
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002779 return parseAbsoluteExpression(Register);
Eli Bendersky6ee13082013-01-15 22:59:42 +00002780
2781 return false;
2782}
2783
Jim Grosbach4a200922013-09-20 23:08:21 +00002784/// parseDirectiveCFIDefCfa
Eli Bendersky6ee13082013-01-15 22:59:42 +00002785/// ::= .cfi_def_cfa register, offset
Jim Grosbach4a200922013-09-20 23:08:21 +00002786bool AsmParser::parseDirectiveCFIDefCfa(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002787 int64_t Register = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00002788 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002789 return true;
2790
2791 if (getLexer().isNot(AsmToken::Comma))
2792 return TokError("unexpected token in directive");
2793 Lex();
2794
2795 int64_t Offset = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002796 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002797 return true;
2798
2799 getStreamer().EmitCFIDefCfa(Register, Offset);
2800 return false;
2801}
2802
Jim Grosbach4a200922013-09-20 23:08:21 +00002803/// parseDirectiveCFIDefCfaOffset
Eli Bendersky6ee13082013-01-15 22:59:42 +00002804/// ::= .cfi_def_cfa_offset offset
Jim Grosbach4a200922013-09-20 23:08:21 +00002805bool AsmParser::parseDirectiveCFIDefCfaOffset() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002806 int64_t Offset = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002807 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002808 return true;
2809
2810 getStreamer().EmitCFIDefCfaOffset(Offset);
2811 return false;
2812}
2813
Jim Grosbach4a200922013-09-20 23:08:21 +00002814/// parseDirectiveCFIRegister
Eli Bendersky6ee13082013-01-15 22:59:42 +00002815/// ::= .cfi_register register, register
Jim Grosbach4a200922013-09-20 23:08:21 +00002816bool AsmParser::parseDirectiveCFIRegister(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002817 int64_t Register1 = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00002818 if (parseRegisterOrRegisterNumber(Register1, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002819 return true;
2820
2821 if (getLexer().isNot(AsmToken::Comma))
2822 return TokError("unexpected token in directive");
2823 Lex();
2824
2825 int64_t Register2 = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00002826 if (parseRegisterOrRegisterNumber(Register2, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002827 return true;
2828
2829 getStreamer().EmitCFIRegister(Register1, Register2);
2830 return false;
2831}
2832
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +00002833/// parseDirectiveCFIWindowSave
2834/// ::= .cfi_window_save
2835bool AsmParser::parseDirectiveCFIWindowSave() {
2836 getStreamer().EmitCFIWindowSave();
2837 return false;
2838}
2839
Jim Grosbach4a200922013-09-20 23:08:21 +00002840/// parseDirectiveCFIAdjustCfaOffset
Eli Bendersky6ee13082013-01-15 22:59:42 +00002841/// ::= .cfi_adjust_cfa_offset adjustment
Jim Grosbach4a200922013-09-20 23:08:21 +00002842bool AsmParser::parseDirectiveCFIAdjustCfaOffset() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002843 int64_t Adjustment = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002844 if (parseAbsoluteExpression(Adjustment))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002845 return true;
2846
2847 getStreamer().EmitCFIAdjustCfaOffset(Adjustment);
2848 return false;
2849}
2850
Jim Grosbach4a200922013-09-20 23:08:21 +00002851/// parseDirectiveCFIDefCfaRegister
Eli Bendersky6ee13082013-01-15 22:59:42 +00002852/// ::= .cfi_def_cfa_register register
Jim Grosbach4a200922013-09-20 23:08:21 +00002853bool AsmParser::parseDirectiveCFIDefCfaRegister(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002854 int64_t Register = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00002855 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002856 return true;
2857
2858 getStreamer().EmitCFIDefCfaRegister(Register);
2859 return false;
2860}
2861
Jim Grosbach4a200922013-09-20 23:08:21 +00002862/// parseDirectiveCFIOffset
Eli Bendersky6ee13082013-01-15 22:59:42 +00002863/// ::= .cfi_offset register, offset
Jim Grosbach4a200922013-09-20 23:08:21 +00002864bool AsmParser::parseDirectiveCFIOffset(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002865 int64_t Register = 0;
2866 int64_t Offset = 0;
2867
Jim Grosbach4a200922013-09-20 23:08:21 +00002868 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002869 return true;
2870
2871 if (getLexer().isNot(AsmToken::Comma))
2872 return TokError("unexpected token in directive");
2873 Lex();
2874
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002875 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002876 return true;
2877
2878 getStreamer().EmitCFIOffset(Register, Offset);
2879 return false;
2880}
2881
Jim Grosbach4a200922013-09-20 23:08:21 +00002882/// parseDirectiveCFIRelOffset
Eli Bendersky6ee13082013-01-15 22:59:42 +00002883/// ::= .cfi_rel_offset register, offset
Jim Grosbach4a200922013-09-20 23:08:21 +00002884bool AsmParser::parseDirectiveCFIRelOffset(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002885 int64_t Register = 0;
2886
Jim Grosbach4a200922013-09-20 23:08:21 +00002887 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002888 return true;
2889
2890 if (getLexer().isNot(AsmToken::Comma))
2891 return TokError("unexpected token in directive");
2892 Lex();
2893
2894 int64_t Offset = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002895 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002896 return true;
2897
2898 getStreamer().EmitCFIRelOffset(Register, Offset);
2899 return false;
2900}
2901
2902static bool isValidEncoding(int64_t Encoding) {
2903 if (Encoding & ~0xff)
2904 return false;
2905
2906 if (Encoding == dwarf::DW_EH_PE_omit)
2907 return true;
2908
2909 const unsigned Format = Encoding & 0xf;
2910 if (Format != dwarf::DW_EH_PE_absptr && Format != dwarf::DW_EH_PE_udata2 &&
2911 Format != dwarf::DW_EH_PE_udata4 && Format != dwarf::DW_EH_PE_udata8 &&
2912 Format != dwarf::DW_EH_PE_sdata2 && Format != dwarf::DW_EH_PE_sdata4 &&
2913 Format != dwarf::DW_EH_PE_sdata8 && Format != dwarf::DW_EH_PE_signed)
2914 return false;
2915
2916 const unsigned Application = Encoding & 0x70;
2917 if (Application != dwarf::DW_EH_PE_absptr &&
2918 Application != dwarf::DW_EH_PE_pcrel)
2919 return false;
2920
2921 return true;
2922}
2923
Jim Grosbach4a200922013-09-20 23:08:21 +00002924/// parseDirectiveCFIPersonalityOrLsda
Eli Bendersky6ee13082013-01-15 22:59:42 +00002925/// IsPersonality true for cfi_personality, false for cfi_lsda
2926/// ::= .cfi_personality encoding, [symbol_name]
2927/// ::= .cfi_lsda encoding, [symbol_name]
Jim Grosbach4a200922013-09-20 23:08:21 +00002928bool AsmParser::parseDirectiveCFIPersonalityOrLsda(bool IsPersonality) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002929 int64_t Encoding = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002930 if (parseAbsoluteExpression(Encoding))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002931 return true;
2932 if (Encoding == dwarf::DW_EH_PE_omit)
2933 return false;
2934
2935 if (!isValidEncoding(Encoding))
2936 return TokError("unsupported encoding.");
2937
2938 if (getLexer().isNot(AsmToken::Comma))
2939 return TokError("unexpected token in directive");
2940 Lex();
2941
2942 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002943 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002944 return TokError("expected identifier in directive");
2945
2946 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
2947
2948 if (IsPersonality)
2949 getStreamer().EmitCFIPersonality(Sym, Encoding);
2950 else
2951 getStreamer().EmitCFILsda(Sym, Encoding);
2952 return false;
2953}
2954
Jim Grosbach4a200922013-09-20 23:08:21 +00002955/// parseDirectiveCFIRememberState
Eli Bendersky6ee13082013-01-15 22:59:42 +00002956/// ::= .cfi_remember_state
Jim Grosbach4a200922013-09-20 23:08:21 +00002957bool AsmParser::parseDirectiveCFIRememberState() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002958 getStreamer().EmitCFIRememberState();
2959 return false;
2960}
2961
Jim Grosbach4a200922013-09-20 23:08:21 +00002962/// parseDirectiveCFIRestoreState
Eli Bendersky6ee13082013-01-15 22:59:42 +00002963/// ::= .cfi_remember_state
Jim Grosbach4a200922013-09-20 23:08:21 +00002964bool AsmParser::parseDirectiveCFIRestoreState() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002965 getStreamer().EmitCFIRestoreState();
2966 return false;
2967}
2968
Jim Grosbach4a200922013-09-20 23:08:21 +00002969/// parseDirectiveCFISameValue
Eli Bendersky6ee13082013-01-15 22:59:42 +00002970/// ::= .cfi_same_value register
Jim Grosbach4a200922013-09-20 23:08:21 +00002971bool AsmParser::parseDirectiveCFISameValue(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002972 int64_t Register = 0;
2973
Jim Grosbach4a200922013-09-20 23:08:21 +00002974 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002975 return true;
2976
2977 getStreamer().EmitCFISameValue(Register);
2978 return false;
2979}
2980
Jim Grosbach4a200922013-09-20 23:08:21 +00002981/// parseDirectiveCFIRestore
Eli Bendersky6ee13082013-01-15 22:59:42 +00002982/// ::= .cfi_restore register
Jim Grosbach4a200922013-09-20 23:08:21 +00002983bool AsmParser::parseDirectiveCFIRestore(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002984 int64_t Register = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00002985 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002986 return true;
2987
2988 getStreamer().EmitCFIRestore(Register);
2989 return false;
2990}
2991
Jim Grosbach4a200922013-09-20 23:08:21 +00002992/// parseDirectiveCFIEscape
Eli Bendersky6ee13082013-01-15 22:59:42 +00002993/// ::= .cfi_escape expression[,...]
Jim Grosbach4a200922013-09-20 23:08:21 +00002994bool AsmParser::parseDirectiveCFIEscape() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002995 std::string Values;
2996 int64_t CurrValue;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002997 if (parseAbsoluteExpression(CurrValue))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002998 return true;
2999
3000 Values.push_back((uint8_t)CurrValue);
3001
3002 while (getLexer().is(AsmToken::Comma)) {
3003 Lex();
3004
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003005 if (parseAbsoluteExpression(CurrValue))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003006 return true;
3007
3008 Values.push_back((uint8_t)CurrValue);
3009 }
3010
3011 getStreamer().EmitCFIEscape(Values);
3012 return false;
3013}
3014
Jim Grosbach4a200922013-09-20 23:08:21 +00003015/// parseDirectiveCFISignalFrame
Eli Bendersky6ee13082013-01-15 22:59:42 +00003016/// ::= .cfi_signal_frame
Jim Grosbach4a200922013-09-20 23:08:21 +00003017bool AsmParser::parseDirectiveCFISignalFrame() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003018 if (getLexer().isNot(AsmToken::EndOfStatement))
3019 return Error(getLexer().getLoc(),
3020 "unexpected token in '.cfi_signal_frame'");
3021
3022 getStreamer().EmitCFISignalFrame();
3023 return false;
3024}
3025
Jim Grosbach4a200922013-09-20 23:08:21 +00003026/// parseDirectiveCFIUndefined
Eli Bendersky6ee13082013-01-15 22:59:42 +00003027/// ::= .cfi_undefined register
Jim Grosbach4a200922013-09-20 23:08:21 +00003028bool AsmParser::parseDirectiveCFIUndefined(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003029 int64_t Register = 0;
3030
Jim Grosbach4a200922013-09-20 23:08:21 +00003031 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003032 return true;
3033
3034 getStreamer().EmitCFIUndefined(Register);
3035 return false;
3036}
3037
Jim Grosbach4a200922013-09-20 23:08:21 +00003038/// parseDirectiveMacrosOnOff
Eli Bendersky6ee13082013-01-15 22:59:42 +00003039/// ::= .macros_on
3040/// ::= .macros_off
Jim Grosbach4a200922013-09-20 23:08:21 +00003041bool AsmParser::parseDirectiveMacrosOnOff(StringRef Directive) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003042 if (getLexer().isNot(AsmToken::EndOfStatement))
3043 return Error(getLexer().getLoc(),
3044 "unexpected token in '" + Directive + "' directive");
3045
Jim Grosbach4a200922013-09-20 23:08:21 +00003046 setMacrosEnabled(Directive == ".macros_on");
Eli Bendersky6ee13082013-01-15 22:59:42 +00003047 return false;
3048}
3049
Jim Grosbach4a200922013-09-20 23:08:21 +00003050/// parseDirectiveMacro
Eli Bendersky6ee13082013-01-15 22:59:42 +00003051/// ::= .macro name [parameters]
Jim Grosbach4a200922013-09-20 23:08:21 +00003052bool AsmParser::parseDirectiveMacro(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003053 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003054 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003055 return TokError("expected identifier in '.macro' directive");
3056
3057 MCAsmMacroParameters Parameters;
3058 // Argument delimiter is initially unknown. It will be set by
Jim Grosbach4a200922013-09-20 23:08:21 +00003059 // parseMacroArgument()
Eli Bendersky6ee13082013-01-15 22:59:42 +00003060 AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
3061 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3062 for (;;) {
3063 MCAsmMacroParameter Parameter;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003064 if (parseIdentifier(Parameter.first))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003065 return TokError("expected identifier in '.macro' directive");
3066
3067 if (getLexer().is(AsmToken::Equal)) {
3068 Lex();
Jim Grosbach4a200922013-09-20 23:08:21 +00003069 if (parseMacroArgument(Parameter.second, ArgumentDelimiter))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003070 return true;
3071 }
3072
3073 Parameters.push_back(Parameter);
3074
3075 if (getLexer().is(AsmToken::Comma))
3076 Lex();
3077 else if (getLexer().is(AsmToken::EndOfStatement))
3078 break;
3079 }
3080 }
3081
3082 // Eat the end of statement.
3083 Lex();
3084
3085 AsmToken EndToken, StartToken = getTok();
3086
3087 // Lex the macro definition.
3088 for (;;) {
3089 // Check whether we have reached the end of the file.
3090 if (getLexer().is(AsmToken::Eof))
3091 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
3092
3093 // Otherwise, check whether we have reach the .endmacro.
3094 if (getLexer().is(AsmToken::Identifier) &&
3095 (getTok().getIdentifier() == ".endm" ||
3096 getTok().getIdentifier() == ".endmacro")) {
3097 EndToken = getTok();
3098 Lex();
3099 if (getLexer().isNot(AsmToken::EndOfStatement))
3100 return TokError("unexpected token in '" + EndToken.getIdentifier() +
3101 "' directive");
3102 break;
3103 }
3104
3105 // Otherwise, scan til the end of the statement.
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003106 eatToEndOfStatement();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003107 }
3108
Jim Grosbach4a200922013-09-20 23:08:21 +00003109 if (lookupMacro(Name)) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003110 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
3111 }
3112
3113 const char *BodyStart = StartToken.getLoc().getPointer();
3114 const char *BodyEnd = EndToken.getLoc().getPointer();
3115 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
Jim Grosbach4a200922013-09-20 23:08:21 +00003116 checkForBadMacro(DirectiveLoc, Name, Body, Parameters);
3117 defineMacro(Name, MCAsmMacro(Name, Body, Parameters));
Eli Bendersky6ee13082013-01-15 22:59:42 +00003118 return false;
3119}
3120
Jim Grosbach4a200922013-09-20 23:08:21 +00003121/// checkForBadMacro
Kevin Enderby221514e2013-01-22 21:44:53 +00003122///
3123/// With the support added for named parameters there may be code out there that
3124/// is transitioning from positional parameters. In versions of gas that did
3125/// not support named parameters they would be ignored on the macro defintion.
3126/// But to support both styles of parameters this is not possible so if a macro
3127/// defintion has named parameters but does not use them and has what appears
3128/// to be positional parameters, strings like $1, $2, ... and $n, then issue a
3129/// warning that the positional parameter found in body which have no effect.
3130/// Hoping the developer will either remove the named parameters from the macro
3131/// definiton so the positional parameters get used if that was what was
3132/// intended or change the macro to use the named parameters. It is possible
3133/// this warning will trigger when the none of the named parameters are used
3134/// and the strings like $1 are infact to simply to be passed trough unchanged.
Jim Grosbach4a200922013-09-20 23:08:21 +00003135void AsmParser::checkForBadMacro(SMLoc DirectiveLoc, StringRef Name,
Kevin Enderby221514e2013-01-22 21:44:53 +00003136 StringRef Body,
3137 MCAsmMacroParameters Parameters) {
3138 // If this macro is not defined with named parameters the warning we are
3139 // checking for here doesn't apply.
3140 unsigned NParameters = Parameters.size();
3141 if (NParameters == 0)
3142 return;
3143
3144 bool NamedParametersFound = false;
3145 bool PositionalParametersFound = false;
3146
3147 // Look at the body of the macro for use of both the named parameters and what
3148 // are likely to be positional parameters. This is what expandMacro() is
3149 // doing when it finds the parameters in the body.
3150 while (!Body.empty()) {
3151 // Scan for the next possible parameter.
3152 std::size_t End = Body.size(), Pos = 0;
3153 for (; Pos != End; ++Pos) {
3154 // Check for a substitution or escape.
3155 // This macro is defined with parameters, look for \foo, \bar, etc.
3156 if (Body[Pos] == '\\' && Pos + 1 != End)
3157 break;
3158
3159 // This macro should have parameters, but look for $0, $1, ..., $n too.
3160 if (Body[Pos] != '$' || Pos + 1 == End)
3161 continue;
3162 char Next = Body[Pos + 1];
Guy Benyei87d0b9e2013-02-12 21:21:59 +00003163 if (Next == '$' || Next == 'n' ||
3164 isdigit(static_cast<unsigned char>(Next)))
Kevin Enderby221514e2013-01-22 21:44:53 +00003165 break;
3166 }
3167
3168 // Check if we reached the end.
3169 if (Pos == End)
3170 break;
3171
3172 if (Body[Pos] == '$') {
Jim Grosbach4a200922013-09-20 23:08:21 +00003173 switch (Body[Pos + 1]) {
3174 // $$ => $
Kevin Enderby221514e2013-01-22 21:44:53 +00003175 case '$':
3176 break;
3177
Jim Grosbach4a200922013-09-20 23:08:21 +00003178 // $n => number of arguments
Kevin Enderby221514e2013-01-22 21:44:53 +00003179 case 'n':
3180 PositionalParametersFound = true;
3181 break;
3182
Jim Grosbach4a200922013-09-20 23:08:21 +00003183 // $[0-9] => argument
Kevin Enderby221514e2013-01-22 21:44:53 +00003184 default: {
3185 PositionalParametersFound = true;
3186 break;
Jim Grosbach4a200922013-09-20 23:08:21 +00003187 }
Kevin Enderby221514e2013-01-22 21:44:53 +00003188 }
3189 Pos += 2;
3190 } else {
3191 unsigned I = Pos + 1;
3192 while (isIdentifierChar(Body[I]) && I + 1 != End)
3193 ++I;
3194
Jim Grosbach4a200922013-09-20 23:08:21 +00003195 const char *Begin = Body.data() + Pos + 1;
3196 StringRef Argument(Begin, I - (Pos + 1));
Kevin Enderby221514e2013-01-22 21:44:53 +00003197 unsigned Index = 0;
3198 for (; Index < NParameters; ++Index)
3199 if (Parameters[Index].first == Argument)
3200 break;
3201
3202 if (Index == NParameters) {
Jim Grosbach4a200922013-09-20 23:08:21 +00003203 if (Body[Pos + 1] == '(' && Body[Pos + 2] == ')')
3204 Pos += 3;
3205 else {
3206 Pos = I;
3207 }
Kevin Enderby221514e2013-01-22 21:44:53 +00003208 } else {
3209 NamedParametersFound = true;
3210 Pos += 1 + Argument.size();
3211 }
3212 }
3213 // Update the scan point.
3214 Body = Body.substr(Pos);
3215 }
3216
3217 if (!NamedParametersFound && PositionalParametersFound)
3218 Warning(DirectiveLoc, "macro defined with named parameters which are not "
3219 "used in macro body, possible positional parameter "
3220 "found in body which will have no effect");
3221}
3222
Jim Grosbach4a200922013-09-20 23:08:21 +00003223/// parseDirectiveEndMacro
Eli Bendersky6ee13082013-01-15 22:59:42 +00003224/// ::= .endm
3225/// ::= .endmacro
Jim Grosbach4a200922013-09-20 23:08:21 +00003226bool AsmParser::parseDirectiveEndMacro(StringRef Directive) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003227 if (getLexer().isNot(AsmToken::EndOfStatement))
3228 return TokError("unexpected token in '" + Directive + "' directive");
3229
3230 // If we are inside a macro instantiation, terminate the current
3231 // instantiation.
Jim Grosbach4a200922013-09-20 23:08:21 +00003232 if (isInsideMacroInstantiation()) {
3233 handleMacroExit();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003234 return false;
3235 }
3236
3237 // Otherwise, this .endmacro is a stray entry in the file; well formed
3238 // .endmacro directives are handled during the macro definition parsing.
3239 return TokError("unexpected '" + Directive + "' in file, "
Jim Grosbach4a200922013-09-20 23:08:21 +00003240 "no current macro definition");
Eli Bendersky6ee13082013-01-15 22:59:42 +00003241}
3242
Jim Grosbach4a200922013-09-20 23:08:21 +00003243/// parseDirectivePurgeMacro
Eli Bendersky6ee13082013-01-15 22:59:42 +00003244/// ::= .purgem
Jim Grosbach4a200922013-09-20 23:08:21 +00003245bool AsmParser::parseDirectivePurgeMacro(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003246 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003247 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003248 return TokError("expected identifier in '.purgem' directive");
3249
3250 if (getLexer().isNot(AsmToken::EndOfStatement))
3251 return TokError("unexpected token in '.purgem' directive");
3252
Jim Grosbach4a200922013-09-20 23:08:21 +00003253 if (!lookupMacro(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003254 return Error(DirectiveLoc, "macro '" + Name + "' is not defined");
3255
Jim Grosbach4a200922013-09-20 23:08:21 +00003256 undefineMacro(Name);
Eli Bendersky6ee13082013-01-15 22:59:42 +00003257 return false;
3258}
Eli Bendersky4766ef42012-12-20 19:05:53 +00003259
Jim Grosbach4a200922013-09-20 23:08:21 +00003260/// parseDirectiveBundleAlignMode
Eli Bendersky4766ef42012-12-20 19:05:53 +00003261/// ::= {.bundle_align_mode} expression
Jim Grosbach4a200922013-09-20 23:08:21 +00003262bool AsmParser::parseDirectiveBundleAlignMode() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003263 checkForValidSection();
Eli Bendersky4766ef42012-12-20 19:05:53 +00003264
3265 // Expect a single argument: an expression that evaluates to a constant
3266 // in the inclusive range 0-30.
3267 SMLoc ExprLoc = getLexer().getLoc();
3268 int64_t AlignSizePow2;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003269 if (parseAbsoluteExpression(AlignSizePow2))
Eli Bendersky4766ef42012-12-20 19:05:53 +00003270 return true;
3271 else if (getLexer().isNot(AsmToken::EndOfStatement))
3272 return TokError("unexpected token after expression in"
3273 " '.bundle_align_mode' directive");
3274 else if (AlignSizePow2 < 0 || AlignSizePow2 > 30)
3275 return Error(ExprLoc,
3276 "invalid bundle alignment size (expected between 0 and 30)");
3277
3278 Lex();
3279
3280 // Because of AlignSizePow2's verified range we can safely truncate it to
3281 // unsigned.
3282 getStreamer().EmitBundleAlignMode(static_cast<unsigned>(AlignSizePow2));
3283 return false;
3284}
3285
Jim Grosbach4a200922013-09-20 23:08:21 +00003286/// parseDirectiveBundleLock
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003287/// ::= {.bundle_lock} [align_to_end]
Jim Grosbach4a200922013-09-20 23:08:21 +00003288bool AsmParser::parseDirectiveBundleLock() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003289 checkForValidSection();
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003290 bool AlignToEnd = false;
Eli Bendersky4766ef42012-12-20 19:05:53 +00003291
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003292 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3293 StringRef Option;
3294 SMLoc Loc = getTok().getLoc();
3295 const char *kInvalidOptionError =
Jim Grosbach4a200922013-09-20 23:08:21 +00003296 "invalid option for '.bundle_lock' directive";
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003297
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003298 if (parseIdentifier(Option))
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003299 return Error(Loc, kInvalidOptionError);
3300
3301 if (Option != "align_to_end")
3302 return Error(Loc, kInvalidOptionError);
3303 else if (getLexer().isNot(AsmToken::EndOfStatement))
3304 return Error(Loc,
3305 "unexpected token after '.bundle_lock' directive option");
3306 AlignToEnd = true;
3307 }
3308
Eli Bendersky4766ef42012-12-20 19:05:53 +00003309 Lex();
3310
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003311 getStreamer().EmitBundleLock(AlignToEnd);
Eli Bendersky4766ef42012-12-20 19:05:53 +00003312 return false;
3313}
3314
Jim Grosbach4a200922013-09-20 23:08:21 +00003315/// parseDirectiveBundleLock
Eli Bendersky4766ef42012-12-20 19:05:53 +00003316/// ::= {.bundle_lock}
Jim Grosbach4a200922013-09-20 23:08:21 +00003317bool AsmParser::parseDirectiveBundleUnlock() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003318 checkForValidSection();
Eli Bendersky4766ef42012-12-20 19:05:53 +00003319
3320 if (getLexer().isNot(AsmToken::EndOfStatement))
3321 return TokError("unexpected token in '.bundle_unlock' directive");
3322 Lex();
3323
3324 getStreamer().EmitBundleUnlock();
3325 return false;
3326}
3327
Jim Grosbach4a200922013-09-20 23:08:21 +00003328/// parseDirectiveSpace
Eli Bendersky6ee13082013-01-15 22:59:42 +00003329/// ::= (.skip | .space) expression [ , expression ]
Jim Grosbach4a200922013-09-20 23:08:21 +00003330bool AsmParser::parseDirectiveSpace(StringRef IDVal) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003331 checkForValidSection();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003332
3333 int64_t NumBytes;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003334 if (parseAbsoluteExpression(NumBytes))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003335 return true;
3336
3337 int64_t FillExpr = 0;
3338 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3339 if (getLexer().isNot(AsmToken::Comma))
3340 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
3341 Lex();
3342
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003343 if (parseAbsoluteExpression(FillExpr))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003344 return true;
3345
3346 if (getLexer().isNot(AsmToken::EndOfStatement))
3347 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
3348 }
3349
3350 Lex();
3351
3352 if (NumBytes <= 0)
Jim Grosbach4a200922013-09-20 23:08:21 +00003353 return TokError("invalid number of bytes in '" + Twine(IDVal) +
3354 "' directive");
Eli Bendersky6ee13082013-01-15 22:59:42 +00003355
3356 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00003357 getStreamer().EmitFill(NumBytes, FillExpr);
Eli Bendersky6ee13082013-01-15 22:59:42 +00003358
3359 return false;
3360}
3361
Jim Grosbach4a200922013-09-20 23:08:21 +00003362/// parseDirectiveLEB128
Eli Bendersky6ee13082013-01-15 22:59:42 +00003363/// ::= (.sleb128 | .uleb128) expression
Jim Grosbach4a200922013-09-20 23:08:21 +00003364bool AsmParser::parseDirectiveLEB128(bool Signed) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003365 checkForValidSection();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003366 const MCExpr *Value;
3367
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003368 if (parseExpression(Value))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003369 return true;
3370
3371 if (getLexer().isNot(AsmToken::EndOfStatement))
3372 return TokError("unexpected token in directive");
3373
3374 if (Signed)
3375 getStreamer().EmitSLEB128Value(Value);
3376 else
3377 getStreamer().EmitULEB128Value(Value);
3378
3379 return false;
3380}
3381
Jim Grosbach4a200922013-09-20 23:08:21 +00003382/// parseDirectiveSymbolAttribute
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003383/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Jim Grosbach4a200922013-09-20 23:08:21 +00003384bool AsmParser::parseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003385 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003386 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00003387 StringRef Name;
Jim Grosbach10ec6502011-09-15 17:56:49 +00003388 SMLoc Loc = getTok().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00003389
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003390 if (parseIdentifier(Name))
Jim Grosbach10ec6502011-09-15 17:56:49 +00003391 return Error(Loc, "expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003392
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00003393 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003394
Jim Grosbach10ec6502011-09-15 17:56:49 +00003395 // Assembler local symbols don't make any sense here. Complain loudly.
3396 if (Sym->isTemporary())
3397 return Error(Loc, "non-local symbol required in directive");
3398
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +00003399 if (!getStreamer().EmitSymbolAttribute(Sym, Attr))
3400 return Error(Loc, "unable to emit symbol attribute");
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003401
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003402 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003403 break;
3404
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003405 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003406 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00003407 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003408 }
3409 }
3410
Sean Callanan79ed1a82010-01-19 20:22:31 +00003411 Lex();
Jan Wen Vounga854a4b2010-09-30 01:09:20 +00003412 return false;
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003413}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003414
Jim Grosbach4a200922013-09-20 23:08:21 +00003415/// parseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00003416/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
Jim Grosbach4a200922013-09-20 23:08:21 +00003417bool AsmParser::parseDirectiveComm(bool IsLocal) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003418 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00003419
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003420 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00003421 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003422 if (parseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003423 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003424
Daniel Dunbar76c4d762009-07-31 21:55:09 +00003425 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00003426 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003427
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003428 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003429 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00003430 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003431
3432 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003433 SMLoc SizeLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003434 if (parseAbsoluteExpression(Size))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003435 return true;
3436
3437 int64_t Pow2Alignment = 0;
3438 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003439 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00003440 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003441 Pow2AlignmentLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003442 if (parseAbsoluteExpression(Pow2Alignment))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003443 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003444
Benjamin Kramera9e37c52012-09-07 21:08:01 +00003445 LCOMM::LCOMMType LCOMM = Lexer.getMAI().getLCOMMDirectiveAlignmentType();
3446 if (IsLocal && LCOMM == LCOMM::NoAlignment)
Benjamin Kramer39646d92012-09-07 17:25:13 +00003447 return Error(Pow2AlignmentLoc, "alignment not supported on this target");
3448
Chris Lattner258281d2010-01-19 06:22:22 +00003449 // If this target takes alignments in bytes (not log) validate and convert.
Benjamin Kramera9e37c52012-09-07 21:08:01 +00003450 if ((!IsLocal && Lexer.getMAI().getCOMMDirectiveAlignmentIsInBytes()) ||
3451 (IsLocal && LCOMM == LCOMM::ByteAlignment)) {
Chris Lattner258281d2010-01-19 06:22:22 +00003452 if (!isPowerOf2_64(Pow2Alignment))
3453 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
3454 Pow2Alignment = Log2_64(Pow2Alignment);
3455 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003456 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003457
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003458 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00003459 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003460
Sean Callanan79ed1a82010-01-19 20:22:31 +00003461 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003462
Chris Lattner1fc3d752009-07-09 17:25:12 +00003463 // NOTE: a size of zero for a .comm should create a undefined symbol
3464 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003465 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00003466 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
Jim Grosbach4a200922013-09-20 23:08:21 +00003467 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003468
Eric Christopherc260a3e2010-05-14 01:38:54 +00003469 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003470 // may internally end up wanting an alignment in bytes.
3471 // FIXME: Diagnose overflow.
3472 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00003473 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
Jim Grosbach4a200922013-09-20 23:08:21 +00003474 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003475
Daniel Dunbar8906ff12009-08-22 07:22:36 +00003476 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003477 return Error(IDLoc, "invalid symbol redefinition");
3478
Chris Lattner1fc3d752009-07-09 17:25:12 +00003479 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00003480 if (IsLocal) {
Benjamin Kramer39646d92012-09-07 17:25:13 +00003481 getStreamer().EmitLocalCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00003482 return false;
3483 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003484
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003485 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003486 return false;
3487}
Chris Lattner9be3fee2009-07-10 22:20:30 +00003488
Jim Grosbach4a200922013-09-20 23:08:21 +00003489/// parseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00003490/// ::= .abort [... message ...]
Jim Grosbach4a200922013-09-20 23:08:21 +00003491bool AsmParser::parseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00003492 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003493 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00003494
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003495 StringRef Str = parseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003496 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003497 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00003498
Sean Callanan79ed1a82010-01-19 20:22:31 +00003499 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003500
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00003501 if (Str.empty())
3502 Error(Loc, ".abort detected. Assembly stopping.");
3503 else
3504 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00003505 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003506
3507 return false;
3508}
Kevin Enderby71148242009-07-14 21:35:03 +00003509
Jim Grosbach4a200922013-09-20 23:08:21 +00003510/// parseDirectiveInclude
Kevin Enderby1f049b22009-07-14 23:21:55 +00003511/// ::= .include "filename"
Jim Grosbach4a200922013-09-20 23:08:21 +00003512bool AsmParser::parseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003513 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00003514 return TokError("expected string in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003515
Yunzhong Gaoed119822013-09-05 19:14:26 +00003516 // Allow the strings to have escaped octal character sequence.
3517 std::string Filename;
3518 if (parseEscapedString(Filename))
3519 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003520 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00003521 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00003522
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003523 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00003524 return TokError("unexpected token in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003525
Chris Lattner8e25e2d2009-07-16 06:14:39 +00003526 // Attempt to switch the lexer to the included file before consuming the end
3527 // of statement to avoid losing it when we switch.
Jim Grosbach4a200922013-09-20 23:08:21 +00003528 if (enterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00003529 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00003530 return true;
3531 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00003532
3533 return false;
3534}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00003535
Jim Grosbach4a200922013-09-20 23:08:21 +00003536/// parseDirectiveIncbin
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003537/// ::= .incbin "filename"
Jim Grosbach4a200922013-09-20 23:08:21 +00003538bool AsmParser::parseDirectiveIncbin() {
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003539 if (getLexer().isNot(AsmToken::String))
3540 return TokError("expected string in '.incbin' directive");
3541
Yunzhong Gaoed119822013-09-05 19:14:26 +00003542 // Allow the strings to have escaped octal character sequence.
3543 std::string Filename;
3544 if (parseEscapedString(Filename))
3545 return true;
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003546 SMLoc IncbinLoc = getLexer().getLoc();
3547 Lex();
3548
3549 if (getLexer().isNot(AsmToken::EndOfStatement))
3550 return TokError("unexpected token in '.incbin' directive");
3551
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003552 // Attempt to process the included file.
Jim Grosbach4a200922013-09-20 23:08:21 +00003553 if (processIncbinFile(Filename)) {
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003554 Error(IncbinLoc, "Could not find incbin file '" + Filename + "'");
3555 return true;
3556 }
3557
3558 return false;
3559}
3560
Jim Grosbach4a200922013-09-20 23:08:21 +00003561/// parseDirectiveIf
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003562/// ::= .if expression
Jim Grosbach4a200922013-09-20 23:08:21 +00003563bool AsmParser::parseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003564 TheCondStack.push_back(TheCondState);
3565 TheCondState.TheCond = AsmCond::IfCond;
Benjamin Kramer29739e72012-05-12 16:52:21 +00003566 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003567 eatToEndOfStatement();
Benjamin Kramer29739e72012-05-12 16:52:21 +00003568 } else {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003569 int64_t ExprValue;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003570 if (parseAbsoluteExpression(ExprValue))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003571 return true;
3572
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003573 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003574 return TokError("unexpected token in '.if' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003575
Sean Callanan79ed1a82010-01-19 20:22:31 +00003576 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003577
3578 TheCondState.CondMet = ExprValue;
3579 TheCondState.Ignore = !TheCondState.CondMet;
3580 }
3581
3582 return false;
3583}
3584
Jim Grosbach4a200922013-09-20 23:08:21 +00003585/// parseDirectiveIfb
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003586/// ::= .ifb string
Jim Grosbach4a200922013-09-20 23:08:21 +00003587bool AsmParser::parseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank) {
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003588 TheCondStack.push_back(TheCondState);
3589 TheCondState.TheCond = AsmCond::IfCond;
3590
Benjamin Kramer29739e72012-05-12 16:52:21 +00003591 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003592 eatToEndOfStatement();
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003593 } else {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003594 StringRef Str = parseStringToEndOfStatement();
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003595
3596 if (getLexer().isNot(AsmToken::EndOfStatement))
3597 return TokError("unexpected token in '.ifb' directive");
3598
3599 Lex();
3600
3601 TheCondState.CondMet = ExpectBlank == Str.empty();
3602 TheCondState.Ignore = !TheCondState.CondMet;
3603 }
3604
3605 return false;
3606}
3607
Jim Grosbach4a200922013-09-20 23:08:21 +00003608/// parseDirectiveIfc
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003609/// ::= .ifc string1, string2
Jim Grosbach4a200922013-09-20 23:08:21 +00003610bool AsmParser::parseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual) {
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003611 TheCondStack.push_back(TheCondState);
3612 TheCondState.TheCond = AsmCond::IfCond;
3613
Benjamin Kramer29739e72012-05-12 16:52:21 +00003614 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003615 eatToEndOfStatement();
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003616 } else {
Jim Grosbach4a200922013-09-20 23:08:21 +00003617 StringRef Str1 = parseStringToComma();
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003618
3619 if (getLexer().isNot(AsmToken::Comma))
3620 return TokError("unexpected token in '.ifc' directive");
3621
3622 Lex();
3623
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003624 StringRef Str2 = parseStringToEndOfStatement();
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003625
3626 if (getLexer().isNot(AsmToken::EndOfStatement))
3627 return TokError("unexpected token in '.ifc' directive");
3628
3629 Lex();
3630
3631 TheCondState.CondMet = ExpectEqual == (Str1 == Str2);
3632 TheCondState.Ignore = !TheCondState.CondMet;
3633 }
3634
3635 return false;
3636}
3637
Jim Grosbach4a200922013-09-20 23:08:21 +00003638/// parseDirectiveIfdef
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003639/// ::= .ifdef symbol
Jim Grosbach4a200922013-09-20 23:08:21 +00003640bool AsmParser::parseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined) {
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00003641 StringRef Name;
3642 TheCondStack.push_back(TheCondState);
3643 TheCondState.TheCond = AsmCond::IfCond;
3644
3645 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003646 eatToEndOfStatement();
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00003647 } else {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003648 if (parseIdentifier(Name))
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00003649 return TokError("expected identifier after '.ifdef'");
3650
3651 Lex();
3652
3653 MCSymbol *Sym = getContext().LookupSymbol(Name);
3654
3655 if (expect_defined)
3656 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
3657 else
3658 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
3659 TheCondState.Ignore = !TheCondState.CondMet;
3660 }
3661
3662 return false;
3663}
3664
Jim Grosbach4a200922013-09-20 23:08:21 +00003665/// parseDirectiveElseIf
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003666/// ::= .elseif expression
Jim Grosbach4a200922013-09-20 23:08:21 +00003667bool AsmParser::parseDirectiveElseIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003668 if (TheCondState.TheCond != AsmCond::IfCond &&
3669 TheCondState.TheCond != AsmCond::ElseIfCond)
Craig Topper955d1e92013-04-22 04:24:02 +00003670 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
3671 " an .elseif");
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003672 TheCondState.TheCond = AsmCond::ElseIfCond;
3673
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003674 bool LastIgnoreState = false;
3675 if (!TheCondStack.empty())
Craig Topper955d1e92013-04-22 04:24:02 +00003676 LastIgnoreState = TheCondStack.back().Ignore;
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003677 if (LastIgnoreState || TheCondState.CondMet) {
3678 TheCondState.Ignore = true;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003679 eatToEndOfStatement();
Craig Topperefa703d2013-04-22 04:22:40 +00003680 } else {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003681 int64_t ExprValue;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003682 if (parseAbsoluteExpression(ExprValue))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003683 return true;
3684
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003685 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003686 return TokError("unexpected token in '.elseif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003687
Sean Callanan79ed1a82010-01-19 20:22:31 +00003688 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003689 TheCondState.CondMet = ExprValue;
3690 TheCondState.Ignore = !TheCondState.CondMet;
3691 }
3692
3693 return false;
3694}
3695
Jim Grosbach4a200922013-09-20 23:08:21 +00003696/// parseDirectiveElse
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003697/// ::= .else
Jim Grosbach4a200922013-09-20 23:08:21 +00003698bool AsmParser::parseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003699 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003700 return TokError("unexpected token in '.else' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003701
Sean Callanan79ed1a82010-01-19 20:22:31 +00003702 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003703
3704 if (TheCondState.TheCond != AsmCond::IfCond &&
3705 TheCondState.TheCond != AsmCond::ElseIfCond)
Craig Topper955d1e92013-04-22 04:24:02 +00003706 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
3707 ".elseif");
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003708 TheCondState.TheCond = AsmCond::ElseCond;
3709 bool LastIgnoreState = false;
3710 if (!TheCondStack.empty())
3711 LastIgnoreState = TheCondStack.back().Ignore;
3712 if (LastIgnoreState || TheCondState.CondMet)
3713 TheCondState.Ignore = true;
3714 else
3715 TheCondState.Ignore = false;
3716
3717 return false;
3718}
3719
Jim Grosbach4a200922013-09-20 23:08:21 +00003720/// parseDirectiveEndIf
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003721/// ::= .endif
Jim Grosbach4a200922013-09-20 23:08:21 +00003722bool AsmParser::parseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003723 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003724 return TokError("unexpected token in '.endif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003725
Sean Callanan79ed1a82010-01-19 20:22:31 +00003726 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003727
Jim Grosbach4a200922013-09-20 23:08:21 +00003728 if ((TheCondState.TheCond == AsmCond::NoCond) || TheCondStack.empty())
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003729 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
3730 ".else");
3731 if (!TheCondStack.empty()) {
3732 TheCondState = TheCondStack.back();
3733 TheCondStack.pop_back();
3734 }
3735
3736 return false;
3737}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00003738
Eli Bendersky6ee13082013-01-15 22:59:42 +00003739void AsmParser::initializeDirectiveKindMap() {
3740 DirectiveKindMap[".set"] = DK_SET;
3741 DirectiveKindMap[".equ"] = DK_EQU;
3742 DirectiveKindMap[".equiv"] = DK_EQUIV;
3743 DirectiveKindMap[".ascii"] = DK_ASCII;
3744 DirectiveKindMap[".asciz"] = DK_ASCIZ;
3745 DirectiveKindMap[".string"] = DK_STRING;
3746 DirectiveKindMap[".byte"] = DK_BYTE;
3747 DirectiveKindMap[".short"] = DK_SHORT;
3748 DirectiveKindMap[".value"] = DK_VALUE;
3749 DirectiveKindMap[".2byte"] = DK_2BYTE;
3750 DirectiveKindMap[".long"] = DK_LONG;
3751 DirectiveKindMap[".int"] = DK_INT;
3752 DirectiveKindMap[".4byte"] = DK_4BYTE;
3753 DirectiveKindMap[".quad"] = DK_QUAD;
3754 DirectiveKindMap[".8byte"] = DK_8BYTE;
3755 DirectiveKindMap[".single"] = DK_SINGLE;
3756 DirectiveKindMap[".float"] = DK_FLOAT;
3757 DirectiveKindMap[".double"] = DK_DOUBLE;
3758 DirectiveKindMap[".align"] = DK_ALIGN;
3759 DirectiveKindMap[".align32"] = DK_ALIGN32;
3760 DirectiveKindMap[".balign"] = DK_BALIGN;
3761 DirectiveKindMap[".balignw"] = DK_BALIGNW;
3762 DirectiveKindMap[".balignl"] = DK_BALIGNL;
3763 DirectiveKindMap[".p2align"] = DK_P2ALIGN;
3764 DirectiveKindMap[".p2alignw"] = DK_P2ALIGNW;
3765 DirectiveKindMap[".p2alignl"] = DK_P2ALIGNL;
3766 DirectiveKindMap[".org"] = DK_ORG;
3767 DirectiveKindMap[".fill"] = DK_FILL;
3768 DirectiveKindMap[".zero"] = DK_ZERO;
3769 DirectiveKindMap[".extern"] = DK_EXTERN;
3770 DirectiveKindMap[".globl"] = DK_GLOBL;
3771 DirectiveKindMap[".global"] = DK_GLOBAL;
Eli Bendersky6ee13082013-01-15 22:59:42 +00003772 DirectiveKindMap[".lazy_reference"] = DK_LAZY_REFERENCE;
3773 DirectiveKindMap[".no_dead_strip"] = DK_NO_DEAD_STRIP;
3774 DirectiveKindMap[".symbol_resolver"] = DK_SYMBOL_RESOLVER;
3775 DirectiveKindMap[".private_extern"] = DK_PRIVATE_EXTERN;
3776 DirectiveKindMap[".reference"] = DK_REFERENCE;
3777 DirectiveKindMap[".weak_definition"] = DK_WEAK_DEFINITION;
3778 DirectiveKindMap[".weak_reference"] = DK_WEAK_REFERENCE;
3779 DirectiveKindMap[".weak_def_can_be_hidden"] = DK_WEAK_DEF_CAN_BE_HIDDEN;
3780 DirectiveKindMap[".comm"] = DK_COMM;
3781 DirectiveKindMap[".common"] = DK_COMMON;
3782 DirectiveKindMap[".lcomm"] = DK_LCOMM;
3783 DirectiveKindMap[".abort"] = DK_ABORT;
3784 DirectiveKindMap[".include"] = DK_INCLUDE;
3785 DirectiveKindMap[".incbin"] = DK_INCBIN;
3786 DirectiveKindMap[".code16"] = DK_CODE16;
3787 DirectiveKindMap[".code16gcc"] = DK_CODE16GCC;
3788 DirectiveKindMap[".rept"] = DK_REPT;
3789 DirectiveKindMap[".irp"] = DK_IRP;
3790 DirectiveKindMap[".irpc"] = DK_IRPC;
3791 DirectiveKindMap[".endr"] = DK_ENDR;
3792 DirectiveKindMap[".bundle_align_mode"] = DK_BUNDLE_ALIGN_MODE;
3793 DirectiveKindMap[".bundle_lock"] = DK_BUNDLE_LOCK;
3794 DirectiveKindMap[".bundle_unlock"] = DK_BUNDLE_UNLOCK;
3795 DirectiveKindMap[".if"] = DK_IF;
3796 DirectiveKindMap[".ifb"] = DK_IFB;
3797 DirectiveKindMap[".ifnb"] = DK_IFNB;
3798 DirectiveKindMap[".ifc"] = DK_IFC;
3799 DirectiveKindMap[".ifnc"] = DK_IFNC;
3800 DirectiveKindMap[".ifdef"] = DK_IFDEF;
3801 DirectiveKindMap[".ifndef"] = DK_IFNDEF;
3802 DirectiveKindMap[".ifnotdef"] = DK_IFNOTDEF;
3803 DirectiveKindMap[".elseif"] = DK_ELSEIF;
3804 DirectiveKindMap[".else"] = DK_ELSE;
3805 DirectiveKindMap[".endif"] = DK_ENDIF;
3806 DirectiveKindMap[".skip"] = DK_SKIP;
3807 DirectiveKindMap[".space"] = DK_SPACE;
3808 DirectiveKindMap[".file"] = DK_FILE;
3809 DirectiveKindMap[".line"] = DK_LINE;
3810 DirectiveKindMap[".loc"] = DK_LOC;
3811 DirectiveKindMap[".stabs"] = DK_STABS;
3812 DirectiveKindMap[".sleb128"] = DK_SLEB128;
3813 DirectiveKindMap[".uleb128"] = DK_ULEB128;
3814 DirectiveKindMap[".cfi_sections"] = DK_CFI_SECTIONS;
3815 DirectiveKindMap[".cfi_startproc"] = DK_CFI_STARTPROC;
3816 DirectiveKindMap[".cfi_endproc"] = DK_CFI_ENDPROC;
3817 DirectiveKindMap[".cfi_def_cfa"] = DK_CFI_DEF_CFA;
3818 DirectiveKindMap[".cfi_def_cfa_offset"] = DK_CFI_DEF_CFA_OFFSET;
3819 DirectiveKindMap[".cfi_adjust_cfa_offset"] = DK_CFI_ADJUST_CFA_OFFSET;
3820 DirectiveKindMap[".cfi_def_cfa_register"] = DK_CFI_DEF_CFA_REGISTER;
3821 DirectiveKindMap[".cfi_offset"] = DK_CFI_OFFSET;
3822 DirectiveKindMap[".cfi_rel_offset"] = DK_CFI_REL_OFFSET;
3823 DirectiveKindMap[".cfi_personality"] = DK_CFI_PERSONALITY;
3824 DirectiveKindMap[".cfi_lsda"] = DK_CFI_LSDA;
3825 DirectiveKindMap[".cfi_remember_state"] = DK_CFI_REMEMBER_STATE;
3826 DirectiveKindMap[".cfi_restore_state"] = DK_CFI_RESTORE_STATE;
3827 DirectiveKindMap[".cfi_same_value"] = DK_CFI_SAME_VALUE;
3828 DirectiveKindMap[".cfi_restore"] = DK_CFI_RESTORE;
3829 DirectiveKindMap[".cfi_escape"] = DK_CFI_ESCAPE;
3830 DirectiveKindMap[".cfi_signal_frame"] = DK_CFI_SIGNAL_FRAME;
3831 DirectiveKindMap[".cfi_undefined"] = DK_CFI_UNDEFINED;
3832 DirectiveKindMap[".cfi_register"] = DK_CFI_REGISTER;
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +00003833 DirectiveKindMap[".cfi_window_save"] = DK_CFI_WINDOW_SAVE;
Eli Bendersky6ee13082013-01-15 22:59:42 +00003834 DirectiveKindMap[".macros_on"] = DK_MACROS_ON;
3835 DirectiveKindMap[".macros_off"] = DK_MACROS_OFF;
3836 DirectiveKindMap[".macro"] = DK_MACRO;
3837 DirectiveKindMap[".endm"] = DK_ENDM;
3838 DirectiveKindMap[".endmacro"] = DK_ENDMACRO;
3839 DirectiveKindMap[".purgem"] = DK_PURGEM;
Eli Bendersky5d0f0612013-01-10 22:44:57 +00003840}
3841
Jim Grosbach4a200922013-09-20 23:08:21 +00003842MCAsmMacro *AsmParser::parseMacroLikeBody(SMLoc DirectiveLoc) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003843 AsmToken EndToken, StartToken = getTok();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003844
Rafael Espindola761cb062012-06-03 23:57:14 +00003845 unsigned NestLevel = 0;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003846 for (;;) {
3847 // Check whether we have reached the end of the file.
Rafael Espindola761cb062012-06-03 23:57:14 +00003848 if (getLexer().is(AsmToken::Eof)) {
3849 Error(DirectiveLoc, "no matching '.endr' in definition");
3850 return 0;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003851 }
3852
Rafael Espindola761cb062012-06-03 23:57:14 +00003853 if (Lexer.is(AsmToken::Identifier) &&
3854 (getTok().getIdentifier() == ".rept")) {
3855 ++NestLevel;
3856 }
3857
3858 // Otherwise, check whether we have reached the .endr.
Jim Grosbach4a200922013-09-20 23:08:21 +00003859 if (Lexer.is(AsmToken::Identifier) && getTok().getIdentifier() == ".endr") {
Rafael Espindola761cb062012-06-03 23:57:14 +00003860 if (NestLevel == 0) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003861 EndToken = getTok();
3862 Lex();
Rafael Espindola761cb062012-06-03 23:57:14 +00003863 if (Lexer.isNot(AsmToken::EndOfStatement)) {
3864 TokError("unexpected token in '.endr' directive");
3865 return 0;
3866 }
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003867 break;
3868 }
Rafael Espindola761cb062012-06-03 23:57:14 +00003869 --NestLevel;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003870 }
3871
Rafael Espindola761cb062012-06-03 23:57:14 +00003872 // Otherwise, scan till the end of the statement.
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003873 eatToEndOfStatement();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003874 }
3875
3876 const char *BodyStart = StartToken.getLoc().getPointer();
3877 const char *BodyEnd = EndToken.getLoc().getPointer();
3878 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
3879
Rafael Espindola761cb062012-06-03 23:57:14 +00003880 // We Are Anonymous.
3881 StringRef Name;
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003882 MCAsmMacroParameters Parameters;
Benjamin Kramera2b0c332013-08-04 09:06:29 +00003883 MacroLikeBodies.push_back(MCAsmMacro(Name, Body, Parameters));
3884 return &MacroLikeBodies.back();
Rafael Espindola761cb062012-06-03 23:57:14 +00003885}
3886
Jim Grosbach4a200922013-09-20 23:08:21 +00003887void AsmParser::instantiateMacroLikeBody(MCAsmMacro *M, SMLoc DirectiveLoc,
Rafael Espindola761cb062012-06-03 23:57:14 +00003888 raw_svector_ostream &OS) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003889 OS << ".endr\n";
3890
3891 MemoryBuffer *Instantiation =
Jim Grosbach4a200922013-09-20 23:08:21 +00003892 MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003893
Rafael Espindola761cb062012-06-03 23:57:14 +00003894 // Create the macro instantiation object and add to the current macro
3895 // instantiation stack.
Jim Grosbach4a200922013-09-20 23:08:21 +00003896 MacroInstantiation *MI = new MacroInstantiation(
3897 M, DirectiveLoc, CurBuffer, getTok().getLoc(), Instantiation);
Rafael Espindola761cb062012-06-03 23:57:14 +00003898 ActiveMacros.push_back(MI);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003899
Rafael Espindola761cb062012-06-03 23:57:14 +00003900 // Jump to the macro instantiation and prime the lexer.
3901 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
3902 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
3903 Lex();
3904}
3905
Jim Grosbach4a200922013-09-20 23:08:21 +00003906bool AsmParser::parseDirectiveRept(SMLoc DirectiveLoc) {
Rafael Espindola761cb062012-06-03 23:57:14 +00003907 int64_t Count;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003908 if (parseAbsoluteExpression(Count))
Rafael Espindola761cb062012-06-03 23:57:14 +00003909 return TokError("unexpected token in '.rept' directive");
3910
3911 if (Count < 0)
3912 return TokError("Count is negative");
3913
3914 if (Lexer.isNot(AsmToken::EndOfStatement))
3915 return TokError("unexpected token in '.rept' directive");
3916
3917 // Eat the end of statement.
3918 Lex();
3919
3920 // Lex the rept definition.
Jim Grosbach4a200922013-09-20 23:08:21 +00003921 MCAsmMacro *M = parseMacroLikeBody(DirectiveLoc);
Rafael Espindola761cb062012-06-03 23:57:14 +00003922 if (!M)
3923 return true;
3924
3925 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3926 // to hold the macro body with substitutions.
3927 SmallString<256> Buf;
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003928 MCAsmMacroParameters Parameters;
3929 MCAsmMacroArguments A;
Rafael Espindola761cb062012-06-03 23:57:14 +00003930 raw_svector_ostream OS(Buf);
3931 while (Count--) {
3932 if (expandMacro(OS, M->Body, Parameters, A, getTok().getLoc()))
3933 return true;
3934 }
Jim Grosbach4a200922013-09-20 23:08:21 +00003935 instantiateMacroLikeBody(M, DirectiveLoc, OS);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003936
3937 return false;
3938}
3939
Jim Grosbach4a200922013-09-20 23:08:21 +00003940/// parseDirectiveIrp
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003941/// ::= .irp symbol,values
Jim Grosbach4a200922013-09-20 23:08:21 +00003942bool AsmParser::parseDirectiveIrp(SMLoc DirectiveLoc) {
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003943 MCAsmMacroParameters Parameters;
3944 MCAsmMacroParameter Parameter;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003945
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003946 if (parseIdentifier(Parameter.first))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003947 return TokError("expected identifier in '.irp' directive");
3948
3949 Parameters.push_back(Parameter);
3950
3951 if (Lexer.isNot(AsmToken::Comma))
3952 return TokError("expected comma in '.irp' directive");
3953
3954 Lex();
3955
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003956 MCAsmMacroArguments A;
Jim Grosbach4a200922013-09-20 23:08:21 +00003957 if (parseMacroArguments(0, A))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003958 return true;
3959
3960 // Eat the end of statement.
3961 Lex();
3962
3963 // Lex the irp definition.
Jim Grosbach4a200922013-09-20 23:08:21 +00003964 MCAsmMacro *M = parseMacroLikeBody(DirectiveLoc);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003965 if (!M)
3966 return true;
3967
3968 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3969 // to hold the macro body with substitutions.
3970 SmallString<256> Buf;
3971 raw_svector_ostream OS(Buf);
3972
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003973 for (MCAsmMacroArguments::iterator i = A.begin(), e = A.end(); i != e; ++i) {
3974 MCAsmMacroArguments Args;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003975 Args.push_back(*i);
3976
3977 if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
3978 return true;
3979 }
3980
Jim Grosbach4a200922013-09-20 23:08:21 +00003981 instantiateMacroLikeBody(M, DirectiveLoc, OS);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003982
3983 return false;
3984}
3985
Jim Grosbach4a200922013-09-20 23:08:21 +00003986/// parseDirectiveIrpc
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003987/// ::= .irpc symbol,values
Jim Grosbach4a200922013-09-20 23:08:21 +00003988bool AsmParser::parseDirectiveIrpc(SMLoc DirectiveLoc) {
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003989 MCAsmMacroParameters Parameters;
3990 MCAsmMacroParameter Parameter;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003991
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003992 if (parseIdentifier(Parameter.first))
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003993 return TokError("expected identifier in '.irpc' directive");
3994
3995 Parameters.push_back(Parameter);
3996
3997 if (Lexer.isNot(AsmToken::Comma))
3998 return TokError("expected comma in '.irpc' directive");
3999
4000 Lex();
4001
Eli Benderskyc0c67b02013-01-14 23:22:36 +00004002 MCAsmMacroArguments A;
Jim Grosbach4a200922013-09-20 23:08:21 +00004003 if (parseMacroArguments(0, A))
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004004 return true;
4005
4006 if (A.size() != 1 || A.front().size() != 1)
4007 return TokError("unexpected token in '.irpc' directive");
4008
4009 // Eat the end of statement.
4010 Lex();
4011
4012 // Lex the irpc definition.
Jim Grosbach4a200922013-09-20 23:08:21 +00004013 MCAsmMacro *M = parseMacroLikeBody(DirectiveLoc);
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004014 if (!M)
4015 return true;
4016
4017 // Macro instantiation is lexical, unfortunately. We construct a new buffer
4018 // to hold the macro body with substitutions.
4019 SmallString<256> Buf;
4020 raw_svector_ostream OS(Buf);
4021
4022 StringRef Values = A.front().front().getString();
4023 std::size_t I, End = Values.size();
4024 for (I = 0; I < End; ++I) {
Eli Bendersky9bac6b22013-01-14 19:00:26 +00004025 MCAsmMacroArgument Arg;
Jim Grosbach4a200922013-09-20 23:08:21 +00004026 Arg.push_back(AsmToken(AsmToken::Identifier, Values.slice(I, I + 1)));
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004027
Eli Benderskyc0c67b02013-01-14 23:22:36 +00004028 MCAsmMacroArguments Args;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004029 Args.push_back(Arg);
4030
4031 if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
4032 return true;
4033 }
4034
Jim Grosbach4a200922013-09-20 23:08:21 +00004035 instantiateMacroLikeBody(M, DirectiveLoc, OS);
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004036
4037 return false;
4038}
4039
Jim Grosbach4a200922013-09-20 23:08:21 +00004040bool AsmParser::parseDirectiveEndr(SMLoc DirectiveLoc) {
Rafael Espindola761cb062012-06-03 23:57:14 +00004041 if (ActiveMacros.empty())
Preston Gurd6579eea2012-09-19 20:23:43 +00004042 return TokError("unmatched '.endr' directive");
Rafael Espindola2ec304c2012-05-12 16:31:10 +00004043
4044 // The only .repl that should get here are the ones created by
Jim Grosbach4a200922013-09-20 23:08:21 +00004045 // instantiateMacroLikeBody.
Rafael Espindola2ec304c2012-05-12 16:31:10 +00004046 assert(getLexer().is(AsmToken::EndOfStatement));
4047
Jim Grosbach4a200922013-09-20 23:08:21 +00004048 handleMacroExit();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00004049 return false;
4050}
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00004051
Jim Grosbach4a200922013-09-20 23:08:21 +00004052bool AsmParser::parseDirectiveMSEmit(SMLoc IDLoc, ParseStatementInfo &Info,
Benjamin Kramer75234372013-02-15 20:37:21 +00004053 size_t Len) {
Eli Friedman2128aae2012-10-22 23:58:19 +00004054 const MCExpr *Value;
4055 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00004056 if (parseExpression(Value))
Eli Friedman2128aae2012-10-22 23:58:19 +00004057 return true;
4058 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value);
4059 if (!MCE)
4060 return Error(ExprLoc, "unexpected expression in _emit");
4061 uint64_t IntValue = MCE->getValue();
4062 if (!isUIntN(8, IntValue) && !isIntN(8, IntValue))
4063 return Error(ExprLoc, "literal value out of range for directive");
4064
Chad Rosier469b1442013-02-12 21:33:51 +00004065 Info.AsmRewrites->push_back(AsmRewrite(AOK_Emit, IDLoc, Len));
4066 return false;
4067}
4068
Jim Grosbach4a200922013-09-20 23:08:21 +00004069bool AsmParser::parseDirectiveMSAlign(SMLoc IDLoc, ParseStatementInfo &Info) {
Chad Rosier469b1442013-02-12 21:33:51 +00004070 const MCExpr *Value;
4071 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00004072 if (parseExpression(Value))
Chad Rosier469b1442013-02-12 21:33:51 +00004073 return true;
4074 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value);
4075 if (!MCE)
4076 return Error(ExprLoc, "unexpected expression in align");
4077 uint64_t IntValue = MCE->getValue();
4078 if (!isPowerOf2_64(IntValue))
4079 return Error(ExprLoc, "literal value not a power of two greater then zero");
4080
Jim Grosbach4a200922013-09-20 23:08:21 +00004081 Info.AsmRewrites->push_back(
4082 AsmRewrite(AOK_Align, IDLoc, 5, Log2_64(IntValue)));
Eli Friedman2128aae2012-10-22 23:58:19 +00004083 return false;
4084}
4085
Chad Rosier19aa3e32013-02-13 21:27:17 +00004086// We are comparing pointers, but the pointers are relative to a single string.
4087// Thus, this should always be deterministic.
Benjamin Kramer0d293e42013-09-22 14:09:50 +00004088static int rewritesSort(const AsmRewrite *AsmRewriteA,
4089 const AsmRewrite *AsmRewriteB) {
Chad Rosierabde6752013-02-13 18:38:58 +00004090 if (AsmRewriteA->Loc.getPointer() < AsmRewriteB->Loc.getPointer())
4091 return -1;
4092 if (AsmRewriteB->Loc.getPointer() < AsmRewriteA->Loc.getPointer())
4093 return 1;
Chad Rosierb54562b2013-02-15 22:54:16 +00004094
Chad Rosier6b369ce2013-04-08 17:43:47 +00004095 // It's possible to have a SizeDirective, Imm/ImmPrefix and an Input/Output
4096 // rewrite to the same location. Make sure the SizeDirective rewrite is
4097 // performed first, then the Imm/ImmPrefix and finally the Input/Output. This
4098 // ensures the sort algorithm is stable.
Jim Grosbach4a200922013-09-20 23:08:21 +00004099 if (AsmRewritePrecedence[AsmRewriteA->Kind] >
4100 AsmRewritePrecedence[AsmRewriteB->Kind])
Chad Rosierb54562b2013-02-15 22:54:16 +00004101 return -1;
Chad Rosier6b369ce2013-04-08 17:43:47 +00004102
Jim Grosbach4a200922013-09-20 23:08:21 +00004103 if (AsmRewritePrecedence[AsmRewriteA->Kind] <
4104 AsmRewritePrecedence[AsmRewriteB->Kind])
Chad Rosierb54562b2013-02-15 22:54:16 +00004105 return 1;
Jim Grosbach4a200922013-09-20 23:08:21 +00004106 llvm_unreachable("Unstable rewrite sort.");
Chad Rosierb1953982013-02-13 01:03:13 +00004107}
4108
Jim Grosbach4a200922013-09-20 23:08:21 +00004109bool AsmParser::parseMSInlineAsm(
4110 void *AsmLoc, std::string &AsmString, unsigned &NumOutputs,
4111 unsigned &NumInputs, SmallVectorImpl<std::pair<void *, bool> > &OpDecls,
4112 SmallVectorImpl<std::string> &Constraints,
4113 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
4114 const MCInstPrinter *IP, MCAsmParserSemaCallback &SI) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00004115 SmallVector<void *, 4> InputDecls;
4116 SmallVector<void *, 4> OutputDecls;
Chad Rosierc1ec2072013-01-10 22:10:27 +00004117 SmallVector<bool, 4> InputDeclsAddressOf;
4118 SmallVector<bool, 4> OutputDeclsAddressOf;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004119 SmallVector<std::string, 4> InputConstraints;
4120 SmallVector<std::string, 4> OutputConstraints;
Benjamin Kramer75234372013-02-15 20:37:21 +00004121 SmallVector<unsigned, 4> ClobberRegs;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004122
Benjamin Kramer75234372013-02-15 20:37:21 +00004123 SmallVector<AsmRewrite, 4> AsmStrRewrites;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004124
4125 // Prime the lexer.
4126 Lex();
4127
4128 // While we have input, parse each statement.
4129 unsigned InputIdx = 0;
4130 unsigned OutputIdx = 0;
4131 while (getLexer().isNot(AsmToken::Eof)) {
Eli Friedman2128aae2012-10-22 23:58:19 +00004132 ParseStatementInfo Info(&AsmStrRewrites);
Jim Grosbach4a200922013-09-20 23:08:21 +00004133 if (parseStatement(Info))
Chad Rosierab450e42012-10-19 22:57:33 +00004134 return true;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004135
Chad Rosier57498012012-12-12 22:45:52 +00004136 if (Info.ParseError)
4137 return true;
4138
Benjamin Kramer75234372013-02-15 20:37:21 +00004139 if (Info.Opcode == ~0U)
4140 continue;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004141
Benjamin Kramer75234372013-02-15 20:37:21 +00004142 const MCInstrDesc &Desc = MII->get(Info.Opcode);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004143
Benjamin Kramer75234372013-02-15 20:37:21 +00004144 // Build the list of clobbers, outputs and inputs.
4145 for (unsigned i = 1, e = Info.ParsedOperands.size(); i != e; ++i) {
4146 MCParsedAsmOperand *Operand = Info.ParsedOperands[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00004147
Benjamin Kramer75234372013-02-15 20:37:21 +00004148 // Immediate.
Chad Rosier811ddf62013-03-19 21:58:18 +00004149 if (Operand->isImm())
Benjamin Kramer75234372013-02-15 20:37:21 +00004150 continue;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004151
Benjamin Kramer75234372013-02-15 20:37:21 +00004152 // Register operand.
4153 if (Operand->isReg() && !Operand->needAddressOf()) {
4154 unsigned NumDefs = Desc.getNumDefs();
4155 // Clobber.
4156 if (NumDefs && Operand->getMCOperandNum() < NumDefs)
4157 ClobberRegs.push_back(Operand->getReg());
4158 continue;
4159 }
4160
4161 // Expr/Input or Output.
Chad Rosierb976e402013-04-09 17:53:49 +00004162 StringRef SymName = Operand->getSymName();
4163 if (SymName.empty())
4164 continue;
4165
Chad Rosier087c3092013-04-22 22:12:12 +00004166 void *OpDecl = Operand->getOpDecl();
Benjamin Kramer75234372013-02-15 20:37:21 +00004167 if (!OpDecl)
4168 continue;
4169
4170 bool isOutput = (i == 1) && Desc.mayStore();
Chad Rosierb976e402013-04-09 17:53:49 +00004171 SMLoc Start = SMLoc::getFromPointer(SymName.data());
Benjamin Kramer75234372013-02-15 20:37:21 +00004172 if (isOutput) {
4173 ++InputIdx;
4174 OutputDecls.push_back(OpDecl);
4175 OutputDeclsAddressOf.push_back(Operand->needAddressOf());
4176 OutputConstraints.push_back('=' + Operand->getConstraint().str());
Chad Rosierb976e402013-04-09 17:53:49 +00004177 AsmStrRewrites.push_back(AsmRewrite(AOK_Output, Start, SymName.size()));
Benjamin Kramer75234372013-02-15 20:37:21 +00004178 } else {
4179 InputDecls.push_back(OpDecl);
4180 InputDeclsAddressOf.push_back(Operand->needAddressOf());
4181 InputConstraints.push_back(Operand->getConstraint().str());
Chad Rosierb976e402013-04-09 17:53:49 +00004182 AsmStrRewrites.push_back(AsmRewrite(AOK_Input, Start, SymName.size()));
Chad Rosierb1f8c132012-10-18 15:49:34 +00004183 }
Chad Rosierb1f8c132012-10-18 15:49:34 +00004184 }
4185 }
4186
4187 // Set the number of Outputs and Inputs.
Chad Rosierc8dd27e2012-10-18 19:39:30 +00004188 NumOutputs = OutputDecls.size();
4189 NumInputs = InputDecls.size();
Chad Rosierb1f8c132012-10-18 15:49:34 +00004190
4191 // Set the unique clobbers.
Benjamin Kramer75234372013-02-15 20:37:21 +00004192 array_pod_sort(ClobberRegs.begin(), ClobberRegs.end());
4193 ClobberRegs.erase(std::unique(ClobberRegs.begin(), ClobberRegs.end()),
4194 ClobberRegs.end());
4195 Clobbers.assign(ClobberRegs.size(), std::string());
4196 for (unsigned I = 0, E = ClobberRegs.size(); I != E; ++I) {
4197 raw_string_ostream OS(Clobbers[I]);
4198 IP->printRegName(OS, ClobberRegs[I]);
4199 }
Chad Rosierb1f8c132012-10-18 15:49:34 +00004200
4201 // Merge the various outputs and inputs. Output are expected first.
4202 if (NumOutputs || NumInputs) {
4203 unsigned NumExprs = NumOutputs + NumInputs;
Chad Rosierc8dd27e2012-10-18 19:39:30 +00004204 OpDecls.resize(NumExprs);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004205 Constraints.resize(NumExprs);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004206 for (unsigned i = 0; i < NumOutputs; ++i) {
Chad Rosierc1ec2072013-01-10 22:10:27 +00004207 OpDecls[i] = std::make_pair(OutputDecls[i], OutputDeclsAddressOf[i]);
Chad Rosier1c99a7f2013-01-15 23:07:53 +00004208 Constraints[i] = OutputConstraints[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00004209 }
4210 for (unsigned i = 0, j = NumOutputs; i < NumInputs; ++i, ++j) {
Chad Rosierc1ec2072013-01-10 22:10:27 +00004211 OpDecls[j] = std::make_pair(InputDecls[i], InputDeclsAddressOf[i]);
Chad Rosier1c99a7f2013-01-15 23:07:53 +00004212 Constraints[j] = InputConstraints[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00004213 }
4214 }
4215
4216 // Build the IR assembly string.
4217 std::string AsmStringIR;
4218 raw_string_ostream OS(AsmStringIR);
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004219 const char *AsmStart = SrcMgr.getMemoryBuffer(0)->getBufferStart();
4220 const char *AsmEnd = SrcMgr.getMemoryBuffer(0)->getBufferEnd();
Jim Grosbach4a200922013-09-20 23:08:21 +00004221 array_pod_sort(AsmStrRewrites.begin(), AsmStrRewrites.end(), rewritesSort);
Benjamin Kramer75234372013-02-15 20:37:21 +00004222 for (SmallVectorImpl<AsmRewrite>::iterator I = AsmStrRewrites.begin(),
4223 E = AsmStrRewrites.end();
4224 I != E; ++I) {
Chad Rosierdda4b6b2013-04-12 16:26:42 +00004225 AsmRewriteKind Kind = (*I).Kind;
4226 if (Kind == AOK_Delete)
4227 continue;
4228
Chad Rosierb1f8c132012-10-18 15:49:34 +00004229 const char *Loc = (*I).Loc.getPointer();
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004230 assert(Loc >= AsmStart && "Expected Loc to be at or after Start!");
Chad Rosier96d58e62012-10-19 20:57:14 +00004231
Chad Rosier023c8802013-03-19 17:32:17 +00004232 // Emit everything up to the immediate/expression.
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004233 unsigned Len = Loc - AsmStart;
Chad Rosierf06cc982013-04-11 21:49:30 +00004234 if (Len)
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004235 OS << StringRef(AsmStart, Len);
Chad Rosier96d58e62012-10-19 20:57:14 +00004236
Chad Rosier5a719fc2012-10-23 17:43:43 +00004237 // Skip the original expression.
4238 if (Kind == AOK_Skip) {
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004239 AsmStart = Loc + (*I).Len;
Chad Rosier5a719fc2012-10-23 17:43:43 +00004240 continue;
4241 }
4242
Chad Rosierdda4b6b2013-04-12 16:26:42 +00004243 unsigned AdditionalSkip = 0;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004244 // Rewrite expressions in $N notation.
Chad Rosier96d58e62012-10-19 20:57:14 +00004245 switch (Kind) {
Jim Grosbach4a200922013-09-20 23:08:21 +00004246 default:
4247 break;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004248 case AOK_Imm:
Benjamin Kramer75234372013-02-15 20:37:21 +00004249 OS << "$$" << (*I).Val;
Chad Rosierefcb3d92012-10-26 18:04:20 +00004250 break;
4251 case AOK_ImmPrefix:
Benjamin Kramer75234372013-02-15 20:37:21 +00004252 OS << "$$";
Chad Rosierb1f8c132012-10-18 15:49:34 +00004253 break;
4254 case AOK_Input:
Benjamin Kramer75234372013-02-15 20:37:21 +00004255 OS << '$' << InputIdx++;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004256 break;
4257 case AOK_Output:
Benjamin Kramer75234372013-02-15 20:37:21 +00004258 OS << '$' << OutputIdx++;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004259 break;
Chad Rosier96d58e62012-10-19 20:57:14 +00004260 case AOK_SizeDirective:
Benjamin Kramer75234372013-02-15 20:37:21 +00004261 switch ((*I).Val) {
Chad Rosier96d58e62012-10-19 20:57:14 +00004262 default: break;
4263 case 8: OS << "byte ptr "; break;
4264 case 16: OS << "word ptr "; break;
4265 case 32: OS << "dword ptr "; break;
4266 case 64: OS << "qword ptr "; break;
4267 case 80: OS << "xword ptr "; break;
4268 case 128: OS << "xmmword ptr "; break;
4269 case 256: OS << "ymmword ptr "; break;
4270 }
Eli Friedman2128aae2012-10-22 23:58:19 +00004271 break;
4272 case AOK_Emit:
4273 OS << ".byte";
4274 break;
Chad Rosier469b1442013-02-12 21:33:51 +00004275 case AOK_Align: {
4276 unsigned Val = (*I).Val;
4277 OS << ".align " << Val;
4278
4279 // Skip the original immediate.
Benjamin Kramer75234372013-02-15 20:37:21 +00004280 assert(Val < 10 && "Expected alignment less then 2^10.");
Chad Rosier469b1442013-02-12 21:33:51 +00004281 AdditionalSkip = (Val < 4) ? 2 : Val < 7 ? 3 : 4;
4282 break;
4283 }
Chad Rosier6a020a72012-10-25 20:41:34 +00004284 case AOK_DotOperator:
4285 OS << (*I).Val;
4286 break;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004287 }
Chad Rosier96d58e62012-10-19 20:57:14 +00004288
Chad Rosierb1f8c132012-10-18 15:49:34 +00004289 // Skip the original expression.
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004290 AsmStart = Loc + (*I).Len + AdditionalSkip;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004291 }
4292
4293 // Emit the remainder of the asm string.
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004294 if (AsmStart != AsmEnd)
4295 OS << StringRef(AsmStart, AsmEnd - AsmStart);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004296
4297 AsmString = OS.str();
4298 return false;
4299}
4300
Daniel Dunbard1e3b442010-07-17 02:26:10 +00004301/// \brief Create an MCAsmParser instance.
Jim Grosbach4a200922013-09-20 23:08:21 +00004302MCAsmParser *llvm::createMCAsmParser(SourceMgr &SM, MCContext &C,
4303 MCStreamer &Out, const MCAsmInfo &MAI) {
Jim Grosbach1b84cce2011-08-16 18:33:49 +00004304 return new AsmParser(SM, C, Out, MAI);
Daniel Dunbard1e3b442010-07-17 02:26:10 +00004305}