blob: 9a362563a7ea93c855f9a22293756a979f642cd6 [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.
Jack Carter6d389f52013-10-04 22:52:31 +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);
Jack Carter8e48edc2013-10-04 21:26:15 +0000782 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
783 getContext());
David Majnemer3f22cc12013-09-25 10:47:21 +0000784 EndLoc = FirstTokenLoc;
785 return false;
786 } else
787 return Error(FirstTokenLoc, "invalid token in expression");
788 return true;
789 }
Kevin Enderby5de048e2013-01-22 21:09:20 +0000790 }
Daniel Dunbare17edff2010-08-24 19:13:42 +0000791
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000792 EndLoc = SMLoc::getFromPointer(Identifier.end());
793
Daniel Dunbarfffff912009-10-16 01:34:54 +0000794 // This is a symbol reference.
Hans Wennborg508d7b72013-10-16 01:20:40 +0000795 std::pair<StringRef, StringRef> Split = Identifier.split('@');
NAKAMURA Takumi32c24da2013-10-16 08:22:49 +0000796 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Hans Wennborg508d7b72013-10-16 01:20:40 +0000797
NAKAMURA Takumi32c24da2013-10-16 08:22:49 +0000798 // Lookup the symbol variant if used.
799 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
800 if (Split.first.size() != Identifier.size()) {
801 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000802 if (Variant == MCSymbolRefExpr::VK_Invalid) {
803 Variant = MCSymbolRefExpr::VK_None;
NAKAMURA Takumi32c24da2013-10-16 08:22:49 +0000804 return TokError("invalid variant '" + Split.second + "'");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000805 }
806 }
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000807
Daniel Dunbarfffff912009-10-16 01:34:54 +0000808 // If this is an absolute variable reference, substitute it now to preserve
809 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000810 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000811 if (Variant)
Daniel Dunbar603abd52010-11-08 17:53:02 +0000812 return Error(EndLoc, "unexpected modifier on variable reference");
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000813
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000814 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000815 return false;
816 }
817
818 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000819 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000820 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000821 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000822 case AsmToken::Integer: {
823 SMLoc Loc = getTok().getLoc();
824 int64_t IntVal = getTok().getIntVal();
825 Res = MCConstantExpr::Create(IntVal, getContext());
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000826 EndLoc = Lexer.getTok().getEndLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000827 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000828 // Look for 'b' or 'f' following an Integer as a directional label
829 if (Lexer.getKind() == AsmToken::Identifier) {
830 StringRef IDVal = getTok().getString();
Ulrich Weigand151ad372013-06-20 16:24:17 +0000831 // Lookup the symbol variant if used.
832 std::pair<StringRef, StringRef> Split = IDVal.split('@');
833 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
834 if (Split.first.size() != IDVal.size()) {
835 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
836 if (Variant == MCSymbolRefExpr::VK_Invalid) {
837 Variant = MCSymbolRefExpr::VK_None;
838 return TokError("invalid variant '" + Split.second + "'");
839 }
Vladimir Medic7b0a7962013-08-20 13:33:18 +0000840 IDVal = Split.first;
Ulrich Weigand151ad372013-06-20 16:24:17 +0000841 }
Jim Grosbach4a200922013-09-20 23:08:21 +0000842 if (IDVal == "f" || IDVal == "b") {
843 MCSymbol *Sym =
844 Ctx.GetDirectionalLocalSymbol(IntVal, IDVal == "f" ? 1 : 0);
Ulrich Weigand151ad372013-06-20 16:24:17 +0000845 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Benjamin Kramer29739e72012-05-12 16:52:21 +0000846 if (IDVal == "b" && Sym->isUndefined())
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000847 return Error(Loc, "invalid reference to undefined symbol");
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000848 EndLoc = Lexer.getTok().getEndLoc();
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000849 Lex(); // Eat identifier.
850 }
851 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000852 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000853 }
Bill Wendling69c4ef32011-01-25 21:26:41 +0000854 case AsmToken::Real: {
855 APFloat RealVal(APFloat::IEEEdouble, getTok().getString());
Bob Wilson720b9182011-02-03 23:17:47 +0000856 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
Bill Wendling69c4ef32011-01-25 21:26:41 +0000857 Res = MCConstantExpr::Create(IntVal, getContext());
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000858 EndLoc = Lexer.getTok().getEndLoc();
Bill Wendling69c4ef32011-01-25 21:26:41 +0000859 Lex(); // Eat token.
860 return false;
861 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000862 case AsmToken::Dot: {
863 // This is a '.' reference, which references the current PC. Emit a
864 // temporary label to the streamer and refer to it.
865 MCSymbol *Sym = Ctx.CreateTempSymbol();
866 Out.EmitLabel(Sym);
867 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
Jordan Rose3ebe59c2013-01-07 19:00:49 +0000868 EndLoc = Lexer.getTok().getEndLoc();
Chris Lattnerd3050352010-04-14 04:40:28 +0000869 Lex(); // Eat identifier.
870 return false;
871 }
Daniel Dunbar3f872332009-07-28 16:08:33 +0000872 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000873 Lex(); // Eat the '('.
Jim Grosbach4a200922013-09-20 23:08:21 +0000874 return parseParenExpr(Res, EndLoc);
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000875 case AsmToken::LBrac:
876 if (!PlatformParser->HasBracketExpressions())
877 return TokError("brackets expression not supported on this target");
878 Lex(); // Eat the '['.
Jim Grosbach4a200922013-09-20 23:08:21 +0000879 return parseBracketExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000880 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000881 Lex(); // Eat the operator.
Jim Grosbach4a200922013-09-20 23:08:21 +0000882 if (parsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000883 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000884 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000885 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000886 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000887 Lex(); // Eat the operator.
Jim Grosbach4a200922013-09-20 23:08:21 +0000888 if (parsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000889 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000890 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000891 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000892 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000893 Lex(); // Eat the operator.
Jim Grosbach4a200922013-09-20 23:08:21 +0000894 if (parsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000895 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000896 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000897 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000898 }
899}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000900
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000901bool AsmParser::parseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000902 SMLoc EndLoc;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000903 return parseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000904}
905
Daniel Dunbarcceba832010-09-17 02:47:07 +0000906const MCExpr *
Jim Grosbach4a200922013-09-20 23:08:21 +0000907AsmParser::applyModifierToExpr(const MCExpr *E,
Daniel Dunbarcceba832010-09-17 02:47:07 +0000908 MCSymbolRefExpr::VariantKind Variant) {
Joerg Sonnenberger66b71392013-08-27 20:23:19 +0000909 // Ask the target implementation about this expression first.
910 const MCExpr *NewE = getTargetParser().applyModifierToExpr(E, Variant, Ctx);
911 if (NewE)
912 return NewE;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000913 // Recurse over the given expression, rebuilding it to apply the given variant
914 // if there is exactly one symbol.
915 switch (E->getKind()) {
916 case MCExpr::Target:
917 case MCExpr::Constant:
918 return 0;
919
920 case MCExpr::SymbolRef: {
921 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
922
923 if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
Jim Grosbach4a200922013-09-20 23:08:21 +0000924 TokError("invalid variant on expression '" + getTok().getIdentifier() +
925 "' (already modified)");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000926 return E;
927 }
928
929 return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
930 }
931
932 case MCExpr::Unary: {
933 const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
Jim Grosbach4a200922013-09-20 23:08:21 +0000934 const MCExpr *Sub = applyModifierToExpr(UE->getSubExpr(), Variant);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000935 if (!Sub)
936 return 0;
937 return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
938 }
939
940 case MCExpr::Binary: {
941 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
Jim Grosbach4a200922013-09-20 23:08:21 +0000942 const MCExpr *LHS = applyModifierToExpr(BE->getLHS(), Variant);
943 const MCExpr *RHS = applyModifierToExpr(BE->getRHS(), Variant);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000944
945 if (!LHS && !RHS)
946 return 0;
947
Jim Grosbach4a200922013-09-20 23:08:21 +0000948 if (!LHS)
949 LHS = BE->getLHS();
950 if (!RHS)
951 RHS = BE->getRHS();
Daniel Dunbarcceba832010-09-17 02:47:07 +0000952
953 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
954 }
955 }
Daniel Dunbarf3f95c92010-09-17 16:34:24 +0000956
Craig Topper85814382012-02-07 05:05:23 +0000957 llvm_unreachable("Invalid expression kind!");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000958}
959
Jim Grosbach4a200922013-09-20 23:08:21 +0000960/// \brief Parse an expression and return it.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000961///
Jim Grosbachfbe16812011-08-20 16:24:13 +0000962/// expr ::= expr &&,|| expr -> lowest.
963/// expr ::= expr |,^,&,! expr
964/// expr ::= expr ==,!=,<>,<,<=,>,>= expr
965/// expr ::= expr <<,>> expr
966/// expr ::= expr +,- expr
967/// expr ::= expr *,/,% expr -> highest.
Chris Lattner74ec1a32009-06-22 06:32:03 +0000968/// expr ::= primaryexpr
969///
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +0000970bool AsmParser::parseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000971 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000972 Res = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +0000973 if (parsePrimaryExpr(Res, EndLoc) || parseBinOpRHS(1, Res, EndLoc))
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000974 return true;
975
Daniel Dunbarcceba832010-09-17 02:47:07 +0000976 // As a special case, we support 'a op b @ modifier' by rewriting the
977 // expression to include the modifier. This is inefficient, but in general we
978 // expect users to use 'a@modifier op b'.
979 if (Lexer.getKind() == AsmToken::At) {
980 Lex();
981
982 if (Lexer.isNot(AsmToken::Identifier))
983 return TokError("unexpected symbol modifier following '@'");
984
985 MCSymbolRefExpr::VariantKind Variant =
Jim Grosbach4a200922013-09-20 23:08:21 +0000986 MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
Daniel Dunbarcceba832010-09-17 02:47:07 +0000987 if (Variant == MCSymbolRefExpr::VK_Invalid)
988 return TokError("invalid variant '" + getTok().getIdentifier() + "'");
989
Jim Grosbach4a200922013-09-20 23:08:21 +0000990 const MCExpr *ModifiedRes = applyModifierToExpr(Res, Variant);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000991 if (!ModifiedRes) {
992 return TokError("invalid modifier '" + getTok().getIdentifier() +
993 "' (no symbols present)");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000994 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000995
Daniel Dunbarcceba832010-09-17 02:47:07 +0000996 Res = ModifiedRes;
997 Lex();
998 }
999
Daniel Dunbare9a60eb2010-02-13 01:28:07 +00001000 // Try to constant fold it up front, if possible.
1001 int64_t Value;
1002 if (Res->EvaluateAsAbsolute(Value))
1003 Res = MCConstantExpr::Create(Value, getContext());
1004
1005 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +00001006}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001007
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001008bool AsmParser::parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +00001009 Res = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00001010 return parseParenExpr(Res, EndLoc) || parseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +00001011}
1012
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001013bool AsmParser::parseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +00001014 const MCExpr *Expr;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001015
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001016 SMLoc StartLoc = Lexer.getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001017 if (parseExpression(Expr))
Daniel Dunbar475839e2009-06-29 20:37:27 +00001018 return true;
1019
Daniel Dunbare00b0112009-10-16 01:57:52 +00001020 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00001021 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +00001022
1023 return false;
1024}
1025
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001026static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001027 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001028 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +00001029 default:
Jim Grosbach4a200922013-09-20 23:08:21 +00001030 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +00001031
Jim Grosbach4a200922013-09-20 23:08:21 +00001032 // Lowest Precedence: &&, ||
Daniel Dunbar3f872332009-07-28 16:08:33 +00001033 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001034 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001035 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001036 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001037 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001038 return 1;
1039
Jim Grosbach4a200922013-09-20 23:08:21 +00001040 // Low Precedence: |, &, ^
1041 //
1042 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +00001043 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001044 Kind = MCBinaryExpr::Or;
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001045 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001046 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001047 Kind = MCBinaryExpr::Xor;
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001048 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001049 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001050 Kind = MCBinaryExpr::And;
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001051 return 2;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001052
Jim Grosbach4a200922013-09-20 23:08:21 +00001053 // Low Intermediate Precedence: ==, !=, <>, <, <=, >, >=
Chris Lattnerf7d4da02010-09-22 05:05:16 +00001054 case AsmToken::EqualEqual:
1055 Kind = MCBinaryExpr::EQ;
1056 return 3;
1057 case AsmToken::ExclaimEqual:
1058 case AsmToken::LessGreater:
1059 Kind = MCBinaryExpr::NE;
1060 return 3;
1061 case AsmToken::Less:
1062 Kind = MCBinaryExpr::LT;
1063 return 3;
1064 case AsmToken::LessEqual:
1065 Kind = MCBinaryExpr::LTE;
1066 return 3;
1067 case AsmToken::Greater:
1068 Kind = MCBinaryExpr::GT;
1069 return 3;
1070 case AsmToken::GreaterEqual:
1071 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001072 return 3;
1073
Jim Grosbach4a200922013-09-20 23:08:21 +00001074 // Intermediate Precedence: <<, >>
Jim Grosbachfbe16812011-08-20 16:24:13 +00001075 case AsmToken::LessLess:
1076 Kind = MCBinaryExpr::Shl;
1077 return 4;
1078 case AsmToken::GreaterGreater:
1079 Kind = MCBinaryExpr::Shr;
1080 return 4;
1081
Jim Grosbach4a200922013-09-20 23:08:21 +00001082 // High Intermediate Precedence: +, -
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001083 case AsmToken::Plus:
1084 Kind = MCBinaryExpr::Add;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001085 return 5;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001086 case AsmToken::Minus:
1087 Kind = MCBinaryExpr::Sub;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001088 return 5;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001089
Jim Grosbach4a200922013-09-20 23:08:21 +00001090 // Highest Precedence: *, /, %
Daniel Dunbar3f872332009-07-28 16:08:33 +00001091 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001092 Kind = MCBinaryExpr::Mul;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001093 return 6;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001094 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001095 Kind = MCBinaryExpr::Div;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001096 return 6;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001097 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001098 Kind = MCBinaryExpr::Mod;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001099 return 6;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001100 }
1101}
1102
Jim Grosbach4a200922013-09-20 23:08:21 +00001103/// \brief Parse all binary operators with precedence >= 'Precedence'.
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001104/// Res contains the LHS of the expression on input.
Jim Grosbach4a200922013-09-20 23:08:21 +00001105bool AsmParser::parseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
Chris Lattnerb4307b32010-01-15 19:28:38 +00001106 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001107 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001108 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001109 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001110
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001111 // If the next token is lower precedence than we are allowed to eat, return
1112 // successfully with what we ate already.
1113 if (TokPrec < Precedence)
1114 return false;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001115
Sean Callanan79ed1a82010-01-19 20:22:31 +00001116 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001117
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001118 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +00001119 const MCExpr *RHS;
Jim Grosbach4a200922013-09-20 23:08:21 +00001120 if (parsePrimaryExpr(RHS, EndLoc))
1121 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001122
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001123 // If BinOp binds less tightly with RHS than the operator after RHS, let
1124 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001125 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001126 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Jim Grosbach4a200922013-09-20 23:08:21 +00001127 if (TokPrec < NextTokPrec && parseBinOpRHS(TokPrec + 1, RHS, EndLoc))
1128 return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001129
Daniel Dunbar475839e2009-06-29 20:37:27 +00001130 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +00001131 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001132 }
1133}
1134
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001135/// ParseStatement:
1136/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +00001137/// ::= Label* Directive ...Operands... EndOfStatement
1138/// ::= Label* Identifier OperandList* EndOfStatement
Jim Grosbach4a200922013-09-20 23:08:21 +00001139bool AsmParser::parseStatement(ParseStatementInfo &Info) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001140 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +00001141 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001142 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001143 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001144 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001145
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001146 // Statements always start with an identifier or are a full line comment.
Sean Callanan18b83232010-01-19 21:44:56 +00001147 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +00001148 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001149 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001150 int64_t LocalLabelVal = -1;
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001151 // A full line comment is a '#' as the first token.
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001152 if (Lexer.is(AsmToken::Hash))
Jim Grosbach4a200922013-09-20 23:08:21 +00001153 return parseCppHashLineFilenameComment(IDLoc);
Daniel Dunbar0143ac12011-03-25 17:47:14 +00001154
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001155 // Allow an integer followed by a ':' as a directional local label.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001156 if (Lexer.is(AsmToken::Integer)) {
1157 LocalLabelVal = getTok().getIntVal();
1158 if (LocalLabelVal < 0) {
1159 if (!TheCondState.Ignore)
1160 return TokError("unexpected token at start of statement");
1161 IDVal = "";
Eli Benderskyed5df012013-01-16 19:32:36 +00001162 } else {
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001163 IDVal = getTok().getString();
1164 Lex(); // Consume the integer token to be used as an identifier token.
1165 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +00001166 if (!TheCondState.Ignore)
1167 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001168 }
1169 }
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001170 } else if (Lexer.is(AsmToken::Dot)) {
1171 // Treat '.' as a valid identifier in this context.
1172 Lex();
1173 IDVal = ".";
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001174 } else if (parseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +00001175 if (!TheCondState.Ignore)
1176 return TokError("unexpected token at start of statement");
1177 IDVal = "";
1178 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001179
Chris Lattner7834fac2010-04-17 18:14:27 +00001180 // Handle conditional assembly here before checking for skipping. We
1181 // have to do this so that .endif isn't skipped in a ".if 0" block for
1182 // example.
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001183 StringMap<DirectiveKind>::const_iterator DirKindIt =
Jim Grosbach4a200922013-09-20 23:08:21 +00001184 DirectiveKindMap.find(IDVal);
1185 DirectiveKind DirKind = (DirKindIt == DirectiveKindMap.end())
1186 ? DK_NO_DIRECTIVE
1187 : DirKindIt->getValue();
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001188 switch (DirKind) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001189 default:
1190 break;
1191 case DK_IF:
1192 return parseDirectiveIf(IDLoc);
1193 case DK_IFB:
1194 return parseDirectiveIfb(IDLoc, true);
1195 case DK_IFNB:
1196 return parseDirectiveIfb(IDLoc, false);
1197 case DK_IFC:
1198 return parseDirectiveIfc(IDLoc, true);
1199 case DK_IFNC:
1200 return parseDirectiveIfc(IDLoc, false);
1201 case DK_IFDEF:
1202 return parseDirectiveIfdef(IDLoc, true);
1203 case DK_IFNDEF:
1204 case DK_IFNOTDEF:
1205 return parseDirectiveIfdef(IDLoc, false);
1206 case DK_ELSEIF:
1207 return parseDirectiveElseIf(IDLoc);
1208 case DK_ELSE:
1209 return parseDirectiveElse(IDLoc);
1210 case DK_ENDIF:
1211 return parseDirectiveEndIf(IDLoc);
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001212 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001213
Eli Benderskyed5df012013-01-16 19:32:36 +00001214 // Ignore the statement if in the middle of inactive conditional
1215 // (e.g. ".if 0").
Chad Rosier17feeec2012-10-20 00:47:08 +00001216 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001217 eatToEndOfStatement();
Chris Lattner7834fac2010-04-17 18:14:27 +00001218 return false;
1219 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001220
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001221 // FIXME: Recurse on local labels?
1222
1223 // See what kind of statement we have.
1224 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001225 case AsmToken::Colon: {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001226 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001227
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001228 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001229 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001230
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001231 // Diagnose attempt to use '.' as a label.
1232 if (IDVal == ".")
1233 return Error(IDLoc, "invalid use of pseudo-symbol '.' as a label");
1234
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001235 // Diagnose attempt to use a variable as a label.
1236 //
1237 // FIXME: Diagnostics. Note the location of the definition as a label.
1238 // FIXME: This doesn't diagnose assignment to a symbol which has been
1239 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001240 MCSymbol *Sym;
1241 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001242 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001243 else
1244 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +00001245 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001246 return Error(IDLoc, "invalid symbol redefinition");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001247
Daniel Dunbar959fd882009-08-26 22:13:22 +00001248 // Emit the label.
Chad Rosierdeb1bab2013-01-07 20:34:12 +00001249 if (!ParsingInlineAsm)
1250 Out.EmitLabel(Sym);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001251
Kevin Enderby94c2e852011-12-09 18:09:40 +00001252 // If we are generating dwarf for assembly source files then gather the
Kevin Enderby11c2def2012-01-10 21:12:34 +00001253 // info to make a dwarf label entry for this label if needed.
Kevin Enderby94c2e852011-12-09 18:09:40 +00001254 if (getContext().getGenDwarfForAssembly())
Kevin Enderby11c2def2012-01-10 21:12:34 +00001255 MCGenDwarfLabelEntry::Make(Sym, &getStreamer(), getSourceManager(),
1256 IDLoc);
Kevin Enderby94c2e852011-12-09 18:09:40 +00001257
Daniel Dunbar01777ff2010-05-23 18:36:34 +00001258 // Consume any end of statement token, if present, to avoid spurious
1259 // AddBlankLine calls().
1260 if (Lexer.is(AsmToken::EndOfStatement)) {
1261 Lex();
1262 if (Lexer.is(AsmToken::Eof))
1263 return false;
1264 }
1265
Eli Friedman2128aae2012-10-22 23:58:19 +00001266 return false;
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001267 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001268
Daniel Dunbar3f872332009-07-28 16:08:33 +00001269 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001270 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +00001271 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001272
Jim Grosbach4a200922013-09-20 23:08:21 +00001273 return parseAssignment(IDVal, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001274
1275 default: // Normal instruction or directive.
1276 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001277 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001278
1279 // If macros are enabled, check to see if this is a macro instantiation.
Jim Grosbach4a200922013-09-20 23:08:21 +00001280 if (areMacrosEnabled())
1281 if (const MCAsmMacro *M = lookupMacro(IDVal)) {
1282 return handleMacroEntry(M, IDLoc);
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001283 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001284
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001285 // Otherwise, we have a normal instruction or directive.
Vladimir Medic7b0a7962013-08-20 13:33:18 +00001286
Eli Bendersky6ee13082013-01-15 22:59:42 +00001287 // Directives start with "."
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001288 if (IDVal[0] == '.' && IDVal != ".") {
Eli Bendersky6ee13082013-01-15 22:59:42 +00001289 // There are several entities interested in parsing directives:
Vladimir Medic7b0a7962013-08-20 13:33:18 +00001290 //
Eli Bendersky6ee13082013-01-15 22:59:42 +00001291 // 1. The target-specific assembly parser. Some directives are target
1292 // specific or may potentially behave differently on certain targets.
1293 // 2. Asm parser extensions. For example, platform-specific parsers
1294 // (like the ELF parser) register themselves as extensions.
1295 // 3. The generic directive parser implemented by this class. These are
1296 // all the directives that behave in a target and platform independent
1297 // manner, or at least have a default behavior that's shared between
1298 // all targets and platforms.
Akira Hatanaka3b02d952012-07-05 19:09:33 +00001299
Eli Bendersky6ee13082013-01-15 22:59:42 +00001300 // First query the target-specific parser. It will return 'true' if it
1301 // isn't interested in this directive.
Akira Hatanaka3b02d952012-07-05 19:09:33 +00001302 if (!getTargetParser().ParseDirective(ID))
1303 return false;
1304
Eli Bendersky6ee13082013-01-15 22:59:42 +00001305 // Next, check the extention directive map to see if any extension has
1306 // registered itself to parse this directive.
Jim Grosbach4a200922013-09-20 23:08:21 +00001307 std::pair<MCAsmParserExtension *, DirectiveHandler> Handler =
1308 ExtensionDirectiveMap.lookup(IDVal);
Eli Bendersky6ee13082013-01-15 22:59:42 +00001309 if (Handler.first)
1310 return (*Handler.second)(Handler.first, IDVal, IDLoc);
1311
1312 // Finally, if no one else is interested in this directive, it must be
1313 // generic and familiar to this class.
Eli Bendersky5d0f0612013-01-10 22:44:57 +00001314 switch (DirKind) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001315 default:
1316 break;
1317 case DK_SET:
1318 case DK_EQU:
1319 return parseDirectiveSet(IDVal, true);
1320 case DK_EQUIV:
1321 return parseDirectiveSet(IDVal, false);
1322 case DK_ASCII:
1323 return parseDirectiveAscii(IDVal, false);
1324 case DK_ASCIZ:
1325 case DK_STRING:
1326 return parseDirectiveAscii(IDVal, true);
1327 case DK_BYTE:
1328 return parseDirectiveValue(1);
1329 case DK_SHORT:
1330 case DK_VALUE:
1331 case DK_2BYTE:
1332 return parseDirectiveValue(2);
1333 case DK_LONG:
1334 case DK_INT:
1335 case DK_4BYTE:
1336 return parseDirectiveValue(4);
1337 case DK_QUAD:
1338 case DK_8BYTE:
1339 return parseDirectiveValue(8);
1340 case DK_SINGLE:
1341 case DK_FLOAT:
1342 return parseDirectiveRealValue(APFloat::IEEEsingle);
1343 case DK_DOUBLE:
1344 return parseDirectiveRealValue(APFloat::IEEEdouble);
1345 case DK_ALIGN: {
1346 bool IsPow2 = !getContext().getAsmInfo()->getAlignmentIsInBytes();
1347 return parseDirectiveAlign(IsPow2, /*ExprSize=*/1);
1348 }
1349 case DK_ALIGN32: {
1350 bool IsPow2 = !getContext().getAsmInfo()->getAlignmentIsInBytes();
1351 return parseDirectiveAlign(IsPow2, /*ExprSize=*/4);
1352 }
1353 case DK_BALIGN:
1354 return parseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
1355 case DK_BALIGNW:
1356 return parseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
1357 case DK_BALIGNL:
1358 return parseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
1359 case DK_P2ALIGN:
1360 return parseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
1361 case DK_P2ALIGNW:
1362 return parseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
1363 case DK_P2ALIGNL:
1364 return parseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
1365 case DK_ORG:
1366 return parseDirectiveOrg();
1367 case DK_FILL:
1368 return parseDirectiveFill();
1369 case DK_ZERO:
1370 return parseDirectiveZero();
1371 case DK_EXTERN:
1372 eatToEndOfStatement(); // .extern is the default, ignore it.
1373 return false;
1374 case DK_GLOBL:
1375 case DK_GLOBAL:
1376 return parseDirectiveSymbolAttribute(MCSA_Global);
1377 case DK_LAZY_REFERENCE:
1378 return parseDirectiveSymbolAttribute(MCSA_LazyReference);
1379 case DK_NO_DEAD_STRIP:
1380 return parseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
1381 case DK_SYMBOL_RESOLVER:
1382 return parseDirectiveSymbolAttribute(MCSA_SymbolResolver);
1383 case DK_PRIVATE_EXTERN:
1384 return parseDirectiveSymbolAttribute(MCSA_PrivateExtern);
1385 case DK_REFERENCE:
1386 return parseDirectiveSymbolAttribute(MCSA_Reference);
1387 case DK_WEAK_DEFINITION:
1388 return parseDirectiveSymbolAttribute(MCSA_WeakDefinition);
1389 case DK_WEAK_REFERENCE:
1390 return parseDirectiveSymbolAttribute(MCSA_WeakReference);
1391 case DK_WEAK_DEF_CAN_BE_HIDDEN:
1392 return parseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
1393 case DK_COMM:
1394 case DK_COMMON:
1395 return parseDirectiveComm(/*IsLocal=*/false);
1396 case DK_LCOMM:
1397 return parseDirectiveComm(/*IsLocal=*/true);
1398 case DK_ABORT:
1399 return parseDirectiveAbort();
1400 case DK_INCLUDE:
1401 return parseDirectiveInclude();
1402 case DK_INCBIN:
1403 return parseDirectiveIncbin();
1404 case DK_CODE16:
1405 case DK_CODE16GCC:
1406 return TokError(Twine(IDVal) + " not supported yet");
1407 case DK_REPT:
1408 return parseDirectiveRept(IDLoc);
1409 case DK_IRP:
1410 return parseDirectiveIrp(IDLoc);
1411 case DK_IRPC:
1412 return parseDirectiveIrpc(IDLoc);
1413 case DK_ENDR:
1414 return parseDirectiveEndr(IDLoc);
1415 case DK_BUNDLE_ALIGN_MODE:
1416 return parseDirectiveBundleAlignMode();
1417 case DK_BUNDLE_LOCK:
1418 return parseDirectiveBundleLock();
1419 case DK_BUNDLE_UNLOCK:
1420 return parseDirectiveBundleUnlock();
1421 case DK_SLEB128:
1422 return parseDirectiveLEB128(true);
1423 case DK_ULEB128:
1424 return parseDirectiveLEB128(false);
1425 case DK_SPACE:
1426 case DK_SKIP:
1427 return parseDirectiveSpace(IDVal);
1428 case DK_FILE:
1429 return parseDirectiveFile(IDLoc);
1430 case DK_LINE:
1431 return parseDirectiveLine();
1432 case DK_LOC:
1433 return parseDirectiveLoc();
1434 case DK_STABS:
1435 return parseDirectiveStabs();
1436 case DK_CFI_SECTIONS:
1437 return parseDirectiveCFISections();
1438 case DK_CFI_STARTPROC:
1439 return parseDirectiveCFIStartProc();
1440 case DK_CFI_ENDPROC:
1441 return parseDirectiveCFIEndProc();
1442 case DK_CFI_DEF_CFA:
1443 return parseDirectiveCFIDefCfa(IDLoc);
1444 case DK_CFI_DEF_CFA_OFFSET:
1445 return parseDirectiveCFIDefCfaOffset();
1446 case DK_CFI_ADJUST_CFA_OFFSET:
1447 return parseDirectiveCFIAdjustCfaOffset();
1448 case DK_CFI_DEF_CFA_REGISTER:
1449 return parseDirectiveCFIDefCfaRegister(IDLoc);
1450 case DK_CFI_OFFSET:
1451 return parseDirectiveCFIOffset(IDLoc);
1452 case DK_CFI_REL_OFFSET:
1453 return parseDirectiveCFIRelOffset(IDLoc);
1454 case DK_CFI_PERSONALITY:
1455 return parseDirectiveCFIPersonalityOrLsda(true);
1456 case DK_CFI_LSDA:
1457 return parseDirectiveCFIPersonalityOrLsda(false);
1458 case DK_CFI_REMEMBER_STATE:
1459 return parseDirectiveCFIRememberState();
1460 case DK_CFI_RESTORE_STATE:
1461 return parseDirectiveCFIRestoreState();
1462 case DK_CFI_SAME_VALUE:
1463 return parseDirectiveCFISameValue(IDLoc);
1464 case DK_CFI_RESTORE:
1465 return parseDirectiveCFIRestore(IDLoc);
1466 case DK_CFI_ESCAPE:
1467 return parseDirectiveCFIEscape();
1468 case DK_CFI_SIGNAL_FRAME:
1469 return parseDirectiveCFISignalFrame();
1470 case DK_CFI_UNDEFINED:
1471 return parseDirectiveCFIUndefined(IDLoc);
1472 case DK_CFI_REGISTER:
1473 return parseDirectiveCFIRegister(IDLoc);
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +00001474 case DK_CFI_WINDOW_SAVE:
1475 return parseDirectiveCFIWindowSave();
Jim Grosbach4a200922013-09-20 23:08:21 +00001476 case DK_MACROS_ON:
1477 case DK_MACROS_OFF:
1478 return parseDirectiveMacrosOnOff(IDVal);
1479 case DK_MACRO:
1480 return parseDirectiveMacro(IDLoc);
1481 case DK_ENDM:
1482 case DK_ENDMACRO:
1483 return parseDirectiveEndMacro(IDVal);
1484 case DK_PURGEM:
1485 return parseDirectivePurgeMacro(IDLoc);
Eli Friedman5d68ec22010-07-19 04:17:25 +00001486 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001487
Jim Grosbach686c0182012-05-01 18:38:27 +00001488 return Error(IDLoc, "unknown directive");
Chris Lattner2cf5f142009-06-22 01:29:09 +00001489 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001490
Chad Rosier469b1442013-02-12 21:33:51 +00001491 // __asm _emit or __asm __emit
1492 if (ParsingInlineAsm && (IDVal == "_emit" || IDVal == "__emit" ||
1493 IDVal == "_EMIT" || IDVal == "__EMIT"))
Jim Grosbach4a200922013-09-20 23:08:21 +00001494 return parseDirectiveMSEmit(IDLoc, Info, IDVal.size());
Chad Rosier469b1442013-02-12 21:33:51 +00001495
1496 // __asm align
1497 if (ParsingInlineAsm && (IDVal == "align" || IDVal == "ALIGN"))
Jim Grosbach4a200922013-09-20 23:08:21 +00001498 return parseDirectiveMSAlign(IDLoc, Info);
Eli Friedman2128aae2012-10-22 23:58:19 +00001499
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00001500 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001501
Chris Lattnera7f13542010-05-19 23:34:33 +00001502 // Canonicalize the opcode to lower case.
Eli Benderskyed5df012013-01-16 19:32:36 +00001503 std::string OpcodeStr = IDVal.lower();
Chad Rosier6a020a72012-10-25 20:41:34 +00001504 ParseInstructionInfo IInfo(Info.AsmRewrites);
Jim Grosbach4a200922013-09-20 23:08:21 +00001505 bool HadError = getTargetParser().ParseInstruction(IInfo, OpcodeStr, IDLoc,
Vladimir Medic7b0a7962013-08-20 13:33:18 +00001506 Info.ParsedOperands);
Chad Rosier57498012012-12-12 22:45:52 +00001507 Info.ParseError = HadError;
Chris Lattner2cf5f142009-06-22 01:29:09 +00001508
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001509 // Dump the parsed representation, if requested.
1510 if (getShowParsedOperands()) {
1511 SmallString<256> Str;
1512 raw_svector_ostream OS(Str);
1513 OS << "parsed instruction: [";
Eli Friedman2128aae2012-10-22 23:58:19 +00001514 for (unsigned i = 0; i != Info.ParsedOperands.size(); ++i) {
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001515 if (i != 0)
1516 OS << ", ";
Eli Friedman2128aae2012-10-22 23:58:19 +00001517 Info.ParsedOperands[i]->print(OS);
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001518 }
1519 OS << "]";
1520
Jim Grosbach4a200922013-09-20 23:08:21 +00001521 printMessage(IDLoc, SourceMgr::DK_Note, OS.str());
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001522 }
1523
Kevin Enderby613b7572011-11-01 22:27:22 +00001524 // If we are generating dwarf for assembly source files and the current
1525 // section is the initial text section then generate a .loc directive for
1526 // the instruction.
1527 if (!HadError && getContext().getGenDwarfForAssembly() &&
Peter Collingbournedf39be62013-04-17 21:18:16 +00001528 getContext().getGenDwarfSection() ==
Jim Grosbach4a200922013-09-20 23:08:21 +00001529 getStreamer().getCurrentSection().first) {
Kevin Enderby938482f2012-11-01 17:31:35 +00001530
Eli Benderskyed5df012013-01-16 19:32:36 +00001531 unsigned Line = SrcMgr.FindLineNumber(IDLoc, CurBuffer);
Kevin Enderby938482f2012-11-01 17:31:35 +00001532
Eli Benderskyed5df012013-01-16 19:32:36 +00001533 // If we previously parsed a cpp hash file line comment then make sure the
1534 // current Dwarf File is for the CppHashFilename if not then emit the
1535 // Dwarf File table for it and adjust the line number for the .loc.
Vladimir Medic7b0a7962013-08-20 13:33:18 +00001536 const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles =
Jim Grosbach4a200922013-09-20 23:08:21 +00001537 getContext().getMCDwarfFiles();
Eli Benderskyed5df012013-01-16 19:32:36 +00001538 if (CppHashFilename.size() != 0) {
1539 if (MCDwarfFiles[getContext().getGenDwarfFileNumber()]->getName() !=
Kevin Enderby938482f2012-11-01 17:31:35 +00001540 CppHashFilename)
Eli Benderskyed5df012013-01-16 19:32:36 +00001541 getStreamer().EmitDwarfFileDirective(
Jim Grosbach4a200922013-09-20 23:08:21 +00001542 getContext().nextGenDwarfFileNumber(), StringRef(),
1543 CppHashFilename);
Kevin Enderby938482f2012-11-01 17:31:35 +00001544
Jim Grosbach4a200922013-09-20 23:08:21 +00001545 // Since SrcMgr.FindLineNumber() is slow and messes up the SourceMgr's
1546 // cache with the different Loc from the call above we save the last
1547 // info we queried here with SrcMgr.FindLineNumber().
1548 unsigned CppHashLocLineNo;
1549 if (LastQueryIDLoc == CppHashLoc && LastQueryBuffer == CppHashBuf)
1550 CppHashLocLineNo = LastQueryLine;
1551 else {
1552 CppHashLocLineNo = SrcMgr.FindLineNumber(CppHashLoc, CppHashBuf);
1553 LastQueryLine = CppHashLocLineNo;
1554 LastQueryIDLoc = CppHashLoc;
1555 LastQueryBuffer = CppHashBuf;
1556 }
1557 Line = CppHashLineNumber - 1 + (Line - CppHashLocLineNo);
Eli Benderskyed5df012013-01-16 19:32:36 +00001558 }
Kevin Enderby938482f2012-11-01 17:31:35 +00001559
Jim Grosbach4a200922013-09-20 23:08:21 +00001560 getStreamer().EmitDwarfLocDirective(
1561 getContext().getGenDwarfFileNumber(), Line, 0,
1562 DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0, 0, 0,
1563 StringRef());
Kevin Enderby613b7572011-11-01 22:27:22 +00001564 }
1565
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001566 // If parsing succeeded, match the instruction.
Chad Rosier84125ca2012-10-13 00:26:04 +00001567 if (!HadError) {
Chad Rosier84125ca2012-10-13 00:26:04 +00001568 unsigned ErrorInfo;
Jim Grosbach4a200922013-09-20 23:08:21 +00001569 HadError = getTargetParser().MatchAndEmitInstruction(
1570 IDLoc, Info.Opcode, Info.ParsedOperands, Out, ErrorInfo,
1571 ParsingInlineAsm);
Chad Rosier84125ca2012-10-13 00:26:04 +00001572 }
Chris Lattner98986712010-01-14 22:21:20 +00001573
Chris Lattnercbf8a982010-09-11 16:18:25 +00001574 // Don't skip the rest of the line, the instruction parser is responsible for
1575 // that.
1576 return false;
Chris Lattner27aa7d22009-06-21 20:16:42 +00001577}
Chris Lattner9a023f72009-06-24 04:43:34 +00001578
Jim Grosbach4a200922013-09-20 23:08:21 +00001579/// eatToEndOfLine uses the Lexer to eat the characters to the end of the line
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001580/// since they may not be able to be tokenized to get to the end of line token.
Jim Grosbach4a200922013-09-20 23:08:21 +00001581void AsmParser::eatToEndOfLine() {
Rafael Espindola12ae5272011-10-19 18:48:52 +00001582 if (!Lexer.is(AsmToken::EndOfStatement))
1583 Lexer.LexUntilEndOfLine();
Jim Grosbach4a200922013-09-20 23:08:21 +00001584 // Eat EOL.
1585 Lex();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001586}
1587
Jim Grosbach4a200922013-09-20 23:08:21 +00001588/// parseCppHashLineFilenameComment as this:
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001589/// ::= # number "filename"
1590/// or just as a full line comment if it doesn't have a number and a string.
Jim Grosbach4a200922013-09-20 23:08:21 +00001591bool AsmParser::parseCppHashLineFilenameComment(const SMLoc &L) {
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001592 Lex(); // Eat the hash token.
1593
1594 if (getLexer().isNot(AsmToken::Integer)) {
1595 // Consume the line since in cases it is not a well-formed line directive,
1596 // as if were simply a full line comment.
Jim Grosbach4a200922013-09-20 23:08:21 +00001597 eatToEndOfLine();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001598 return false;
1599 }
1600
1601 int64_t LineNumber = getTok().getIntVal();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001602 Lex();
1603
1604 if (getLexer().isNot(AsmToken::String)) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001605 eatToEndOfLine();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001606 return false;
1607 }
1608
1609 StringRef Filename = getTok().getString();
1610 // Get rid of the enclosing quotes.
Jim Grosbach4a200922013-09-20 23:08:21 +00001611 Filename = Filename.substr(1, Filename.size() - 2);
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001612
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001613 // Save the SMLoc, Filename and LineNumber for later use by diagnostics.
1614 CppHashLoc = L;
1615 CppHashFilename = Filename;
1616 CppHashLineNumber = LineNumber;
Kevin Enderby32c1a822012-11-05 21:55:41 +00001617 CppHashBuf = CurBuffer;
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001618
1619 // Ignore any trailing characters, they're just comment.
Jim Grosbach4a200922013-09-20 23:08:21 +00001620 eatToEndOfLine();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001621 return false;
1622}
1623
Jim Grosbach4a200922013-09-20 23:08:21 +00001624/// \brief will use the last parsed cpp hash line filename comment
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001625/// for the Filename and LineNo if any in the diagnostic.
1626void AsmParser::DiagHandler(const SMDiagnostic &Diag, void *Context) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001627 const AsmParser *Parser = static_cast<const AsmParser *>(Context);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001628 raw_ostream &OS = errs();
1629
1630 const SourceMgr &DiagSrcMgr = *Diag.getSourceMgr();
1631 const SMLoc &DiagLoc = Diag.getLoc();
1632 int DiagBuf = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
1633 int CppHashBuf = Parser->SrcMgr.FindBufferContainingLoc(Parser->CppHashLoc);
1634
Jim Grosbach4a200922013-09-20 23:08:21 +00001635 // Like SourceMgr::printMessage() we need to print the include stack if any
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001636 // before printing the message.
1637 int DiagCurBuffer = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
Benjamin Kramer04a04262011-10-16 10:48:29 +00001638 if (!Parser->SavedDiagHandler && DiagCurBuffer > 0) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001639 SMLoc ParentIncludeLoc = DiagSrcMgr.getParentIncludeLoc(DiagCurBuffer);
1640 DiagSrcMgr.PrintIncludeStack(ParentIncludeLoc, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001641 }
1642
Eric Christopher2318ba12012-12-18 00:30:54 +00001643 // If we have not parsed a cpp hash line filename comment or the source
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001644 // manager changed or buffer changed (like in a nested include) then just
1645 // print the normal diagnostic using its Filename and LineNo.
Jim Grosbach4a200922013-09-20 23:08:21 +00001646 if (!Parser->CppHashLineNumber || &DiagSrcMgr != &Parser->SrcMgr ||
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001647 DiagBuf != CppHashBuf) {
Benjamin Kramer04a04262011-10-16 10:48:29 +00001648 if (Parser->SavedDiagHandler)
1649 Parser->SavedDiagHandler(Diag, Parser->SavedDiagContext);
1650 else
1651 Diag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001652 return;
1653 }
1654
Eric Christopher2318ba12012-12-18 00:30:54 +00001655 // Use the CppHashFilename and calculate a line number based on the
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001656 // CppHashLoc and CppHashLineNumber relative to this Diag's SMLoc for
1657 // the diagnostic.
Jakub Staszakb06ea252013-09-16 22:03:38 +00001658 const std::string &Filename = Parser->CppHashFilename;
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001659
1660 int DiagLocLineNo = DiagSrcMgr.FindLineNumber(DiagLoc, DiagBuf);
1661 int CppHashLocLineNo =
1662 Parser->SrcMgr.FindLineNumber(Parser->CppHashLoc, CppHashBuf);
Jim Grosbach4a200922013-09-20 23:08:21 +00001663 int LineNo =
1664 Parser->CppHashLineNumber - 1 + (DiagLocLineNo - CppHashLocLineNo);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001665
Jim Grosbach4a200922013-09-20 23:08:21 +00001666 SMDiagnostic NewDiag(*Diag.getSourceMgr(), Diag.getLoc(), Filename, LineNo,
1667 Diag.getColumnNo(), Diag.getKind(), Diag.getMessage(),
Chris Lattner462b43c2011-10-16 05:47:55 +00001668 Diag.getLineContents(), Diag.getRanges());
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001669
Benjamin Kramer04a04262011-10-16 10:48:29 +00001670 if (Parser->SavedDiagHandler)
1671 Parser->SavedDiagHandler(NewDiag, Parser->SavedDiagContext);
1672 else
1673 NewDiag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001674}
1675
Rafael Espindola799aacf2012-08-21 18:29:30 +00001676// FIXME: This is mostly duplicated from the function in AsmLexer.cpp. The
1677// difference being that that function accepts '@' as part of identifiers and
1678// we can't do that. AsmLexer.cpp should probably be changed to handle
1679// '@' as a special case when needed.
1680static bool isIdentifierChar(char c) {
Guy Benyei87d0b9e2013-02-12 21:21:59 +00001681 return isalnum(static_cast<unsigned char>(c)) || c == '_' || c == '$' ||
1682 c == '.';
Rafael Espindola799aacf2012-08-21 18:29:30 +00001683}
1684
Rafael Espindola761cb062012-06-03 23:57:14 +00001685bool AsmParser::expandMacro(raw_svector_ostream &OS, StringRef Body,
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001686 const MCAsmMacroParameters &Parameters,
Jim Grosbach4a200922013-09-20 23:08:21 +00001687 const MCAsmMacroArguments &A, const SMLoc &L) {
Rafael Espindola65366442011-06-05 02:43:45 +00001688 unsigned NParameters = Parameters.size();
1689 if (NParameters != 0 && NParameters != A.size())
1690 return Error(L, "Wrong number of arguments");
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001691
Preston Gurd7b6f2032012-09-19 20:36:12 +00001692 // A macro without parameters is handled differently on Darwin:
1693 // gas accepts no arguments and does no substitutions
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001694 while (!Body.empty()) {
1695 // Scan for the next substitution.
1696 std::size_t End = Body.size(), Pos = 0;
1697 for (; Pos != End; ++Pos) {
1698 // Check for a substitution or escape.
Rafael Espindola65366442011-06-05 02:43:45 +00001699 if (!NParameters) {
1700 // This macro has no parameters, look for $0, $1, etc.
1701 if (Body[Pos] != '$' || Pos + 1 == End)
1702 continue;
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001703
Rafael Espindola65366442011-06-05 02:43:45 +00001704 char Next = Body[Pos + 1];
Guy Benyei87d0b9e2013-02-12 21:21:59 +00001705 if (Next == '$' || Next == 'n' ||
1706 isdigit(static_cast<unsigned char>(Next)))
Rafael Espindola65366442011-06-05 02:43:45 +00001707 break;
1708 } else {
1709 // This macro has parameters, look for \foo, \bar, etc.
1710 if (Body[Pos] == '\\' && Pos + 1 != End)
1711 break;
1712 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001713 }
1714
1715 // Add the prefix.
1716 OS << Body.slice(0, Pos);
1717
1718 // Check if we reached the end.
1719 if (Pos == End)
1720 break;
1721
Rafael Espindola65366442011-06-05 02:43:45 +00001722 if (!NParameters) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001723 switch (Body[Pos + 1]) {
1724 // $$ => $
Rafael Espindola65366442011-06-05 02:43:45 +00001725 case '$':
1726 OS << '$';
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001727 break;
1728
Jim Grosbach4a200922013-09-20 23:08:21 +00001729 // $n => number of arguments
Rafael Espindola65366442011-06-05 02:43:45 +00001730 case 'n':
1731 OS << A.size();
1732 break;
1733
Jim Grosbach4a200922013-09-20 23:08:21 +00001734 // $[0-9] => argument
Rafael Espindola65366442011-06-05 02:43:45 +00001735 default: {
1736 // Missing arguments are ignored.
Jim Grosbach4a200922013-09-20 23:08:21 +00001737 unsigned Index = Body[Pos + 1] - '0';
Rafael Espindola65366442011-06-05 02:43:45 +00001738 if (Index >= A.size())
1739 break;
1740
1741 // Otherwise substitute with the token values, with spaces eliminated.
Eli Bendersky9bac6b22013-01-14 19:00:26 +00001742 for (MCAsmMacroArgument::const_iterator it = A[Index].begin(),
Jim Grosbach4a200922013-09-20 23:08:21 +00001743 ie = A[Index].end();
1744 it != ie; ++it)
Rafael Espindola65366442011-06-05 02:43:45 +00001745 OS << it->getString();
1746 break;
1747 }
1748 }
1749 Pos += 2;
1750 } else {
1751 unsigned I = Pos + 1;
Rafael Espindola799aacf2012-08-21 18:29:30 +00001752 while (isIdentifierChar(Body[I]) && I + 1 != End)
Rafael Espindola65366442011-06-05 02:43:45 +00001753 ++I;
1754
Jim Grosbach4a200922013-09-20 23:08:21 +00001755 const char *Begin = Body.data() + Pos + 1;
1756 StringRef Argument(Begin, I - (Pos + 1));
Rafael Espindola65366442011-06-05 02:43:45 +00001757 unsigned Index = 0;
1758 for (; Index < NParameters; ++Index)
Preston Gurd6c9176a2012-09-19 20:29:04 +00001759 if (Parameters[Index].first == Argument)
Rafael Espindola65366442011-06-05 02:43:45 +00001760 break;
1761
Preston Gurd7b6f2032012-09-19 20:36:12 +00001762 if (Index == NParameters) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001763 if (Body[Pos + 1] == '(' && Body[Pos + 2] == ')')
1764 Pos += 3;
1765 else {
1766 OS << '\\' << Argument;
1767 Pos = I;
1768 }
Preston Gurd7b6f2032012-09-19 20:36:12 +00001769 } else {
Eli Bendersky9bac6b22013-01-14 19:00:26 +00001770 for (MCAsmMacroArgument::const_iterator it = A[Index].begin(),
Jim Grosbach4a200922013-09-20 23:08:21 +00001771 ie = A[Index].end();
1772 it != ie; ++it)
Preston Gurd7b6f2032012-09-19 20:36:12 +00001773 if (it->getKind() == AsmToken::String)
1774 OS << it->getStringContents();
1775 else
1776 OS << it->getString();
Rafael Espindola65366442011-06-05 02:43:45 +00001777
Preston Gurd7b6f2032012-09-19 20:36:12 +00001778 Pos += 1 + Argument.size();
1779 }
Rafael Espindola65366442011-06-05 02:43:45 +00001780 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001781 // Update the scan point.
Rafael Espindola65366442011-06-05 02:43:45 +00001782 Body = Body.substr(Pos);
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001783 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001784
Rafael Espindola65366442011-06-05 02:43:45 +00001785 return false;
1786}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001787
Jim Grosbach4a200922013-09-20 23:08:21 +00001788MacroInstantiation::MacroInstantiation(const MCAsmMacro *M, SMLoc IL, int EB,
1789 SMLoc EL, MemoryBuffer *I)
1790 : TheMacro(M), Instantiation(I), InstantiationLoc(IL), ExitBuffer(EB),
1791 ExitLoc(EL) {}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001792
Jim Grosbach4a200922013-09-20 23:08:21 +00001793static bool isOperator(AsmToken::TokenKind kind) {
1794 switch (kind) {
1795 default:
1796 return false;
1797 case AsmToken::Plus:
1798 case AsmToken::Minus:
1799 case AsmToken::Tilde:
1800 case AsmToken::Slash:
1801 case AsmToken::Star:
1802 case AsmToken::Dot:
1803 case AsmToken::Equal:
1804 case AsmToken::EqualEqual:
1805 case AsmToken::Pipe:
1806 case AsmToken::PipePipe:
1807 case AsmToken::Caret:
1808 case AsmToken::Amp:
1809 case AsmToken::AmpAmp:
1810 case AsmToken::Exclaim:
1811 case AsmToken::ExclaimEqual:
1812 case AsmToken::Percent:
1813 case AsmToken::Less:
1814 case AsmToken::LessEqual:
1815 case AsmToken::LessLess:
1816 case AsmToken::LessGreater:
1817 case AsmToken::Greater:
1818 case AsmToken::GreaterEqual:
1819 case AsmToken::GreaterGreater:
1820 return true;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001821 }
1822}
1823
Jim Grosbach4a200922013-09-20 23:08:21 +00001824bool AsmParser::parseMacroArgument(MCAsmMacroArgument &MA,
Preston Gurd7b6f2032012-09-19 20:36:12 +00001825 AsmToken::TokenKind &ArgumentDelimiter) {
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001826 unsigned ParenLevel = 0;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001827 unsigned AddTokens = 0;
1828
1829 // gas accepts arguments separated by whitespace, except on Darwin
1830 if (!IsDarwin)
1831 Lexer.setSkipSpace(false);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001832
1833 for (;;) {
Preston Gurd7b6f2032012-09-19 20:36:12 +00001834 if (Lexer.is(AsmToken::Eof) || Lexer.is(AsmToken::Equal)) {
1835 Lexer.setSkipSpace(true);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001836 return TokError("unexpected token in macro instantiation");
Preston Gurd7b6f2032012-09-19 20:36:12 +00001837 }
1838
1839 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1840 // Spaces and commas cannot be mixed to delimit parameters
1841 if (ArgumentDelimiter == AsmToken::Eof)
1842 ArgumentDelimiter = AsmToken::Comma;
1843 else if (ArgumentDelimiter != AsmToken::Comma) {
1844 Lexer.setSkipSpace(true);
1845 return TokError("expected ' ' for macro argument separator");
1846 }
1847 break;
1848 }
1849
1850 if (Lexer.is(AsmToken::Space)) {
1851 Lex(); // Eat spaces
1852
1853 // Spaces can delimit parameters, but could also be part an expression.
1854 // If the token after a space is an operator, add the token and the next
1855 // one into this argument
1856 if (ArgumentDelimiter == AsmToken::Space ||
1857 ArgumentDelimiter == AsmToken::Eof) {
Jim Grosbach4a200922013-09-20 23:08:21 +00001858 if (isOperator(Lexer.getKind())) {
Preston Gurd7b6f2032012-09-19 20:36:12 +00001859 // Check to see whether the token is used as an operator,
1860 // or part of an identifier
Jordan Rose3ebe59c2013-01-07 19:00:49 +00001861 const char *NextChar = getTok().getEndLoc().getPointer();
Preston Gurd7b6f2032012-09-19 20:36:12 +00001862 if (*NextChar == ' ')
1863 AddTokens = 2;
1864 }
1865
1866 if (!AddTokens && ParenLevel == 0) {
1867 if (ArgumentDelimiter == AsmToken::Eof &&
Jim Grosbach4a200922013-09-20 23:08:21 +00001868 !isOperator(Lexer.getKind()))
Preston Gurd7b6f2032012-09-19 20:36:12 +00001869 ArgumentDelimiter = AsmToken::Space;
1870 break;
1871 }
1872 }
1873 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001874
Jim Grosbach4a200922013-09-20 23:08:21 +00001875 // handleMacroEntry relies on not advancing the lexer here
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001876 // to be able to fill in the remaining default parameter values
1877 if (Lexer.is(AsmToken::EndOfStatement))
1878 break;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001879
1880 // Adjust the current parentheses level.
1881 if (Lexer.is(AsmToken::LParen))
1882 ++ParenLevel;
1883 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1884 --ParenLevel;
1885
1886 // Append the token to the current argument list.
1887 MA.push_back(getTok());
Preston Gurd7b6f2032012-09-19 20:36:12 +00001888 if (AddTokens)
1889 AddTokens--;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001890 Lex();
1891 }
Preston Gurd7b6f2032012-09-19 20:36:12 +00001892
1893 Lexer.setSkipSpace(true);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001894 if (ParenLevel != 0)
Rafael Espindola76ac2002012-08-21 15:55:04 +00001895 return TokError("unbalanced parentheses in macro argument");
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001896 return false;
1897}
1898
1899// Parse the macro instantiation arguments.
Jim Grosbach4a200922013-09-20 23:08:21 +00001900bool AsmParser::parseMacroArguments(const MCAsmMacro *M,
Vladimir Medic7b0a7962013-08-20 13:33:18 +00001901 MCAsmMacroArguments &A) {
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001902 const unsigned NParameters = M ? M->Parameters.size() : 0;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001903 // Argument delimiter is initially unknown. It will be set by
Jim Grosbach4a200922013-09-20 23:08:21 +00001904 // parseMacroArgument()
Preston Gurd7b6f2032012-09-19 20:36:12 +00001905 AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001906
1907 // Parse two kinds of macro invocations:
1908 // - macros defined without any parameters accept an arbitrary number of them
1909 // - macros defined with parameters accept at most that many of them
1910 for (unsigned Parameter = 0; !NParameters || Parameter < NParameters;
1911 ++Parameter) {
Eli Bendersky9bac6b22013-01-14 19:00:26 +00001912 MCAsmMacroArgument MA;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001913
Jim Grosbach4a200922013-09-20 23:08:21 +00001914 if (parseMacroArgument(MA, ArgumentDelimiter))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001915 return true;
1916
Preston Gurd6c9176a2012-09-19 20:29:04 +00001917 if (!MA.empty() || !NParameters)
1918 A.push_back(MA);
1919 else if (NParameters) {
1920 if (!M->Parameters[Parameter].second.empty())
1921 A.push_back(M->Parameters[Parameter].second);
1922 }
Jim Grosbach97146442012-07-30 22:44:17 +00001923
Preston Gurd6c9176a2012-09-19 20:29:04 +00001924 // At the end of the statement, fill in remaining arguments that have
1925 // default values. If there aren't any, then the next argument is
1926 // required but missing
1927 if (Lexer.is(AsmToken::EndOfStatement)) {
1928 if (NParameters && Parameter < NParameters - 1) {
1929 if (M->Parameters[Parameter + 1].second.empty())
1930 return TokError("macro argument '" +
1931 Twine(M->Parameters[Parameter + 1].first) +
1932 "' is missing");
1933 else
1934 continue;
1935 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001936 return false;
Preston Gurd6c9176a2012-09-19 20:29:04 +00001937 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001938
1939 if (Lexer.is(AsmToken::Comma))
1940 Lex();
1941 }
1942 return TokError("Too many arguments");
1943}
1944
Jim Grosbach4a200922013-09-20 23:08:21 +00001945const MCAsmMacro *AsmParser::lookupMacro(StringRef Name) {
1946 StringMap<MCAsmMacro *>::iterator I = MacroMap.find(Name);
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001947 return (I == MacroMap.end()) ? NULL : I->getValue();
1948}
1949
Jim Grosbach4a200922013-09-20 23:08:21 +00001950void AsmParser::defineMacro(StringRef Name, const MCAsmMacro &Macro) {
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001951 MacroMap[Name] = new MCAsmMacro(Macro);
1952}
1953
Jim Grosbach4a200922013-09-20 23:08:21 +00001954void AsmParser::undefineMacro(StringRef Name) {
1955 StringMap<MCAsmMacro *>::iterator I = MacroMap.find(Name);
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001956 if (I != MacroMap.end()) {
1957 delete I->getValue();
1958 MacroMap.erase(I);
1959 }
1960}
1961
Jim Grosbach4a200922013-09-20 23:08:21 +00001962bool AsmParser::handleMacroEntry(const MCAsmMacro *M, SMLoc NameLoc) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001963 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1964 // this, although we should protect against infinite loops.
1965 if (ActiveMacros.size() == 20)
1966 return TokError("macros cannot be nested more than 20 levels deep");
1967
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001968 MCAsmMacroArguments A;
Jim Grosbach4a200922013-09-20 23:08:21 +00001969 if (parseMacroArguments(M, A))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001970 return true;
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001971
Jim Grosbach97146442012-07-30 22:44:17 +00001972 // Remove any trailing empty arguments. Do this after-the-fact as we have
1973 // to keep empty arguments in the middle of the list or positionality
1974 // gets off. e.g., "foo 1, , 2" vs. "foo 1, 2,"
Rafael Espindola8a403d32012-08-08 14:51:03 +00001975 while (!A.empty() && A.back().empty())
1976 A.pop_back();
Jim Grosbach97146442012-07-30 22:44:17 +00001977
Rafael Espindola65366442011-06-05 02:43:45 +00001978 // Macro instantiation is lexical, unfortunately. We construct a new buffer
1979 // to hold the macro body with substitutions.
1980 SmallString<256> Buf;
1981 StringRef Body = M->Body;
Rafael Espindola761cb062012-06-03 23:57:14 +00001982 raw_svector_ostream OS(Buf);
Rafael Espindola65366442011-06-05 02:43:45 +00001983
Rafael Espindola8a403d32012-08-08 14:51:03 +00001984 if (expandMacro(OS, Body, M->Parameters, A, getTok().getLoc()))
Rafael Espindola65366442011-06-05 02:43:45 +00001985 return true;
1986
Eli Benderskyc0c67b02013-01-14 23:22:36 +00001987 // We include the .endmacro in the buffer as our cue to exit the macro
Rafael Espindola761cb062012-06-03 23:57:14 +00001988 // instantiation.
1989 OS << ".endmacro\n";
1990
Rafael Espindola65366442011-06-05 02:43:45 +00001991 MemoryBuffer *Instantiation =
Jim Grosbach4a200922013-09-20 23:08:21 +00001992 MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Rafael Espindola65366442011-06-05 02:43:45 +00001993
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001994 // Create the macro instantiation object and add to the current macro
1995 // instantiation stack.
Jim Grosbach4a200922013-09-20 23:08:21 +00001996 MacroInstantiation *MI = new MacroInstantiation(
1997 M, NameLoc, CurBuffer, getTok().getLoc(), Instantiation);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001998 ActiveMacros.push_back(MI);
1999
2000 // Jump to the macro instantiation and prime the lexer.
2001 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
2002 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
2003 Lex();
2004
2005 return false;
2006}
2007
Jim Grosbach4a200922013-09-20 23:08:21 +00002008void AsmParser::handleMacroExit() {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00002009 // Jump to the EndOfStatement we should return to, and consume it.
Jim Grosbach4a200922013-09-20 23:08:21 +00002010 jumpToLoc(ActiveMacros.back()->ExitLoc, ActiveMacros.back()->ExitBuffer);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00002011 Lex();
2012
2013 // Pop the instantiation entry.
2014 delete ActiveMacros.back();
2015 ActiveMacros.pop_back();
2016}
2017
Jim Grosbach4a200922013-09-20 23:08:21 +00002018static bool isUsedIn(const MCSymbol *Sym, const MCExpr *Value) {
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002019 switch (Value->getKind()) {
Rafael Espindolae71cc862012-01-28 05:57:00 +00002020 case MCExpr::Binary: {
Jim Grosbach4a200922013-09-20 23:08:21 +00002021 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr *>(Value);
2022 return isUsedIn(Sym, BE->getLHS()) || isUsedIn(Sym, BE->getRHS());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002023 }
Rafael Espindolae71cc862012-01-28 05:57:00 +00002024 case MCExpr::Target:
2025 case MCExpr::Constant:
2026 return false;
2027 case MCExpr::SymbolRef: {
Jim Grosbach4a200922013-09-20 23:08:21 +00002028 const MCSymbol &S =
2029 static_cast<const MCSymbolRefExpr *>(Value)->getSymbol();
Rafael Espindola8b01c822012-01-28 06:22:14 +00002030 if (S.isVariable())
Jim Grosbach4a200922013-09-20 23:08:21 +00002031 return isUsedIn(Sym, S.getVariableValue());
Rafael Espindola8b01c822012-01-28 06:22:14 +00002032 return &S == Sym;
Rafael Espindolae71cc862012-01-28 05:57:00 +00002033 }
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002034 case MCExpr::Unary:
Jim Grosbach4a200922013-09-20 23:08:21 +00002035 return isUsedIn(Sym, static_cast<const MCUnaryExpr *>(Value)->getSubExpr());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002036 }
Benjamin Kramer518ff562012-01-28 15:28:41 +00002037
2038 llvm_unreachable("Unknown expr kind!");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002039}
2040
Jim Grosbach4a200922013-09-20 23:08:21 +00002041bool AsmParser::parseAssignment(StringRef Name, bool allow_redef,
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00002042 bool NoDeadStrip) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00002043 // FIXME: Use better location, we should use proper tokens.
2044 SMLoc EqualLoc = Lexer.getLoc();
2045
Daniel Dunbar821e3332009-08-31 08:09:28 +00002046 const MCExpr *Value;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002047 if (parseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002048 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002049
Rafael Espindolae71cc862012-01-28 05:57:00 +00002050 // Note: we don't count b as used in "a = b". This is to allow
2051 // a = b
2052 // b = c
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002053
Daniel Dunbar3f872332009-07-28 16:08:33 +00002054 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002055 return TokError("unexpected token in assignment");
2056
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00002057 // Error on assignment to '.'.
2058 if (Name == ".") {
2059 return Error(EqualLoc, ("assignment to pseudo-symbol '.' is unsupported "
2060 "(use '.space' or '.org').)"));
2061 }
2062
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002063 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00002064 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002065
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002066 // Validate that the LHS is allowed to be a variable (either it has not been
2067 // used as a symbol, or it is an absolute symbol).
2068 MCSymbol *Sym = getContext().LookupSymbol(Name);
2069 if (Sym) {
2070 // Diagnose assignment to a label.
2071 //
2072 // FIXME: Diagnostics. Note the location of the definition as a label.
2073 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Jim Grosbach4a200922013-09-20 23:08:21 +00002074 if (isUsedIn(Sym, Value))
Rafael Espindolae71cc862012-01-28 05:57:00 +00002075 return Error(EqualLoc, "Recursive use of '" + Name + "'");
2076 else if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
Daniel Dunbar525a3a62010-05-17 17:46:23 +00002077 ; // Allow redefinitions of undefined symbols only used in directives.
Jim Grosbach48c95332012-03-20 21:33:21 +00002078 else if (Sym->isVariable() && !Sym->isUsed() && allow_redef)
2079 ; // Allow redefinitions of variables that haven't yet been used.
Daniel Dunbar6db7fe82011-04-29 17:53:11 +00002080 else if (!Sym->isUndefined() && (!Sym->isVariable() || !allow_redef))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002081 return Error(EqualLoc, "redefinition of '" + Name + "'");
2082 else if (!Sym->isVariable())
2083 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00002084 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002085 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
Jim Grosbach4a200922013-09-20 23:08:21 +00002086 Name + "'");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00002087
2088 // Don't count these checks as uses.
2089 Sym->setUsed(false);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002090 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00002091 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00002092
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002093 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00002094
2095 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00002096 Out.EmitAssignment(Sym, Value);
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00002097 if (NoDeadStrip)
2098 Out.EmitSymbolAttribute(Sym, MCSA_NoDeadStrip);
2099
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002100 return false;
2101}
2102
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002103/// parseIdentifier:
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002104/// ::= identifier
2105/// ::= string
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002106bool AsmParser::parseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00002107 // The assembler has relaxed rules for accepting identifiers, in particular we
2108 // allow things like '.globl $foo', which would normally be separate
2109 // tokens. At this level, we have already lexed so we cannot (currently)
2110 // handle this as a context dependent token, instead we detect adjacent tokens
2111 // and return the combined identifier.
2112 if (Lexer.is(AsmToken::Dollar)) {
2113 SMLoc DollarLoc = getLexer().getLoc();
2114
2115 // Consume the dollar sign, and check for a following identifier.
2116 Lex();
2117 if (Lexer.isNot(AsmToken::Identifier))
2118 return true;
2119
2120 // We have a '$' followed by an identifier, make sure they are adjacent.
2121 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
2122 return true;
2123
2124 // Construct the joined identifier and consume the token.
Jim Grosbach4a200922013-09-20 23:08:21 +00002125 Res =
2126 StringRef(DollarLoc.getPointer(), getTok().getIdentifier().size() + 1);
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00002127 Lex();
2128 return false;
2129 }
2130
Jim Grosbach4a200922013-09-20 23:08:21 +00002131 if (Lexer.isNot(AsmToken::Identifier) && Lexer.isNot(AsmToken::String))
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002132 return true;
2133
Sean Callanan18b83232010-01-19 21:44:56 +00002134 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002135
Sean Callanan79ed1a82010-01-19 20:22:31 +00002136 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002137
2138 return false;
2139}
2140
Jim Grosbach4a200922013-09-20 23:08:21 +00002141/// parseDirectiveSet:
Nico Weber4c4c7322011-01-28 03:04:41 +00002142/// ::= .equ identifier ',' expression
2143/// ::= .equiv identifier ',' expression
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002144/// ::= .set identifier ',' expression
Jim Grosbach4a200922013-09-20 23:08:21 +00002145bool AsmParser::parseDirectiveSet(StringRef IDVal, bool allow_redef) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002146 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002147
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002148 if (parseIdentifier(Name))
Roman Divackyf9d17522010-10-28 16:57:58 +00002149 return TokError("expected identifier after '" + Twine(IDVal) + "'");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002150
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002151 if (getLexer().isNot(AsmToken::Comma))
Roman Divackyf9d17522010-10-28 16:57:58 +00002152 return TokError("unexpected token in '" + Twine(IDVal) + "'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002153 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002154
Jim Grosbach4a200922013-09-20 23:08:21 +00002155 return parseAssignment(Name, allow_redef, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00002156}
2157
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002158bool AsmParser::parseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002159 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002160
2161 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00002162 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002163 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
2164 if (Str[i] != '\\') {
2165 Data += Str[i];
2166 continue;
2167 }
2168
2169 // Recognize escaped characters. Note that this escape semantics currently
2170 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
2171 ++i;
2172 if (i == e)
2173 return TokError("unexpected backslash at end of string");
2174
2175 // Recognize octal sequences.
Jim Grosbach4a200922013-09-20 23:08:21 +00002176 if ((unsigned)(Str[i] - '0') <= 7) {
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002177 // Consume up to three octal characters.
2178 unsigned Value = Str[i] - '0';
2179
Jim Grosbach4a200922013-09-20 23:08:21 +00002180 if (i + 1 != e && ((unsigned)(Str[i + 1] - '0')) <= 7) {
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002181 ++i;
2182 Value = Value * 8 + (Str[i] - '0');
2183
Jim Grosbach4a200922013-09-20 23:08:21 +00002184 if (i + 1 != e && ((unsigned)(Str[i + 1] - '0')) <= 7) {
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002185 ++i;
2186 Value = Value * 8 + (Str[i] - '0');
2187 }
2188 }
2189
2190 if (Value > 255)
2191 return TokError("invalid octal escape sequence (out of range)");
2192
Jim Grosbach4a200922013-09-20 23:08:21 +00002193 Data += (unsigned char)Value;
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002194 continue;
2195 }
2196
2197 // Otherwise recognize individual escapes.
2198 switch (Str[i]) {
2199 default:
2200 // Just reject invalid escape sequences for now.
2201 return TokError("invalid escape sequence (unrecognized character)");
2202
2203 case 'b': Data += '\b'; break;
2204 case 'f': Data += '\f'; break;
2205 case 'n': Data += '\n'; break;
2206 case 'r': Data += '\r'; break;
2207 case 't': Data += '\t'; break;
2208 case '"': Data += '"'; break;
2209 case '\\': Data += '\\'; break;
2210 }
2211 }
2212
2213 return false;
2214}
2215
Jim Grosbach4a200922013-09-20 23:08:21 +00002216/// parseDirectiveAscii:
Rafael Espindola787c3372010-10-28 20:02:27 +00002217/// ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
Jim Grosbach4a200922013-09-20 23:08:21 +00002218bool AsmParser::parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002219 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002220 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002221
Daniel Dunbara0d14262009-06-24 23:30:00 +00002222 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002223 if (getLexer().isNot(AsmToken::String))
Rafael Espindola787c3372010-10-28 20:02:27 +00002224 return TokError("expected string in '" + Twine(IDVal) + "' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002225
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002226 std::string Data;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002227 if (parseEscapedString(Data))
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002228 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002229
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002230 getStreamer().EmitBytes(Data);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002231 if (ZeroTerminated)
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002232 getStreamer().EmitBytes(StringRef("\0", 1));
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002233
Sean Callanan79ed1a82010-01-19 20:22:31 +00002234 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002235
2236 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002237 break;
2238
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002239 if (getLexer().isNot(AsmToken::Comma))
Rafael Espindola787c3372010-10-28 20:02:27 +00002240 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002241 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002242 }
2243 }
2244
Sean Callanan79ed1a82010-01-19 20:22:31 +00002245 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002246 return false;
2247}
2248
Jim Grosbach4a200922013-09-20 23:08:21 +00002249/// parseDirectiveValue
Daniel Dunbara0d14262009-06-24 23:30:00 +00002250/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
Jim Grosbach4a200922013-09-20 23:08:21 +00002251bool AsmParser::parseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002252 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002253 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002254
Daniel Dunbara0d14262009-06-24 23:30:00 +00002255 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00002256 const MCExpr *Value;
Jim Grosbach254cf032011-06-29 16:05:14 +00002257 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002258 if (parseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002259 return true;
2260
Daniel Dunbar414c0c42010-05-23 18:36:38 +00002261 // Special case constant expressions to match code generator.
Jim Grosbach254cf032011-06-29 16:05:14 +00002262 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2263 assert(Size <= 8 && "Invalid size");
2264 uint64_t IntValue = MCE->getValue();
2265 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2266 return Error(ExprLoc, "literal value out of range for directive");
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002267 getStreamer().EmitIntValue(IntValue, Size);
Jim Grosbach254cf032011-06-29 16:05:14 +00002268 } else
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002269 getStreamer().EmitValue(Value, Size);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002270
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002271 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002272 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002273
Daniel Dunbara0d14262009-06-24 23:30:00 +00002274 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002275 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002276 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002277 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002278 }
2279 }
2280
Sean Callanan79ed1a82010-01-19 20:22:31 +00002281 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002282 return false;
2283}
2284
Jim Grosbach4a200922013-09-20 23:08:21 +00002285/// parseDirectiveRealValue
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002286/// ::= (.single | .double) [ expression (, expression)* ]
Jim Grosbach4a200922013-09-20 23:08:21 +00002287bool AsmParser::parseDirectiveRealValue(const fltSemantics &Semantics) {
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002288 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002289 checkForValidSection();
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002290
2291 for (;;) {
2292 // We don't truly support arithmetic on floating point expressions, so we
2293 // have to manually parse unary prefixes.
2294 bool IsNeg = false;
2295 if (getLexer().is(AsmToken::Minus)) {
2296 Lex();
2297 IsNeg = true;
2298 } else if (getLexer().is(AsmToken::Plus))
2299 Lex();
2300
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002301 if (getLexer().isNot(AsmToken::Integer) &&
Kevin Enderby360d8d72011-03-29 21:11:52 +00002302 getLexer().isNot(AsmToken::Real) &&
2303 getLexer().isNot(AsmToken::Identifier))
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002304 return TokError("unexpected token in directive");
2305
2306 // Convert to an APFloat.
2307 APFloat Value(Semantics);
Kevin Enderby360d8d72011-03-29 21:11:52 +00002308 StringRef IDVal = getTok().getString();
2309 if (getLexer().is(AsmToken::Identifier)) {
2310 if (!IDVal.compare_lower("infinity") || !IDVal.compare_lower("inf"))
2311 Value = APFloat::getInf(Semantics);
2312 else if (!IDVal.compare_lower("nan"))
2313 Value = APFloat::getNaN(Semantics, false, ~0);
2314 else
2315 return TokError("invalid floating point literal");
2316 } else if (Value.convertFromString(IDVal, APFloat::rmNearestTiesToEven) ==
Jim Grosbach4a200922013-09-20 23:08:21 +00002317 APFloat::opInvalidOp)
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002318 return TokError("invalid floating point literal");
2319 if (IsNeg)
2320 Value.changeSign();
2321
2322 // Consume the numeric token.
2323 Lex();
2324
2325 // Emit the value as an integer.
2326 APInt AsInt = Value.bitcastToAPInt();
2327 getStreamer().EmitIntValue(AsInt.getLimitedValue(),
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002328 AsInt.getBitWidth() / 8);
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002329
2330 if (getLexer().is(AsmToken::EndOfStatement))
2331 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002332
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002333 if (getLexer().isNot(AsmToken::Comma))
2334 return TokError("unexpected token in directive");
2335 Lex();
2336 }
2337 }
2338
2339 Lex();
2340 return false;
2341}
2342
Jim Grosbach4a200922013-09-20 23:08:21 +00002343/// parseDirectiveZero
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002344/// ::= .zero expression
Jim Grosbach4a200922013-09-20 23:08:21 +00002345bool AsmParser::parseDirectiveZero() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002346 checkForValidSection();
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002347
2348 int64_t NumBytes;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002349 if (parseAbsoluteExpression(NumBytes))
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002350 return true;
2351
Rafael Espindolae452b172010-10-05 19:42:57 +00002352 int64_t Val = 0;
2353 if (getLexer().is(AsmToken::Comma)) {
2354 Lex();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002355 if (parseAbsoluteExpression(Val))
Rafael Espindolae452b172010-10-05 19:42:57 +00002356 return true;
2357 }
2358
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002359 if (getLexer().isNot(AsmToken::EndOfStatement))
2360 return TokError("unexpected token in '.zero' directive");
2361
2362 Lex();
2363
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002364 getStreamer().EmitFill(NumBytes, Val);
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002365
2366 return false;
2367}
2368
Jim Grosbach4a200922013-09-20 23:08:21 +00002369/// parseDirectiveFill
Roman Divacky9c607102013-09-24 17:44:41 +00002370/// ::= .fill expression [ , expression [ , expression ] ]
Jim Grosbach4a200922013-09-20 23:08:21 +00002371bool AsmParser::parseDirectiveFill() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002372 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002373
Daniel Dunbara0d14262009-06-24 23:30:00 +00002374 int64_t NumValues;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002375 if (parseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002376 return true;
2377
Roman Divacky9c607102013-09-24 17:44:41 +00002378 int64_t FillSize = 1;
2379 int64_t FillExpr = 0;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002380
Roman Divacky9c607102013-09-24 17:44:41 +00002381 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2382 if (getLexer().isNot(AsmToken::Comma))
2383 return TokError("unexpected token in '.fill' directive");
2384 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002385
Roman Divacky9c607102013-09-24 17:44:41 +00002386 if (parseAbsoluteExpression(FillSize))
2387 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002388
Roman Divacky9c607102013-09-24 17:44:41 +00002389 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2390 if (getLexer().isNot(AsmToken::Comma))
2391 return TokError("unexpected token in '.fill' directive");
2392 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002393
Roman Divacky9c607102013-09-24 17:44:41 +00002394 if (parseAbsoluteExpression(FillExpr))
2395 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002396
Roman Divacky9c607102013-09-24 17:44:41 +00002397 if (getLexer().isNot(AsmToken::EndOfStatement))
2398 return TokError("unexpected token in '.fill' directive");
2399
2400 Lex();
2401 }
2402 }
Daniel Dunbara0d14262009-06-24 23:30:00 +00002403
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00002404 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
2405 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00002406
2407 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00002408 getStreamer().EmitIntValue(FillExpr, FillSize);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002409
2410 return false;
2411}
Daniel Dunbarc238b582009-06-25 22:44:51 +00002412
Jim Grosbach4a200922013-09-20 23:08:21 +00002413/// parseDirectiveOrg
Daniel Dunbarc238b582009-06-25 22:44:51 +00002414/// ::= .org expression [ , expression ]
Jim Grosbach4a200922013-09-20 23:08:21 +00002415bool AsmParser::parseDirectiveOrg() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002416 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002417
Daniel Dunbar821e3332009-08-31 08:09:28 +00002418 const MCExpr *Offset;
Jim Grosbachebd4c052012-01-27 00:37:08 +00002419 SMLoc Loc = getTok().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002420 if (parseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002421 return true;
2422
2423 // Parse optional fill expression.
2424 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002425 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2426 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002427 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002428 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002429
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002430 if (parseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002431 return true;
2432
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002433 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002434 return TokError("unexpected token in '.org' directive");
2435 }
2436
Sean Callanan79ed1a82010-01-19 20:22:31 +00002437 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00002438
Jim Grosbachebd4c052012-01-27 00:37:08 +00002439 // Only limited forms of relocatable expressions are accepted here, it
2440 // has to be relative to the current section. The streamer will return
2441 // 'true' if the expression wasn't evaluatable.
2442 if (getStreamer().EmitValueToOffset(Offset, FillExpr))
2443 return Error(Loc, "expected assembly-time absolute expression");
Daniel Dunbarc238b582009-06-25 22:44:51 +00002444
2445 return false;
2446}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002447
Jim Grosbach4a200922013-09-20 23:08:21 +00002448/// parseDirectiveAlign
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002449/// ::= {.align, ...} expression [ , expression [ , expression ]]
Jim Grosbach4a200922013-09-20 23:08:21 +00002450bool AsmParser::parseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002451 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002452
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002453 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002454 int64_t Alignment;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002455 if (parseAbsoluteExpression(Alignment))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002456 return true;
2457
2458 SMLoc MaxBytesLoc;
2459 bool HasFillExpr = false;
2460 int64_t FillExpr = 0;
2461 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002462 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2463 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002464 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002465 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002466
2467 // The fill expression can be omitted while specifying a maximum number of
2468 // alignment bytes, e.g:
2469 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002470 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002471 HasFillExpr = true;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002472 if (parseAbsoluteExpression(FillExpr))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002473 return true;
2474 }
2475
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002476 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2477 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002478 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002479 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002480
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002481 MaxBytesLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002482 if (parseAbsoluteExpression(MaxBytesToFill))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002483 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002484
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002485 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002486 return TokError("unexpected token in directive");
2487 }
2488 }
2489
Sean Callanan79ed1a82010-01-19 20:22:31 +00002490 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002491
Daniel Dunbar648ac512010-05-17 21:54:30 +00002492 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002493 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002494
2495 // Compute alignment in bytes.
2496 if (IsPow2) {
2497 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002498 if (Alignment >= 32) {
2499 Error(AlignmentLoc, "invalid alignment value");
2500 Alignment = 31;
2501 }
2502
Benjamin Kramer12fd7672009-09-06 09:35:10 +00002503 Alignment = 1ULL << Alignment;
Benjamin Kramer8a89cf22013-02-16 15:00:16 +00002504 } else {
2505 // Reject alignments that aren't a power of two, for gas compatibility.
2506 if (!isPowerOf2_64(Alignment))
2507 Error(AlignmentLoc, "alignment must be a power of 2");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002508 }
2509
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002510 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002511 if (MaxBytesLoc.isValid()) {
2512 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002513 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
Jim Grosbach4a200922013-09-20 23:08:21 +00002514 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00002515 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002516 }
2517
2518 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00002519 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
Jim Grosbach4a200922013-09-20 23:08:21 +00002520 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002521 MaxBytesToFill = 0;
2522 }
2523 }
2524
Daniel Dunbar648ac512010-05-17 21:54:30 +00002525 // Check whether we should use optimal code alignment for this .align
2526 // directive.
Peter Collingbournedf39be62013-04-17 21:18:16 +00002527 bool UseCodeAlign = getStreamer().getCurrentSection().first->UseCodeAlign();
Daniel Dunbar648ac512010-05-17 21:54:30 +00002528 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
2529 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002530 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002531 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00002532 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00002533 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
2534 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002535 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002536
2537 return false;
2538}
2539
Jim Grosbach4a200922013-09-20 23:08:21 +00002540/// parseDirectiveFile
Eli Bendersky6ee13082013-01-15 22:59:42 +00002541/// ::= .file [number] filename
2542/// ::= .file number directory filename
Jim Grosbach4a200922013-09-20 23:08:21 +00002543bool AsmParser::parseDirectiveFile(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002544 // FIXME: I'm not sure what this is.
2545 int64_t FileNumber = -1;
2546 SMLoc FileNumberLoc = getLexer().getLoc();
2547 if (getLexer().is(AsmToken::Integer)) {
2548 FileNumber = getTok().getIntVal();
2549 Lex();
2550
2551 if (FileNumber < 1)
2552 return TokError("file number less than one");
2553 }
2554
2555 if (getLexer().isNot(AsmToken::String))
2556 return TokError("unexpected token in '.file' directive");
2557
2558 // Usually the directory and filename together, otherwise just the directory.
Yunzhong Gaoed119822013-09-05 19:14:26 +00002559 // Allow the strings to have escaped octal character sequence.
2560 std::string Path = getTok().getString();
2561 if (parseEscapedString(Path))
2562 return true;
Eli Bendersky6ee13082013-01-15 22:59:42 +00002563 Lex();
2564
2565 StringRef Directory;
2566 StringRef Filename;
Yunzhong Gaoed119822013-09-05 19:14:26 +00002567 std::string FilenameData;
Eli Bendersky6ee13082013-01-15 22:59:42 +00002568 if (getLexer().is(AsmToken::String)) {
2569 if (FileNumber == -1)
2570 return TokError("explicit path specified, but no file number");
Yunzhong Gaoed119822013-09-05 19:14:26 +00002571 if (parseEscapedString(FilenameData))
2572 return true;
2573 Filename = FilenameData;
Eli Bendersky6ee13082013-01-15 22:59:42 +00002574 Directory = Path;
2575 Lex();
2576 } else {
2577 Filename = Path;
2578 }
2579
2580 if (getLexer().isNot(AsmToken::EndOfStatement))
2581 return TokError("unexpected token in '.file' directive");
2582
2583 if (FileNumber == -1)
2584 getStreamer().EmitFileDirective(Filename);
2585 else {
2586 if (getContext().getGenDwarfForAssembly() == true)
Jim Grosbach4a200922013-09-20 23:08:21 +00002587 Error(DirectiveLoc,
2588 "input can't have .file dwarf directives when -g is "
2589 "used to generate dwarf debug info for assembly code");
Eli Bendersky6ee13082013-01-15 22:59:42 +00002590
2591 if (getStreamer().EmitDwarfFileDirective(FileNumber, Directory, Filename))
2592 Error(FileNumberLoc, "file number already allocated");
2593 }
2594
2595 return false;
2596}
2597
Jim Grosbach4a200922013-09-20 23:08:21 +00002598/// parseDirectiveLine
Eli Bendersky6ee13082013-01-15 22:59:42 +00002599/// ::= .line [number]
Jim Grosbach4a200922013-09-20 23:08:21 +00002600bool AsmParser::parseDirectiveLine() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002601 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2602 if (getLexer().isNot(AsmToken::Integer))
2603 return TokError("unexpected token in '.line' directive");
2604
2605 int64_t LineNumber = getTok().getIntVal();
Jim Grosbach4a200922013-09-20 23:08:21 +00002606 (void)LineNumber;
Eli Bendersky6ee13082013-01-15 22:59:42 +00002607 Lex();
2608
2609 // FIXME: Do something with the .line.
2610 }
2611
2612 if (getLexer().isNot(AsmToken::EndOfStatement))
2613 return TokError("unexpected token in '.line' directive");
2614
2615 return false;
2616}
2617
Jim Grosbach4a200922013-09-20 23:08:21 +00002618/// parseDirectiveLoc
Eli Bendersky6ee13082013-01-15 22:59:42 +00002619/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
2620/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2621/// The first number is a file number, must have been previously assigned with
2622/// a .file directive, the second number is the line number and optionally the
2623/// third number is a column position (zero if not specified). The remaining
2624/// optional items are .loc sub-directives.
Jim Grosbach4a200922013-09-20 23:08:21 +00002625bool AsmParser::parseDirectiveLoc() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002626 if (getLexer().isNot(AsmToken::Integer))
2627 return TokError("unexpected token in '.loc' directive");
2628 int64_t FileNumber = getTok().getIntVal();
2629 if (FileNumber < 1)
2630 return TokError("file number less than one in '.loc' directive");
2631 if (!getContext().isValidDwarfFileNumber(FileNumber))
2632 return TokError("unassigned file number in '.loc' directive");
2633 Lex();
2634
2635 int64_t LineNumber = 0;
2636 if (getLexer().is(AsmToken::Integer)) {
2637 LineNumber = getTok().getIntVal();
Adrian Prantldeac1372013-09-26 23:37:11 +00002638 if (LineNumber < 0)
2639 return TokError("line number less than zero in '.loc' directive");
Eli Bendersky6ee13082013-01-15 22:59:42 +00002640 Lex();
2641 }
2642
2643 int64_t ColumnPos = 0;
2644 if (getLexer().is(AsmToken::Integer)) {
2645 ColumnPos = getTok().getIntVal();
2646 if (ColumnPos < 0)
2647 return TokError("column position less than zero in '.loc' directive");
2648 Lex();
2649 }
2650
2651 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
2652 unsigned Isa = 0;
2653 int64_t Discriminator = 0;
2654 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2655 for (;;) {
2656 if (getLexer().is(AsmToken::EndOfStatement))
2657 break;
2658
2659 StringRef Name;
2660 SMLoc Loc = getTok().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002661 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002662 return TokError("unexpected token in '.loc' directive");
2663
2664 if (Name == "basic_block")
2665 Flags |= DWARF2_FLAG_BASIC_BLOCK;
2666 else if (Name == "prologue_end")
2667 Flags |= DWARF2_FLAG_PROLOGUE_END;
2668 else if (Name == "epilogue_begin")
2669 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2670 else if (Name == "is_stmt") {
2671 Loc = getTok().getLoc();
2672 const MCExpr *Value;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002673 if (parseExpression(Value))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002674 return true;
2675 // The expression must be the constant 0 or 1.
2676 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2677 int Value = MCE->getValue();
2678 if (Value == 0)
2679 Flags &= ~DWARF2_FLAG_IS_STMT;
2680 else if (Value == 1)
2681 Flags |= DWARF2_FLAG_IS_STMT;
2682 else
2683 return Error(Loc, "is_stmt value not 0 or 1");
Craig Topperefa703d2013-04-22 04:22:40 +00002684 } else {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002685 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2686 }
Craig Topperefa703d2013-04-22 04:22:40 +00002687 } else if (Name == "isa") {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002688 Loc = getTok().getLoc();
2689 const MCExpr *Value;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002690 if (parseExpression(Value))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002691 return true;
2692 // The expression must be a constant greater or equal to 0.
2693 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2694 int Value = MCE->getValue();
2695 if (Value < 0)
2696 return Error(Loc, "isa number less than zero");
2697 Isa = Value;
Craig Topperefa703d2013-04-22 04:22:40 +00002698 } else {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002699 return Error(Loc, "isa number not a constant value");
2700 }
Craig Topperefa703d2013-04-22 04:22:40 +00002701 } else if (Name == "discriminator") {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002702 if (parseAbsoluteExpression(Discriminator))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002703 return true;
Craig Topperefa703d2013-04-22 04:22:40 +00002704 } else {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002705 return Error(Loc, "unknown sub-directive in '.loc' directive");
2706 }
2707
2708 if (getLexer().is(AsmToken::EndOfStatement))
2709 break;
2710 }
2711 }
2712
2713 getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,
2714 Isa, Discriminator, StringRef());
2715
2716 return false;
2717}
2718
Jim Grosbach4a200922013-09-20 23:08:21 +00002719/// parseDirectiveStabs
Eli Bendersky6ee13082013-01-15 22:59:42 +00002720/// ::= .stabs string, number, number, number
Jim Grosbach4a200922013-09-20 23:08:21 +00002721bool AsmParser::parseDirectiveStabs() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002722 return TokError("unsupported directive '.stabs'");
2723}
2724
Jim Grosbach4a200922013-09-20 23:08:21 +00002725/// parseDirectiveCFISections
Eli Bendersky6ee13082013-01-15 22:59:42 +00002726/// ::= .cfi_sections section [, section]
Jim Grosbach4a200922013-09-20 23:08:21 +00002727bool AsmParser::parseDirectiveCFISections() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002728 StringRef Name;
2729 bool EH = false;
2730 bool Debug = false;
2731
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002732 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002733 return TokError("Expected an identifier");
2734
2735 if (Name == ".eh_frame")
2736 EH = true;
2737 else if (Name == ".debug_frame")
2738 Debug = true;
2739
2740 if (getLexer().is(AsmToken::Comma)) {
2741 Lex();
2742
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002743 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002744 return TokError("Expected an identifier");
2745
2746 if (Name == ".eh_frame")
2747 EH = true;
2748 else if (Name == ".debug_frame")
2749 Debug = true;
2750 }
2751
2752 getStreamer().EmitCFISections(EH, Debug);
2753 return false;
2754}
2755
Jim Grosbach4a200922013-09-20 23:08:21 +00002756/// parseDirectiveCFIStartProc
Eli Bendersky6ee13082013-01-15 22:59:42 +00002757/// ::= .cfi_startproc
Jim Grosbach4a200922013-09-20 23:08:21 +00002758bool AsmParser::parseDirectiveCFIStartProc() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002759 getStreamer().EmitCFIStartProc();
2760 return false;
2761}
2762
Jim Grosbach4a200922013-09-20 23:08:21 +00002763/// parseDirectiveCFIEndProc
Eli Bendersky6ee13082013-01-15 22:59:42 +00002764/// ::= .cfi_endproc
Jim Grosbach4a200922013-09-20 23:08:21 +00002765bool AsmParser::parseDirectiveCFIEndProc() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002766 getStreamer().EmitCFIEndProc();
2767 return false;
2768}
2769
Jim Grosbach4a200922013-09-20 23:08:21 +00002770/// \brief parse register name or number.
2771bool AsmParser::parseRegisterOrRegisterNumber(int64_t &Register,
Eli Bendersky6ee13082013-01-15 22:59:42 +00002772 SMLoc DirectiveLoc) {
2773 unsigned RegNo;
2774
2775 if (getLexer().isNot(AsmToken::Integer)) {
2776 if (getTargetParser().ParseRegister(RegNo, DirectiveLoc, DirectiveLoc))
2777 return true;
Bill Wendling99cb6222013-06-18 07:20:20 +00002778 Register = getContext().getRegisterInfo()->getDwarfRegNum(RegNo, true);
Eli Bendersky6ee13082013-01-15 22:59:42 +00002779 } else
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002780 return parseAbsoluteExpression(Register);
Eli Bendersky6ee13082013-01-15 22:59:42 +00002781
2782 return false;
2783}
2784
Jim Grosbach4a200922013-09-20 23:08:21 +00002785/// parseDirectiveCFIDefCfa
Eli Bendersky6ee13082013-01-15 22:59:42 +00002786/// ::= .cfi_def_cfa register, offset
Jim Grosbach4a200922013-09-20 23:08:21 +00002787bool AsmParser::parseDirectiveCFIDefCfa(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002788 int64_t Register = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00002789 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002790 return true;
2791
2792 if (getLexer().isNot(AsmToken::Comma))
2793 return TokError("unexpected token in directive");
2794 Lex();
2795
2796 int64_t Offset = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002797 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002798 return true;
2799
2800 getStreamer().EmitCFIDefCfa(Register, Offset);
2801 return false;
2802}
2803
Jim Grosbach4a200922013-09-20 23:08:21 +00002804/// parseDirectiveCFIDefCfaOffset
Eli Bendersky6ee13082013-01-15 22:59:42 +00002805/// ::= .cfi_def_cfa_offset offset
Jim Grosbach4a200922013-09-20 23:08:21 +00002806bool AsmParser::parseDirectiveCFIDefCfaOffset() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002807 int64_t Offset = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002808 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002809 return true;
2810
2811 getStreamer().EmitCFIDefCfaOffset(Offset);
2812 return false;
2813}
2814
Jim Grosbach4a200922013-09-20 23:08:21 +00002815/// parseDirectiveCFIRegister
Eli Bendersky6ee13082013-01-15 22:59:42 +00002816/// ::= .cfi_register register, register
Jim Grosbach4a200922013-09-20 23:08:21 +00002817bool AsmParser::parseDirectiveCFIRegister(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002818 int64_t Register1 = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00002819 if (parseRegisterOrRegisterNumber(Register1, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002820 return true;
2821
2822 if (getLexer().isNot(AsmToken::Comma))
2823 return TokError("unexpected token in directive");
2824 Lex();
2825
2826 int64_t Register2 = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00002827 if (parseRegisterOrRegisterNumber(Register2, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002828 return true;
2829
2830 getStreamer().EmitCFIRegister(Register1, Register2);
2831 return false;
2832}
2833
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +00002834/// parseDirectiveCFIWindowSave
2835/// ::= .cfi_window_save
2836bool AsmParser::parseDirectiveCFIWindowSave() {
2837 getStreamer().EmitCFIWindowSave();
2838 return false;
2839}
2840
Jim Grosbach4a200922013-09-20 23:08:21 +00002841/// parseDirectiveCFIAdjustCfaOffset
Eli Bendersky6ee13082013-01-15 22:59:42 +00002842/// ::= .cfi_adjust_cfa_offset adjustment
Jim Grosbach4a200922013-09-20 23:08:21 +00002843bool AsmParser::parseDirectiveCFIAdjustCfaOffset() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002844 int64_t Adjustment = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002845 if (parseAbsoluteExpression(Adjustment))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002846 return true;
2847
2848 getStreamer().EmitCFIAdjustCfaOffset(Adjustment);
2849 return false;
2850}
2851
Jim Grosbach4a200922013-09-20 23:08:21 +00002852/// parseDirectiveCFIDefCfaRegister
Eli Bendersky6ee13082013-01-15 22:59:42 +00002853/// ::= .cfi_def_cfa_register register
Jim Grosbach4a200922013-09-20 23:08:21 +00002854bool AsmParser::parseDirectiveCFIDefCfaRegister(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002855 int64_t Register = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00002856 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002857 return true;
2858
2859 getStreamer().EmitCFIDefCfaRegister(Register);
2860 return false;
2861}
2862
Jim Grosbach4a200922013-09-20 23:08:21 +00002863/// parseDirectiveCFIOffset
Eli Bendersky6ee13082013-01-15 22:59:42 +00002864/// ::= .cfi_offset register, offset
Jim Grosbach4a200922013-09-20 23:08:21 +00002865bool AsmParser::parseDirectiveCFIOffset(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002866 int64_t Register = 0;
2867 int64_t Offset = 0;
2868
Jim Grosbach4a200922013-09-20 23:08:21 +00002869 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002870 return true;
2871
2872 if (getLexer().isNot(AsmToken::Comma))
2873 return TokError("unexpected token in directive");
2874 Lex();
2875
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002876 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002877 return true;
2878
2879 getStreamer().EmitCFIOffset(Register, Offset);
2880 return false;
2881}
2882
Jim Grosbach4a200922013-09-20 23:08:21 +00002883/// parseDirectiveCFIRelOffset
Eli Bendersky6ee13082013-01-15 22:59:42 +00002884/// ::= .cfi_rel_offset register, offset
Jim Grosbach4a200922013-09-20 23:08:21 +00002885bool AsmParser::parseDirectiveCFIRelOffset(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002886 int64_t Register = 0;
2887
Jim Grosbach4a200922013-09-20 23:08:21 +00002888 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002889 return true;
2890
2891 if (getLexer().isNot(AsmToken::Comma))
2892 return TokError("unexpected token in directive");
2893 Lex();
2894
2895 int64_t Offset = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002896 if (parseAbsoluteExpression(Offset))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002897 return true;
2898
2899 getStreamer().EmitCFIRelOffset(Register, Offset);
2900 return false;
2901}
2902
2903static bool isValidEncoding(int64_t Encoding) {
2904 if (Encoding & ~0xff)
2905 return false;
2906
2907 if (Encoding == dwarf::DW_EH_PE_omit)
2908 return true;
2909
2910 const unsigned Format = Encoding & 0xf;
2911 if (Format != dwarf::DW_EH_PE_absptr && Format != dwarf::DW_EH_PE_udata2 &&
2912 Format != dwarf::DW_EH_PE_udata4 && Format != dwarf::DW_EH_PE_udata8 &&
2913 Format != dwarf::DW_EH_PE_sdata2 && Format != dwarf::DW_EH_PE_sdata4 &&
2914 Format != dwarf::DW_EH_PE_sdata8 && Format != dwarf::DW_EH_PE_signed)
2915 return false;
2916
2917 const unsigned Application = Encoding & 0x70;
2918 if (Application != dwarf::DW_EH_PE_absptr &&
2919 Application != dwarf::DW_EH_PE_pcrel)
2920 return false;
2921
2922 return true;
2923}
2924
Jim Grosbach4a200922013-09-20 23:08:21 +00002925/// parseDirectiveCFIPersonalityOrLsda
Eli Bendersky6ee13082013-01-15 22:59:42 +00002926/// IsPersonality true for cfi_personality, false for cfi_lsda
2927/// ::= .cfi_personality encoding, [symbol_name]
2928/// ::= .cfi_lsda encoding, [symbol_name]
Jim Grosbach4a200922013-09-20 23:08:21 +00002929bool AsmParser::parseDirectiveCFIPersonalityOrLsda(bool IsPersonality) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002930 int64_t Encoding = 0;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002931 if (parseAbsoluteExpression(Encoding))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002932 return true;
2933 if (Encoding == dwarf::DW_EH_PE_omit)
2934 return false;
2935
2936 if (!isValidEncoding(Encoding))
2937 return TokError("unsupported encoding.");
2938
2939 if (getLexer().isNot(AsmToken::Comma))
2940 return TokError("unexpected token in directive");
2941 Lex();
2942
2943 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002944 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002945 return TokError("expected identifier in directive");
2946
2947 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
2948
2949 if (IsPersonality)
2950 getStreamer().EmitCFIPersonality(Sym, Encoding);
2951 else
2952 getStreamer().EmitCFILsda(Sym, Encoding);
2953 return false;
2954}
2955
Jim Grosbach4a200922013-09-20 23:08:21 +00002956/// parseDirectiveCFIRememberState
Eli Bendersky6ee13082013-01-15 22:59:42 +00002957/// ::= .cfi_remember_state
Jim Grosbach4a200922013-09-20 23:08:21 +00002958bool AsmParser::parseDirectiveCFIRememberState() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002959 getStreamer().EmitCFIRememberState();
2960 return false;
2961}
2962
Jim Grosbach4a200922013-09-20 23:08:21 +00002963/// parseDirectiveCFIRestoreState
Eli Bendersky6ee13082013-01-15 22:59:42 +00002964/// ::= .cfi_remember_state
Jim Grosbach4a200922013-09-20 23:08:21 +00002965bool AsmParser::parseDirectiveCFIRestoreState() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002966 getStreamer().EmitCFIRestoreState();
2967 return false;
2968}
2969
Jim Grosbach4a200922013-09-20 23:08:21 +00002970/// parseDirectiveCFISameValue
Eli Bendersky6ee13082013-01-15 22:59:42 +00002971/// ::= .cfi_same_value register
Jim Grosbach4a200922013-09-20 23:08:21 +00002972bool AsmParser::parseDirectiveCFISameValue(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002973 int64_t Register = 0;
2974
Jim Grosbach4a200922013-09-20 23:08:21 +00002975 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002976 return true;
2977
2978 getStreamer().EmitCFISameValue(Register);
2979 return false;
2980}
2981
Jim Grosbach4a200922013-09-20 23:08:21 +00002982/// parseDirectiveCFIRestore
Eli Bendersky6ee13082013-01-15 22:59:42 +00002983/// ::= .cfi_restore register
Jim Grosbach4a200922013-09-20 23:08:21 +00002984bool AsmParser::parseDirectiveCFIRestore(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002985 int64_t Register = 0;
Jim Grosbach4a200922013-09-20 23:08:21 +00002986 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002987 return true;
2988
2989 getStreamer().EmitCFIRestore(Register);
2990 return false;
2991}
2992
Jim Grosbach4a200922013-09-20 23:08:21 +00002993/// parseDirectiveCFIEscape
Eli Bendersky6ee13082013-01-15 22:59:42 +00002994/// ::= .cfi_escape expression[,...]
Jim Grosbach4a200922013-09-20 23:08:21 +00002995bool AsmParser::parseDirectiveCFIEscape() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00002996 std::string Values;
2997 int64_t CurrValue;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00002998 if (parseAbsoluteExpression(CurrValue))
Eli Bendersky6ee13082013-01-15 22:59:42 +00002999 return true;
3000
3001 Values.push_back((uint8_t)CurrValue);
3002
3003 while (getLexer().is(AsmToken::Comma)) {
3004 Lex();
3005
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003006 if (parseAbsoluteExpression(CurrValue))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003007 return true;
3008
3009 Values.push_back((uint8_t)CurrValue);
3010 }
3011
3012 getStreamer().EmitCFIEscape(Values);
3013 return false;
3014}
3015
Jim Grosbach4a200922013-09-20 23:08:21 +00003016/// parseDirectiveCFISignalFrame
Eli Bendersky6ee13082013-01-15 22:59:42 +00003017/// ::= .cfi_signal_frame
Jim Grosbach4a200922013-09-20 23:08:21 +00003018bool AsmParser::parseDirectiveCFISignalFrame() {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003019 if (getLexer().isNot(AsmToken::EndOfStatement))
3020 return Error(getLexer().getLoc(),
3021 "unexpected token in '.cfi_signal_frame'");
3022
3023 getStreamer().EmitCFISignalFrame();
3024 return false;
3025}
3026
Jim Grosbach4a200922013-09-20 23:08:21 +00003027/// parseDirectiveCFIUndefined
Eli Bendersky6ee13082013-01-15 22:59:42 +00003028/// ::= .cfi_undefined register
Jim Grosbach4a200922013-09-20 23:08:21 +00003029bool AsmParser::parseDirectiveCFIUndefined(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003030 int64_t Register = 0;
3031
Jim Grosbach4a200922013-09-20 23:08:21 +00003032 if (parseRegisterOrRegisterNumber(Register, DirectiveLoc))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003033 return true;
3034
3035 getStreamer().EmitCFIUndefined(Register);
3036 return false;
3037}
3038
Jim Grosbach4a200922013-09-20 23:08:21 +00003039/// parseDirectiveMacrosOnOff
Eli Bendersky6ee13082013-01-15 22:59:42 +00003040/// ::= .macros_on
3041/// ::= .macros_off
Jim Grosbach4a200922013-09-20 23:08:21 +00003042bool AsmParser::parseDirectiveMacrosOnOff(StringRef Directive) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003043 if (getLexer().isNot(AsmToken::EndOfStatement))
3044 return Error(getLexer().getLoc(),
3045 "unexpected token in '" + Directive + "' directive");
3046
Jim Grosbach4a200922013-09-20 23:08:21 +00003047 setMacrosEnabled(Directive == ".macros_on");
Eli Bendersky6ee13082013-01-15 22:59:42 +00003048 return false;
3049}
3050
Jim Grosbach4a200922013-09-20 23:08:21 +00003051/// parseDirectiveMacro
Eli Bendersky6ee13082013-01-15 22:59:42 +00003052/// ::= .macro name [parameters]
Jim Grosbach4a200922013-09-20 23:08:21 +00003053bool AsmParser::parseDirectiveMacro(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003054 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003055 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003056 return TokError("expected identifier in '.macro' directive");
3057
3058 MCAsmMacroParameters Parameters;
3059 // Argument delimiter is initially unknown. It will be set by
Jim Grosbach4a200922013-09-20 23:08:21 +00003060 // parseMacroArgument()
Eli Bendersky6ee13082013-01-15 22:59:42 +00003061 AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
3062 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3063 for (;;) {
3064 MCAsmMacroParameter Parameter;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003065 if (parseIdentifier(Parameter.first))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003066 return TokError("expected identifier in '.macro' directive");
3067
3068 if (getLexer().is(AsmToken::Equal)) {
3069 Lex();
Jim Grosbach4a200922013-09-20 23:08:21 +00003070 if (parseMacroArgument(Parameter.second, ArgumentDelimiter))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003071 return true;
3072 }
3073
3074 Parameters.push_back(Parameter);
3075
3076 if (getLexer().is(AsmToken::Comma))
3077 Lex();
3078 else if (getLexer().is(AsmToken::EndOfStatement))
3079 break;
3080 }
3081 }
3082
3083 // Eat the end of statement.
3084 Lex();
3085
3086 AsmToken EndToken, StartToken = getTok();
3087
3088 // Lex the macro definition.
3089 for (;;) {
3090 // Check whether we have reached the end of the file.
3091 if (getLexer().is(AsmToken::Eof))
3092 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
3093
3094 // Otherwise, check whether we have reach the .endmacro.
3095 if (getLexer().is(AsmToken::Identifier) &&
3096 (getTok().getIdentifier() == ".endm" ||
3097 getTok().getIdentifier() == ".endmacro")) {
3098 EndToken = getTok();
3099 Lex();
3100 if (getLexer().isNot(AsmToken::EndOfStatement))
3101 return TokError("unexpected token in '" + EndToken.getIdentifier() +
3102 "' directive");
3103 break;
3104 }
3105
3106 // Otherwise, scan til the end of the statement.
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003107 eatToEndOfStatement();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003108 }
3109
Jim Grosbach4a200922013-09-20 23:08:21 +00003110 if (lookupMacro(Name)) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003111 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
3112 }
3113
3114 const char *BodyStart = StartToken.getLoc().getPointer();
3115 const char *BodyEnd = EndToken.getLoc().getPointer();
3116 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
Jim Grosbach4a200922013-09-20 23:08:21 +00003117 checkForBadMacro(DirectiveLoc, Name, Body, Parameters);
3118 defineMacro(Name, MCAsmMacro(Name, Body, Parameters));
Eli Bendersky6ee13082013-01-15 22:59:42 +00003119 return false;
3120}
3121
Jim Grosbach4a200922013-09-20 23:08:21 +00003122/// checkForBadMacro
Kevin Enderby221514e2013-01-22 21:44:53 +00003123///
3124/// With the support added for named parameters there may be code out there that
3125/// is transitioning from positional parameters. In versions of gas that did
3126/// not support named parameters they would be ignored on the macro defintion.
3127/// But to support both styles of parameters this is not possible so if a macro
3128/// defintion has named parameters but does not use them and has what appears
3129/// to be positional parameters, strings like $1, $2, ... and $n, then issue a
3130/// warning that the positional parameter found in body which have no effect.
3131/// Hoping the developer will either remove the named parameters from the macro
3132/// definiton so the positional parameters get used if that was what was
3133/// intended or change the macro to use the named parameters. It is possible
3134/// this warning will trigger when the none of the named parameters are used
3135/// and the strings like $1 are infact to simply to be passed trough unchanged.
Jim Grosbach4a200922013-09-20 23:08:21 +00003136void AsmParser::checkForBadMacro(SMLoc DirectiveLoc, StringRef Name,
Kevin Enderby221514e2013-01-22 21:44:53 +00003137 StringRef Body,
3138 MCAsmMacroParameters Parameters) {
3139 // If this macro is not defined with named parameters the warning we are
3140 // checking for here doesn't apply.
3141 unsigned NParameters = Parameters.size();
3142 if (NParameters == 0)
3143 return;
3144
3145 bool NamedParametersFound = false;
3146 bool PositionalParametersFound = false;
3147
3148 // Look at the body of the macro for use of both the named parameters and what
3149 // are likely to be positional parameters. This is what expandMacro() is
3150 // doing when it finds the parameters in the body.
3151 while (!Body.empty()) {
3152 // Scan for the next possible parameter.
3153 std::size_t End = Body.size(), Pos = 0;
3154 for (; Pos != End; ++Pos) {
3155 // Check for a substitution or escape.
3156 // This macro is defined with parameters, look for \foo, \bar, etc.
3157 if (Body[Pos] == '\\' && Pos + 1 != End)
3158 break;
3159
3160 // This macro should have parameters, but look for $0, $1, ..., $n too.
3161 if (Body[Pos] != '$' || Pos + 1 == End)
3162 continue;
3163 char Next = Body[Pos + 1];
Guy Benyei87d0b9e2013-02-12 21:21:59 +00003164 if (Next == '$' || Next == 'n' ||
3165 isdigit(static_cast<unsigned char>(Next)))
Kevin Enderby221514e2013-01-22 21:44:53 +00003166 break;
3167 }
3168
3169 // Check if we reached the end.
3170 if (Pos == End)
3171 break;
3172
3173 if (Body[Pos] == '$') {
Jim Grosbach4a200922013-09-20 23:08:21 +00003174 switch (Body[Pos + 1]) {
3175 // $$ => $
Kevin Enderby221514e2013-01-22 21:44:53 +00003176 case '$':
3177 break;
3178
Jim Grosbach4a200922013-09-20 23:08:21 +00003179 // $n => number of arguments
Kevin Enderby221514e2013-01-22 21:44:53 +00003180 case 'n':
3181 PositionalParametersFound = true;
3182 break;
3183
Jim Grosbach4a200922013-09-20 23:08:21 +00003184 // $[0-9] => argument
Kevin Enderby221514e2013-01-22 21:44:53 +00003185 default: {
3186 PositionalParametersFound = true;
3187 break;
Jim Grosbach4a200922013-09-20 23:08:21 +00003188 }
Kevin Enderby221514e2013-01-22 21:44:53 +00003189 }
3190 Pos += 2;
3191 } else {
3192 unsigned I = Pos + 1;
3193 while (isIdentifierChar(Body[I]) && I + 1 != End)
3194 ++I;
3195
Jim Grosbach4a200922013-09-20 23:08:21 +00003196 const char *Begin = Body.data() + Pos + 1;
3197 StringRef Argument(Begin, I - (Pos + 1));
Kevin Enderby221514e2013-01-22 21:44:53 +00003198 unsigned Index = 0;
3199 for (; Index < NParameters; ++Index)
3200 if (Parameters[Index].first == Argument)
3201 break;
3202
3203 if (Index == NParameters) {
Jim Grosbach4a200922013-09-20 23:08:21 +00003204 if (Body[Pos + 1] == '(' && Body[Pos + 2] == ')')
3205 Pos += 3;
3206 else {
3207 Pos = I;
3208 }
Kevin Enderby221514e2013-01-22 21:44:53 +00003209 } else {
3210 NamedParametersFound = true;
3211 Pos += 1 + Argument.size();
3212 }
3213 }
3214 // Update the scan point.
3215 Body = Body.substr(Pos);
3216 }
3217
3218 if (!NamedParametersFound && PositionalParametersFound)
3219 Warning(DirectiveLoc, "macro defined with named parameters which are not "
3220 "used in macro body, possible positional parameter "
3221 "found in body which will have no effect");
3222}
3223
Jim Grosbach4a200922013-09-20 23:08:21 +00003224/// parseDirectiveEndMacro
Eli Bendersky6ee13082013-01-15 22:59:42 +00003225/// ::= .endm
3226/// ::= .endmacro
Jim Grosbach4a200922013-09-20 23:08:21 +00003227bool AsmParser::parseDirectiveEndMacro(StringRef Directive) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003228 if (getLexer().isNot(AsmToken::EndOfStatement))
3229 return TokError("unexpected token in '" + Directive + "' directive");
3230
3231 // If we are inside a macro instantiation, terminate the current
3232 // instantiation.
Jim Grosbach4a200922013-09-20 23:08:21 +00003233 if (isInsideMacroInstantiation()) {
3234 handleMacroExit();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003235 return false;
3236 }
3237
3238 // Otherwise, this .endmacro is a stray entry in the file; well formed
3239 // .endmacro directives are handled during the macro definition parsing.
3240 return TokError("unexpected '" + Directive + "' in file, "
Jim Grosbach4a200922013-09-20 23:08:21 +00003241 "no current macro definition");
Eli Bendersky6ee13082013-01-15 22:59:42 +00003242}
3243
Jim Grosbach4a200922013-09-20 23:08:21 +00003244/// parseDirectivePurgeMacro
Eli Bendersky6ee13082013-01-15 22:59:42 +00003245/// ::= .purgem
Jim Grosbach4a200922013-09-20 23:08:21 +00003246bool AsmParser::parseDirectivePurgeMacro(SMLoc DirectiveLoc) {
Eli Bendersky6ee13082013-01-15 22:59:42 +00003247 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003248 if (parseIdentifier(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003249 return TokError("expected identifier in '.purgem' directive");
3250
3251 if (getLexer().isNot(AsmToken::EndOfStatement))
3252 return TokError("unexpected token in '.purgem' directive");
3253
Jim Grosbach4a200922013-09-20 23:08:21 +00003254 if (!lookupMacro(Name))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003255 return Error(DirectiveLoc, "macro '" + Name + "' is not defined");
3256
Jim Grosbach4a200922013-09-20 23:08:21 +00003257 undefineMacro(Name);
Eli Bendersky6ee13082013-01-15 22:59:42 +00003258 return false;
3259}
Eli Bendersky4766ef42012-12-20 19:05:53 +00003260
Jim Grosbach4a200922013-09-20 23:08:21 +00003261/// parseDirectiveBundleAlignMode
Eli Bendersky4766ef42012-12-20 19:05:53 +00003262/// ::= {.bundle_align_mode} expression
Jim Grosbach4a200922013-09-20 23:08:21 +00003263bool AsmParser::parseDirectiveBundleAlignMode() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003264 checkForValidSection();
Eli Bendersky4766ef42012-12-20 19:05:53 +00003265
3266 // Expect a single argument: an expression that evaluates to a constant
3267 // in the inclusive range 0-30.
3268 SMLoc ExprLoc = getLexer().getLoc();
3269 int64_t AlignSizePow2;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003270 if (parseAbsoluteExpression(AlignSizePow2))
Eli Bendersky4766ef42012-12-20 19:05:53 +00003271 return true;
3272 else if (getLexer().isNot(AsmToken::EndOfStatement))
3273 return TokError("unexpected token after expression in"
3274 " '.bundle_align_mode' directive");
3275 else if (AlignSizePow2 < 0 || AlignSizePow2 > 30)
3276 return Error(ExprLoc,
3277 "invalid bundle alignment size (expected between 0 and 30)");
3278
3279 Lex();
3280
3281 // Because of AlignSizePow2's verified range we can safely truncate it to
3282 // unsigned.
3283 getStreamer().EmitBundleAlignMode(static_cast<unsigned>(AlignSizePow2));
3284 return false;
3285}
3286
Jim Grosbach4a200922013-09-20 23:08:21 +00003287/// parseDirectiveBundleLock
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003288/// ::= {.bundle_lock} [align_to_end]
Jim Grosbach4a200922013-09-20 23:08:21 +00003289bool AsmParser::parseDirectiveBundleLock() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003290 checkForValidSection();
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003291 bool AlignToEnd = false;
Eli Bendersky4766ef42012-12-20 19:05:53 +00003292
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003293 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3294 StringRef Option;
3295 SMLoc Loc = getTok().getLoc();
3296 const char *kInvalidOptionError =
Jim Grosbach4a200922013-09-20 23:08:21 +00003297 "invalid option for '.bundle_lock' directive";
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003298
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003299 if (parseIdentifier(Option))
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003300 return Error(Loc, kInvalidOptionError);
3301
3302 if (Option != "align_to_end")
3303 return Error(Loc, kInvalidOptionError);
3304 else if (getLexer().isNot(AsmToken::EndOfStatement))
3305 return Error(Loc,
3306 "unexpected token after '.bundle_lock' directive option");
3307 AlignToEnd = true;
3308 }
3309
Eli Bendersky4766ef42012-12-20 19:05:53 +00003310 Lex();
3311
Eli Bendersky6c1d4972013-01-07 21:51:08 +00003312 getStreamer().EmitBundleLock(AlignToEnd);
Eli Bendersky4766ef42012-12-20 19:05:53 +00003313 return false;
3314}
3315
Jim Grosbach4a200922013-09-20 23:08:21 +00003316/// parseDirectiveBundleLock
Eli Bendersky4766ef42012-12-20 19:05:53 +00003317/// ::= {.bundle_lock}
Jim Grosbach4a200922013-09-20 23:08:21 +00003318bool AsmParser::parseDirectiveBundleUnlock() {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003319 checkForValidSection();
Eli Bendersky4766ef42012-12-20 19:05:53 +00003320
3321 if (getLexer().isNot(AsmToken::EndOfStatement))
3322 return TokError("unexpected token in '.bundle_unlock' directive");
3323 Lex();
3324
3325 getStreamer().EmitBundleUnlock();
3326 return false;
3327}
3328
Jim Grosbach4a200922013-09-20 23:08:21 +00003329/// parseDirectiveSpace
Eli Bendersky6ee13082013-01-15 22:59:42 +00003330/// ::= (.skip | .space) expression [ , expression ]
Jim Grosbach4a200922013-09-20 23:08:21 +00003331bool AsmParser::parseDirectiveSpace(StringRef IDVal) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003332 checkForValidSection();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003333
3334 int64_t NumBytes;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003335 if (parseAbsoluteExpression(NumBytes))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003336 return true;
3337
3338 int64_t FillExpr = 0;
3339 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3340 if (getLexer().isNot(AsmToken::Comma))
3341 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
3342 Lex();
3343
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003344 if (parseAbsoluteExpression(FillExpr))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003345 return true;
3346
3347 if (getLexer().isNot(AsmToken::EndOfStatement))
3348 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
3349 }
3350
3351 Lex();
3352
3353 if (NumBytes <= 0)
Jim Grosbach4a200922013-09-20 23:08:21 +00003354 return TokError("invalid number of bytes in '" + Twine(IDVal) +
3355 "' directive");
Eli Bendersky6ee13082013-01-15 22:59:42 +00003356
3357 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Rafael Espindolaa3863ea2013-07-02 15:49:13 +00003358 getStreamer().EmitFill(NumBytes, FillExpr);
Eli Bendersky6ee13082013-01-15 22:59:42 +00003359
3360 return false;
3361}
3362
Jim Grosbach4a200922013-09-20 23:08:21 +00003363/// parseDirectiveLEB128
Eli Bendersky6ee13082013-01-15 22:59:42 +00003364/// ::= (.sleb128 | .uleb128) expression
Jim Grosbach4a200922013-09-20 23:08:21 +00003365bool AsmParser::parseDirectiveLEB128(bool Signed) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003366 checkForValidSection();
Eli Bendersky6ee13082013-01-15 22:59:42 +00003367 const MCExpr *Value;
3368
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003369 if (parseExpression(Value))
Eli Bendersky6ee13082013-01-15 22:59:42 +00003370 return true;
3371
3372 if (getLexer().isNot(AsmToken::EndOfStatement))
3373 return TokError("unexpected token in directive");
3374
3375 if (Signed)
3376 getStreamer().EmitSLEB128Value(Value);
3377 else
3378 getStreamer().EmitULEB128Value(Value);
3379
3380 return false;
3381}
3382
Jim Grosbach4a200922013-09-20 23:08:21 +00003383/// parseDirectiveSymbolAttribute
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003384/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Jim Grosbach4a200922013-09-20 23:08:21 +00003385bool AsmParser::parseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003386 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003387 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00003388 StringRef Name;
Jim Grosbach10ec6502011-09-15 17:56:49 +00003389 SMLoc Loc = getTok().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00003390
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003391 if (parseIdentifier(Name))
Jim Grosbach10ec6502011-09-15 17:56:49 +00003392 return Error(Loc, "expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003393
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00003394 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003395
Jim Grosbach10ec6502011-09-15 17:56:49 +00003396 // Assembler local symbols don't make any sense here. Complain loudly.
3397 if (Sym->isTemporary())
3398 return Error(Loc, "non-local symbol required in directive");
3399
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +00003400 if (!getStreamer().EmitSymbolAttribute(Sym, Attr))
3401 return Error(Loc, "unable to emit symbol attribute");
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003402
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003403 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003404 break;
3405
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003406 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003407 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00003408 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003409 }
3410 }
3411
Sean Callanan79ed1a82010-01-19 20:22:31 +00003412 Lex();
Jan Wen Vounga854a4b2010-09-30 01:09:20 +00003413 return false;
Daniel Dunbard7b267b2009-06-30 00:33:19 +00003414}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003415
Jim Grosbach4a200922013-09-20 23:08:21 +00003416/// parseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00003417/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
Jim Grosbach4a200922013-09-20 23:08:21 +00003418bool AsmParser::parseDirectiveComm(bool IsLocal) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003419 checkForValidSection();
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00003420
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003421 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00003422 StringRef Name;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003423 if (parseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003424 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003425
Daniel Dunbar76c4d762009-07-31 21:55:09 +00003426 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00003427 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003428
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003429 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003430 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00003431 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003432
3433 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003434 SMLoc SizeLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003435 if (parseAbsoluteExpression(Size))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003436 return true;
3437
3438 int64_t Pow2Alignment = 0;
3439 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003440 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00003441 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003442 Pow2AlignmentLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003443 if (parseAbsoluteExpression(Pow2Alignment))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003444 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003445
Benjamin Kramera9e37c52012-09-07 21:08:01 +00003446 LCOMM::LCOMMType LCOMM = Lexer.getMAI().getLCOMMDirectiveAlignmentType();
3447 if (IsLocal && LCOMM == LCOMM::NoAlignment)
Benjamin Kramer39646d92012-09-07 17:25:13 +00003448 return Error(Pow2AlignmentLoc, "alignment not supported on this target");
3449
Chris Lattner258281d2010-01-19 06:22:22 +00003450 // If this target takes alignments in bytes (not log) validate and convert.
Benjamin Kramera9e37c52012-09-07 21:08:01 +00003451 if ((!IsLocal && Lexer.getMAI().getCOMMDirectiveAlignmentIsInBytes()) ||
3452 (IsLocal && LCOMM == LCOMM::ByteAlignment)) {
Chris Lattner258281d2010-01-19 06:22:22 +00003453 if (!isPowerOf2_64(Pow2Alignment))
3454 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
3455 Pow2Alignment = Log2_64(Pow2Alignment);
3456 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003457 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003458
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003459 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00003460 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003461
Sean Callanan79ed1a82010-01-19 20:22:31 +00003462 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003463
Chris Lattner1fc3d752009-07-09 17:25:12 +00003464 // NOTE: a size of zero for a .comm should create a undefined symbol
3465 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003466 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00003467 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
Jim Grosbach4a200922013-09-20 23:08:21 +00003468 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003469
Eric Christopherc260a3e2010-05-14 01:38:54 +00003470 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003471 // may internally end up wanting an alignment in bytes.
3472 // FIXME: Diagnose overflow.
3473 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00003474 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
Jim Grosbach4a200922013-09-20 23:08:21 +00003475 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003476
Daniel Dunbar8906ff12009-08-22 07:22:36 +00003477 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003478 return Error(IDLoc, "invalid symbol redefinition");
3479
Chris Lattner1fc3d752009-07-09 17:25:12 +00003480 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00003481 if (IsLocal) {
Benjamin Kramer39646d92012-09-07 17:25:13 +00003482 getStreamer().EmitLocalCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00003483 return false;
3484 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003485
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003486 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00003487 return false;
3488}
Chris Lattner9be3fee2009-07-10 22:20:30 +00003489
Jim Grosbach4a200922013-09-20 23:08:21 +00003490/// parseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00003491/// ::= .abort [... message ...]
Jim Grosbach4a200922013-09-20 23:08:21 +00003492bool AsmParser::parseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00003493 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003494 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00003495
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003496 StringRef Str = parseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003497 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003498 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00003499
Sean Callanan79ed1a82010-01-19 20:22:31 +00003500 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003501
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00003502 if (Str.empty())
3503 Error(Loc, ".abort detected. Assembly stopping.");
3504 else
3505 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00003506 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00003507
3508 return false;
3509}
Kevin Enderby71148242009-07-14 21:35:03 +00003510
Jim Grosbach4a200922013-09-20 23:08:21 +00003511/// parseDirectiveInclude
Kevin Enderby1f049b22009-07-14 23:21:55 +00003512/// ::= .include "filename"
Jim Grosbach4a200922013-09-20 23:08:21 +00003513bool AsmParser::parseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003514 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00003515 return TokError("expected string in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003516
Yunzhong Gaoed119822013-09-05 19:14:26 +00003517 // Allow the strings to have escaped octal character sequence.
3518 std::string Filename;
3519 if (parseEscapedString(Filename))
3520 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003521 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00003522 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00003523
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003524 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00003525 return TokError("unexpected token in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003526
Chris Lattner8e25e2d2009-07-16 06:14:39 +00003527 // Attempt to switch the lexer to the included file before consuming the end
3528 // of statement to avoid losing it when we switch.
Jim Grosbach4a200922013-09-20 23:08:21 +00003529 if (enterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00003530 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00003531 return true;
3532 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00003533
3534 return false;
3535}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00003536
Jim Grosbach4a200922013-09-20 23:08:21 +00003537/// parseDirectiveIncbin
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003538/// ::= .incbin "filename"
Jim Grosbach4a200922013-09-20 23:08:21 +00003539bool AsmParser::parseDirectiveIncbin() {
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003540 if (getLexer().isNot(AsmToken::String))
3541 return TokError("expected string in '.incbin' directive");
3542
Yunzhong Gaoed119822013-09-05 19:14:26 +00003543 // Allow the strings to have escaped octal character sequence.
3544 std::string Filename;
3545 if (parseEscapedString(Filename))
3546 return true;
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003547 SMLoc IncbinLoc = getLexer().getLoc();
3548 Lex();
3549
3550 if (getLexer().isNot(AsmToken::EndOfStatement))
3551 return TokError("unexpected token in '.incbin' directive");
3552
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003553 // Attempt to process the included file.
Jim Grosbach4a200922013-09-20 23:08:21 +00003554 if (processIncbinFile(Filename)) {
Kevin Enderbyc55acca2011-12-14 21:47:48 +00003555 Error(IncbinLoc, "Could not find incbin file '" + Filename + "'");
3556 return true;
3557 }
3558
3559 return false;
3560}
3561
Jim Grosbach4a200922013-09-20 23:08:21 +00003562/// parseDirectiveIf
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003563/// ::= .if expression
Jim Grosbach4a200922013-09-20 23:08:21 +00003564bool AsmParser::parseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003565 TheCondStack.push_back(TheCondState);
3566 TheCondState.TheCond = AsmCond::IfCond;
Benjamin Kramer29739e72012-05-12 16:52:21 +00003567 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003568 eatToEndOfStatement();
Benjamin Kramer29739e72012-05-12 16:52:21 +00003569 } else {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003570 int64_t ExprValue;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003571 if (parseAbsoluteExpression(ExprValue))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003572 return true;
3573
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003574 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003575 return TokError("unexpected token in '.if' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003576
Sean Callanan79ed1a82010-01-19 20:22:31 +00003577 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003578
3579 TheCondState.CondMet = ExprValue;
3580 TheCondState.Ignore = !TheCondState.CondMet;
3581 }
3582
3583 return false;
3584}
3585
Jim Grosbach4a200922013-09-20 23:08:21 +00003586/// parseDirectiveIfb
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003587/// ::= .ifb string
Jim Grosbach4a200922013-09-20 23:08:21 +00003588bool AsmParser::parseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank) {
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003589 TheCondStack.push_back(TheCondState);
3590 TheCondState.TheCond = AsmCond::IfCond;
3591
Benjamin Kramer29739e72012-05-12 16:52:21 +00003592 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003593 eatToEndOfStatement();
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003594 } else {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003595 StringRef Str = parseStringToEndOfStatement();
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00003596
3597 if (getLexer().isNot(AsmToken::EndOfStatement))
3598 return TokError("unexpected token in '.ifb' directive");
3599
3600 Lex();
3601
3602 TheCondState.CondMet = ExpectBlank == Str.empty();
3603 TheCondState.Ignore = !TheCondState.CondMet;
3604 }
3605
3606 return false;
3607}
3608
Jim Grosbach4a200922013-09-20 23:08:21 +00003609/// parseDirectiveIfc
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003610/// ::= .ifc string1, string2
Jim Grosbach4a200922013-09-20 23:08:21 +00003611bool AsmParser::parseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual) {
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003612 TheCondStack.push_back(TheCondState);
3613 TheCondState.TheCond = AsmCond::IfCond;
3614
Benjamin Kramer29739e72012-05-12 16:52:21 +00003615 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003616 eatToEndOfStatement();
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003617 } else {
Jim Grosbach4a200922013-09-20 23:08:21 +00003618 StringRef Str1 = parseStringToComma();
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003619
3620 if (getLexer().isNot(AsmToken::Comma))
3621 return TokError("unexpected token in '.ifc' directive");
3622
3623 Lex();
3624
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003625 StringRef Str2 = parseStringToEndOfStatement();
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003626
3627 if (getLexer().isNot(AsmToken::EndOfStatement))
3628 return TokError("unexpected token in '.ifc' directive");
3629
3630 Lex();
3631
3632 TheCondState.CondMet = ExpectEqual == (Str1 == Str2);
3633 TheCondState.Ignore = !TheCondState.CondMet;
3634 }
3635
3636 return false;
3637}
3638
Jim Grosbach4a200922013-09-20 23:08:21 +00003639/// parseDirectiveIfdef
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00003640/// ::= .ifdef symbol
Jim Grosbach4a200922013-09-20 23:08:21 +00003641bool AsmParser::parseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined) {
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00003642 StringRef Name;
3643 TheCondStack.push_back(TheCondState);
3644 TheCondState.TheCond = AsmCond::IfCond;
3645
3646 if (TheCondState.Ignore) {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003647 eatToEndOfStatement();
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00003648 } else {
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003649 if (parseIdentifier(Name))
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00003650 return TokError("expected identifier after '.ifdef'");
3651
3652 Lex();
3653
3654 MCSymbol *Sym = getContext().LookupSymbol(Name);
3655
3656 if (expect_defined)
3657 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
3658 else
3659 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
3660 TheCondState.Ignore = !TheCondState.CondMet;
3661 }
3662
3663 return false;
3664}
3665
Jim Grosbach4a200922013-09-20 23:08:21 +00003666/// parseDirectiveElseIf
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003667/// ::= .elseif expression
Jim Grosbach4a200922013-09-20 23:08:21 +00003668bool AsmParser::parseDirectiveElseIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003669 if (TheCondState.TheCond != AsmCond::IfCond &&
3670 TheCondState.TheCond != AsmCond::ElseIfCond)
Craig Topper955d1e92013-04-22 04:24:02 +00003671 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
3672 " an .elseif");
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003673 TheCondState.TheCond = AsmCond::ElseIfCond;
3674
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003675 bool LastIgnoreState = false;
3676 if (!TheCondStack.empty())
Craig Topper955d1e92013-04-22 04:24:02 +00003677 LastIgnoreState = TheCondStack.back().Ignore;
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003678 if (LastIgnoreState || TheCondState.CondMet) {
3679 TheCondState.Ignore = true;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003680 eatToEndOfStatement();
Craig Topperefa703d2013-04-22 04:22:40 +00003681 } else {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003682 int64_t ExprValue;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003683 if (parseAbsoluteExpression(ExprValue))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003684 return true;
3685
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003686 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003687 return TokError("unexpected token in '.elseif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003688
Sean Callanan79ed1a82010-01-19 20:22:31 +00003689 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003690 TheCondState.CondMet = ExprValue;
3691 TheCondState.Ignore = !TheCondState.CondMet;
3692 }
3693
3694 return false;
3695}
3696
Jim Grosbach4a200922013-09-20 23:08:21 +00003697/// parseDirectiveElse
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003698/// ::= .else
Jim Grosbach4a200922013-09-20 23:08:21 +00003699bool AsmParser::parseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003700 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003701 return TokError("unexpected token in '.else' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003702
Sean Callanan79ed1a82010-01-19 20:22:31 +00003703 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003704
3705 if (TheCondState.TheCond != AsmCond::IfCond &&
3706 TheCondState.TheCond != AsmCond::ElseIfCond)
Craig Topper955d1e92013-04-22 04:24:02 +00003707 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
3708 ".elseif");
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003709 TheCondState.TheCond = AsmCond::ElseCond;
3710 bool LastIgnoreState = false;
3711 if (!TheCondStack.empty())
3712 LastIgnoreState = TheCondStack.back().Ignore;
3713 if (LastIgnoreState || TheCondState.CondMet)
3714 TheCondState.Ignore = true;
3715 else
3716 TheCondState.Ignore = false;
3717
3718 return false;
3719}
3720
Jim Grosbach4a200922013-09-20 23:08:21 +00003721/// parseDirectiveEndIf
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003722/// ::= .endif
Jim Grosbach4a200922013-09-20 23:08:21 +00003723bool AsmParser::parseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00003724 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003725 return TokError("unexpected token in '.endif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00003726
Sean Callanan79ed1a82010-01-19 20:22:31 +00003727 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003728
Jim Grosbach4a200922013-09-20 23:08:21 +00003729 if ((TheCondState.TheCond == AsmCond::NoCond) || TheCondStack.empty())
Kevin Enderbyc114ed72009-08-07 22:46:00 +00003730 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
3731 ".else");
3732 if (!TheCondStack.empty()) {
3733 TheCondState = TheCondStack.back();
3734 TheCondStack.pop_back();
3735 }
3736
3737 return false;
3738}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00003739
Eli Bendersky6ee13082013-01-15 22:59:42 +00003740void AsmParser::initializeDirectiveKindMap() {
3741 DirectiveKindMap[".set"] = DK_SET;
3742 DirectiveKindMap[".equ"] = DK_EQU;
3743 DirectiveKindMap[".equiv"] = DK_EQUIV;
3744 DirectiveKindMap[".ascii"] = DK_ASCII;
3745 DirectiveKindMap[".asciz"] = DK_ASCIZ;
3746 DirectiveKindMap[".string"] = DK_STRING;
3747 DirectiveKindMap[".byte"] = DK_BYTE;
3748 DirectiveKindMap[".short"] = DK_SHORT;
3749 DirectiveKindMap[".value"] = DK_VALUE;
3750 DirectiveKindMap[".2byte"] = DK_2BYTE;
3751 DirectiveKindMap[".long"] = DK_LONG;
3752 DirectiveKindMap[".int"] = DK_INT;
3753 DirectiveKindMap[".4byte"] = DK_4BYTE;
3754 DirectiveKindMap[".quad"] = DK_QUAD;
3755 DirectiveKindMap[".8byte"] = DK_8BYTE;
3756 DirectiveKindMap[".single"] = DK_SINGLE;
3757 DirectiveKindMap[".float"] = DK_FLOAT;
3758 DirectiveKindMap[".double"] = DK_DOUBLE;
3759 DirectiveKindMap[".align"] = DK_ALIGN;
3760 DirectiveKindMap[".align32"] = DK_ALIGN32;
3761 DirectiveKindMap[".balign"] = DK_BALIGN;
3762 DirectiveKindMap[".balignw"] = DK_BALIGNW;
3763 DirectiveKindMap[".balignl"] = DK_BALIGNL;
3764 DirectiveKindMap[".p2align"] = DK_P2ALIGN;
3765 DirectiveKindMap[".p2alignw"] = DK_P2ALIGNW;
3766 DirectiveKindMap[".p2alignl"] = DK_P2ALIGNL;
3767 DirectiveKindMap[".org"] = DK_ORG;
3768 DirectiveKindMap[".fill"] = DK_FILL;
3769 DirectiveKindMap[".zero"] = DK_ZERO;
3770 DirectiveKindMap[".extern"] = DK_EXTERN;
3771 DirectiveKindMap[".globl"] = DK_GLOBL;
3772 DirectiveKindMap[".global"] = DK_GLOBAL;
Eli Bendersky6ee13082013-01-15 22:59:42 +00003773 DirectiveKindMap[".lazy_reference"] = DK_LAZY_REFERENCE;
3774 DirectiveKindMap[".no_dead_strip"] = DK_NO_DEAD_STRIP;
3775 DirectiveKindMap[".symbol_resolver"] = DK_SYMBOL_RESOLVER;
3776 DirectiveKindMap[".private_extern"] = DK_PRIVATE_EXTERN;
3777 DirectiveKindMap[".reference"] = DK_REFERENCE;
3778 DirectiveKindMap[".weak_definition"] = DK_WEAK_DEFINITION;
3779 DirectiveKindMap[".weak_reference"] = DK_WEAK_REFERENCE;
3780 DirectiveKindMap[".weak_def_can_be_hidden"] = DK_WEAK_DEF_CAN_BE_HIDDEN;
3781 DirectiveKindMap[".comm"] = DK_COMM;
3782 DirectiveKindMap[".common"] = DK_COMMON;
3783 DirectiveKindMap[".lcomm"] = DK_LCOMM;
3784 DirectiveKindMap[".abort"] = DK_ABORT;
3785 DirectiveKindMap[".include"] = DK_INCLUDE;
3786 DirectiveKindMap[".incbin"] = DK_INCBIN;
3787 DirectiveKindMap[".code16"] = DK_CODE16;
3788 DirectiveKindMap[".code16gcc"] = DK_CODE16GCC;
3789 DirectiveKindMap[".rept"] = DK_REPT;
3790 DirectiveKindMap[".irp"] = DK_IRP;
3791 DirectiveKindMap[".irpc"] = DK_IRPC;
3792 DirectiveKindMap[".endr"] = DK_ENDR;
3793 DirectiveKindMap[".bundle_align_mode"] = DK_BUNDLE_ALIGN_MODE;
3794 DirectiveKindMap[".bundle_lock"] = DK_BUNDLE_LOCK;
3795 DirectiveKindMap[".bundle_unlock"] = DK_BUNDLE_UNLOCK;
3796 DirectiveKindMap[".if"] = DK_IF;
3797 DirectiveKindMap[".ifb"] = DK_IFB;
3798 DirectiveKindMap[".ifnb"] = DK_IFNB;
3799 DirectiveKindMap[".ifc"] = DK_IFC;
3800 DirectiveKindMap[".ifnc"] = DK_IFNC;
3801 DirectiveKindMap[".ifdef"] = DK_IFDEF;
3802 DirectiveKindMap[".ifndef"] = DK_IFNDEF;
3803 DirectiveKindMap[".ifnotdef"] = DK_IFNOTDEF;
3804 DirectiveKindMap[".elseif"] = DK_ELSEIF;
3805 DirectiveKindMap[".else"] = DK_ELSE;
3806 DirectiveKindMap[".endif"] = DK_ENDIF;
3807 DirectiveKindMap[".skip"] = DK_SKIP;
3808 DirectiveKindMap[".space"] = DK_SPACE;
3809 DirectiveKindMap[".file"] = DK_FILE;
3810 DirectiveKindMap[".line"] = DK_LINE;
3811 DirectiveKindMap[".loc"] = DK_LOC;
3812 DirectiveKindMap[".stabs"] = DK_STABS;
3813 DirectiveKindMap[".sleb128"] = DK_SLEB128;
3814 DirectiveKindMap[".uleb128"] = DK_ULEB128;
3815 DirectiveKindMap[".cfi_sections"] = DK_CFI_SECTIONS;
3816 DirectiveKindMap[".cfi_startproc"] = DK_CFI_STARTPROC;
3817 DirectiveKindMap[".cfi_endproc"] = DK_CFI_ENDPROC;
3818 DirectiveKindMap[".cfi_def_cfa"] = DK_CFI_DEF_CFA;
3819 DirectiveKindMap[".cfi_def_cfa_offset"] = DK_CFI_DEF_CFA_OFFSET;
3820 DirectiveKindMap[".cfi_adjust_cfa_offset"] = DK_CFI_ADJUST_CFA_OFFSET;
3821 DirectiveKindMap[".cfi_def_cfa_register"] = DK_CFI_DEF_CFA_REGISTER;
3822 DirectiveKindMap[".cfi_offset"] = DK_CFI_OFFSET;
3823 DirectiveKindMap[".cfi_rel_offset"] = DK_CFI_REL_OFFSET;
3824 DirectiveKindMap[".cfi_personality"] = DK_CFI_PERSONALITY;
3825 DirectiveKindMap[".cfi_lsda"] = DK_CFI_LSDA;
3826 DirectiveKindMap[".cfi_remember_state"] = DK_CFI_REMEMBER_STATE;
3827 DirectiveKindMap[".cfi_restore_state"] = DK_CFI_RESTORE_STATE;
3828 DirectiveKindMap[".cfi_same_value"] = DK_CFI_SAME_VALUE;
3829 DirectiveKindMap[".cfi_restore"] = DK_CFI_RESTORE;
3830 DirectiveKindMap[".cfi_escape"] = DK_CFI_ESCAPE;
3831 DirectiveKindMap[".cfi_signal_frame"] = DK_CFI_SIGNAL_FRAME;
3832 DirectiveKindMap[".cfi_undefined"] = DK_CFI_UNDEFINED;
3833 DirectiveKindMap[".cfi_register"] = DK_CFI_REGISTER;
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +00003834 DirectiveKindMap[".cfi_window_save"] = DK_CFI_WINDOW_SAVE;
Eli Bendersky6ee13082013-01-15 22:59:42 +00003835 DirectiveKindMap[".macros_on"] = DK_MACROS_ON;
3836 DirectiveKindMap[".macros_off"] = DK_MACROS_OFF;
3837 DirectiveKindMap[".macro"] = DK_MACRO;
3838 DirectiveKindMap[".endm"] = DK_ENDM;
3839 DirectiveKindMap[".endmacro"] = DK_ENDMACRO;
3840 DirectiveKindMap[".purgem"] = DK_PURGEM;
Eli Bendersky5d0f0612013-01-10 22:44:57 +00003841}
3842
Jim Grosbach4a200922013-09-20 23:08:21 +00003843MCAsmMacro *AsmParser::parseMacroLikeBody(SMLoc DirectiveLoc) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003844 AsmToken EndToken, StartToken = getTok();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003845
Rafael Espindola761cb062012-06-03 23:57:14 +00003846 unsigned NestLevel = 0;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003847 for (;;) {
3848 // Check whether we have reached the end of the file.
Rafael Espindola761cb062012-06-03 23:57:14 +00003849 if (getLexer().is(AsmToken::Eof)) {
3850 Error(DirectiveLoc, "no matching '.endr' in definition");
3851 return 0;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003852 }
3853
Rafael Espindola761cb062012-06-03 23:57:14 +00003854 if (Lexer.is(AsmToken::Identifier) &&
3855 (getTok().getIdentifier() == ".rept")) {
3856 ++NestLevel;
3857 }
3858
3859 // Otherwise, check whether we have reached the .endr.
Jim Grosbach4a200922013-09-20 23:08:21 +00003860 if (Lexer.is(AsmToken::Identifier) && getTok().getIdentifier() == ".endr") {
Rafael Espindola761cb062012-06-03 23:57:14 +00003861 if (NestLevel == 0) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003862 EndToken = getTok();
3863 Lex();
Rafael Espindola761cb062012-06-03 23:57:14 +00003864 if (Lexer.isNot(AsmToken::EndOfStatement)) {
3865 TokError("unexpected token in '.endr' directive");
3866 return 0;
3867 }
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003868 break;
3869 }
Rafael Espindola761cb062012-06-03 23:57:14 +00003870 --NestLevel;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003871 }
3872
Rafael Espindola761cb062012-06-03 23:57:14 +00003873 // Otherwise, scan till the end of the statement.
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003874 eatToEndOfStatement();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003875 }
3876
3877 const char *BodyStart = StartToken.getLoc().getPointer();
3878 const char *BodyEnd = EndToken.getLoc().getPointer();
3879 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
3880
Rafael Espindola761cb062012-06-03 23:57:14 +00003881 // We Are Anonymous.
3882 StringRef Name;
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003883 MCAsmMacroParameters Parameters;
Benjamin Kramera2b0c332013-08-04 09:06:29 +00003884 MacroLikeBodies.push_back(MCAsmMacro(Name, Body, Parameters));
3885 return &MacroLikeBodies.back();
Rafael Espindola761cb062012-06-03 23:57:14 +00003886}
3887
Jim Grosbach4a200922013-09-20 23:08:21 +00003888void AsmParser::instantiateMacroLikeBody(MCAsmMacro *M, SMLoc DirectiveLoc,
Rafael Espindola761cb062012-06-03 23:57:14 +00003889 raw_svector_ostream &OS) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003890 OS << ".endr\n";
3891
3892 MemoryBuffer *Instantiation =
Jim Grosbach4a200922013-09-20 23:08:21 +00003893 MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003894
Rafael Espindola761cb062012-06-03 23:57:14 +00003895 // Create the macro instantiation object and add to the current macro
3896 // instantiation stack.
Jim Grosbach4a200922013-09-20 23:08:21 +00003897 MacroInstantiation *MI = new MacroInstantiation(
3898 M, DirectiveLoc, CurBuffer, getTok().getLoc(), Instantiation);
Rafael Espindola761cb062012-06-03 23:57:14 +00003899 ActiveMacros.push_back(MI);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003900
Rafael Espindola761cb062012-06-03 23:57:14 +00003901 // Jump to the macro instantiation and prime the lexer.
3902 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
3903 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
3904 Lex();
3905}
3906
Jim Grosbach4a200922013-09-20 23:08:21 +00003907bool AsmParser::parseDirectiveRept(SMLoc DirectiveLoc) {
Rafael Espindola761cb062012-06-03 23:57:14 +00003908 int64_t Count;
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003909 if (parseAbsoluteExpression(Count))
Rafael Espindola761cb062012-06-03 23:57:14 +00003910 return TokError("unexpected token in '.rept' directive");
3911
3912 if (Count < 0)
3913 return TokError("Count is negative");
3914
3915 if (Lexer.isNot(AsmToken::EndOfStatement))
3916 return TokError("unexpected token in '.rept' directive");
3917
3918 // Eat the end of statement.
3919 Lex();
3920
3921 // Lex the rept definition.
Jim Grosbach4a200922013-09-20 23:08:21 +00003922 MCAsmMacro *M = parseMacroLikeBody(DirectiveLoc);
Rafael Espindola761cb062012-06-03 23:57:14 +00003923 if (!M)
3924 return true;
3925
3926 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3927 // to hold the macro body with substitutions.
3928 SmallString<256> Buf;
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003929 MCAsmMacroParameters Parameters;
3930 MCAsmMacroArguments A;
Rafael Espindola761cb062012-06-03 23:57:14 +00003931 raw_svector_ostream OS(Buf);
3932 while (Count--) {
3933 if (expandMacro(OS, M->Body, Parameters, A, getTok().getLoc()))
3934 return true;
3935 }
Jim Grosbach4a200922013-09-20 23:08:21 +00003936 instantiateMacroLikeBody(M, DirectiveLoc, OS);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003937
3938 return false;
3939}
3940
Jim Grosbach4a200922013-09-20 23:08:21 +00003941/// parseDirectiveIrp
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003942/// ::= .irp symbol,values
Jim Grosbach4a200922013-09-20 23:08:21 +00003943bool AsmParser::parseDirectiveIrp(SMLoc DirectiveLoc) {
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003944 MCAsmMacroParameters Parameters;
3945 MCAsmMacroParameter Parameter;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003946
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003947 if (parseIdentifier(Parameter.first))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003948 return TokError("expected identifier in '.irp' directive");
3949
3950 Parameters.push_back(Parameter);
3951
3952 if (Lexer.isNot(AsmToken::Comma))
3953 return TokError("expected comma in '.irp' directive");
3954
3955 Lex();
3956
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003957 MCAsmMacroArguments A;
Jim Grosbach4a200922013-09-20 23:08:21 +00003958 if (parseMacroArguments(0, A))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003959 return true;
3960
3961 // Eat the end of statement.
3962 Lex();
3963
3964 // Lex the irp definition.
Jim Grosbach4a200922013-09-20 23:08:21 +00003965 MCAsmMacro *M = parseMacroLikeBody(DirectiveLoc);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003966 if (!M)
3967 return true;
3968
3969 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3970 // to hold the macro body with substitutions.
3971 SmallString<256> Buf;
3972 raw_svector_ostream OS(Buf);
3973
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003974 for (MCAsmMacroArguments::iterator i = A.begin(), e = A.end(); i != e; ++i) {
3975 MCAsmMacroArguments Args;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003976 Args.push_back(*i);
3977
3978 if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
3979 return true;
3980 }
3981
Jim Grosbach4a200922013-09-20 23:08:21 +00003982 instantiateMacroLikeBody(M, DirectiveLoc, OS);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003983
3984 return false;
3985}
3986
Jim Grosbach4a200922013-09-20 23:08:21 +00003987/// parseDirectiveIrpc
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003988/// ::= .irpc symbol,values
Jim Grosbach4a200922013-09-20 23:08:21 +00003989bool AsmParser::parseDirectiveIrpc(SMLoc DirectiveLoc) {
Eli Benderskyc0c67b02013-01-14 23:22:36 +00003990 MCAsmMacroParameters Parameters;
3991 MCAsmMacroParameter Parameter;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003992
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00003993 if (parseIdentifier(Parameter.first))
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003994 return TokError("expected identifier in '.irpc' directive");
3995
3996 Parameters.push_back(Parameter);
3997
3998 if (Lexer.isNot(AsmToken::Comma))
3999 return TokError("expected comma in '.irpc' directive");
4000
4001 Lex();
4002
Eli Benderskyc0c67b02013-01-14 23:22:36 +00004003 MCAsmMacroArguments A;
Jim Grosbach4a200922013-09-20 23:08:21 +00004004 if (parseMacroArguments(0, A))
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004005 return true;
4006
4007 if (A.size() != 1 || A.front().size() != 1)
4008 return TokError("unexpected token in '.irpc' directive");
4009
4010 // Eat the end of statement.
4011 Lex();
4012
4013 // Lex the irpc definition.
Jim Grosbach4a200922013-09-20 23:08:21 +00004014 MCAsmMacro *M = parseMacroLikeBody(DirectiveLoc);
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004015 if (!M)
4016 return true;
4017
4018 // Macro instantiation is lexical, unfortunately. We construct a new buffer
4019 // to hold the macro body with substitutions.
4020 SmallString<256> Buf;
4021 raw_svector_ostream OS(Buf);
4022
4023 StringRef Values = A.front().front().getString();
4024 std::size_t I, End = Values.size();
4025 for (I = 0; I < End; ++I) {
Eli Bendersky9bac6b22013-01-14 19:00:26 +00004026 MCAsmMacroArgument Arg;
Jim Grosbach4a200922013-09-20 23:08:21 +00004027 Arg.push_back(AsmToken(AsmToken::Identifier, Values.slice(I, I + 1)));
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004028
Eli Benderskyc0c67b02013-01-14 23:22:36 +00004029 MCAsmMacroArguments Args;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004030 Args.push_back(Arg);
4031
4032 if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
4033 return true;
4034 }
4035
Jim Grosbach4a200922013-09-20 23:08:21 +00004036 instantiateMacroLikeBody(M, DirectiveLoc, OS);
Rafael Espindolafc9216e2012-06-16 18:03:25 +00004037
4038 return false;
4039}
4040
Jim Grosbach4a200922013-09-20 23:08:21 +00004041bool AsmParser::parseDirectiveEndr(SMLoc DirectiveLoc) {
Rafael Espindola761cb062012-06-03 23:57:14 +00004042 if (ActiveMacros.empty())
Preston Gurd6579eea2012-09-19 20:23:43 +00004043 return TokError("unmatched '.endr' directive");
Rafael Espindola2ec304c2012-05-12 16:31:10 +00004044
4045 // The only .repl that should get here are the ones created by
Jim Grosbach4a200922013-09-20 23:08:21 +00004046 // instantiateMacroLikeBody.
Rafael Espindola2ec304c2012-05-12 16:31:10 +00004047 assert(getLexer().is(AsmToken::EndOfStatement));
4048
Jim Grosbach4a200922013-09-20 23:08:21 +00004049 handleMacroExit();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00004050 return false;
4051}
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00004052
Jim Grosbach4a200922013-09-20 23:08:21 +00004053bool AsmParser::parseDirectiveMSEmit(SMLoc IDLoc, ParseStatementInfo &Info,
Benjamin Kramer75234372013-02-15 20:37:21 +00004054 size_t Len) {
Eli Friedman2128aae2012-10-22 23:58:19 +00004055 const MCExpr *Value;
4056 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00004057 if (parseExpression(Value))
Eli Friedman2128aae2012-10-22 23:58:19 +00004058 return true;
4059 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value);
4060 if (!MCE)
4061 return Error(ExprLoc, "unexpected expression in _emit");
4062 uint64_t IntValue = MCE->getValue();
4063 if (!isUIntN(8, IntValue) && !isIntN(8, IntValue))
4064 return Error(ExprLoc, "literal value out of range for directive");
4065
Chad Rosier469b1442013-02-12 21:33:51 +00004066 Info.AsmRewrites->push_back(AsmRewrite(AOK_Emit, IDLoc, Len));
4067 return false;
4068}
4069
Jim Grosbach4a200922013-09-20 23:08:21 +00004070bool AsmParser::parseDirectiveMSAlign(SMLoc IDLoc, ParseStatementInfo &Info) {
Chad Rosier469b1442013-02-12 21:33:51 +00004071 const MCExpr *Value;
4072 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachcb2ae3d2013-02-20 22:21:35 +00004073 if (parseExpression(Value))
Chad Rosier469b1442013-02-12 21:33:51 +00004074 return true;
4075 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value);
4076 if (!MCE)
4077 return Error(ExprLoc, "unexpected expression in align");
4078 uint64_t IntValue = MCE->getValue();
4079 if (!isPowerOf2_64(IntValue))
4080 return Error(ExprLoc, "literal value not a power of two greater then zero");
4081
Jim Grosbach4a200922013-09-20 23:08:21 +00004082 Info.AsmRewrites->push_back(
4083 AsmRewrite(AOK_Align, IDLoc, 5, Log2_64(IntValue)));
Eli Friedman2128aae2012-10-22 23:58:19 +00004084 return false;
4085}
4086
Chad Rosier19aa3e32013-02-13 21:27:17 +00004087// We are comparing pointers, but the pointers are relative to a single string.
4088// Thus, this should always be deterministic.
Benjamin Kramer0d293e42013-09-22 14:09:50 +00004089static int rewritesSort(const AsmRewrite *AsmRewriteA,
4090 const AsmRewrite *AsmRewriteB) {
Chad Rosierabde6752013-02-13 18:38:58 +00004091 if (AsmRewriteA->Loc.getPointer() < AsmRewriteB->Loc.getPointer())
4092 return -1;
4093 if (AsmRewriteB->Loc.getPointer() < AsmRewriteA->Loc.getPointer())
4094 return 1;
Chad Rosierb54562b2013-02-15 22:54:16 +00004095
Chad Rosier6b369ce2013-04-08 17:43:47 +00004096 // It's possible to have a SizeDirective, Imm/ImmPrefix and an Input/Output
4097 // rewrite to the same location. Make sure the SizeDirective rewrite is
4098 // performed first, then the Imm/ImmPrefix and finally the Input/Output. This
4099 // ensures the sort algorithm is stable.
Jim Grosbach4a200922013-09-20 23:08:21 +00004100 if (AsmRewritePrecedence[AsmRewriteA->Kind] >
4101 AsmRewritePrecedence[AsmRewriteB->Kind])
Chad Rosierb54562b2013-02-15 22:54:16 +00004102 return -1;
Chad Rosier6b369ce2013-04-08 17:43:47 +00004103
Jim Grosbach4a200922013-09-20 23:08:21 +00004104 if (AsmRewritePrecedence[AsmRewriteA->Kind] <
4105 AsmRewritePrecedence[AsmRewriteB->Kind])
Chad Rosierb54562b2013-02-15 22:54:16 +00004106 return 1;
Jim Grosbach4a200922013-09-20 23:08:21 +00004107 llvm_unreachable("Unstable rewrite sort.");
Chad Rosierb1953982013-02-13 01:03:13 +00004108}
4109
Jim Grosbach4a200922013-09-20 23:08:21 +00004110bool AsmParser::parseMSInlineAsm(
4111 void *AsmLoc, std::string &AsmString, unsigned &NumOutputs,
4112 unsigned &NumInputs, SmallVectorImpl<std::pair<void *, bool> > &OpDecls,
4113 SmallVectorImpl<std::string> &Constraints,
4114 SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
4115 const MCInstPrinter *IP, MCAsmParserSemaCallback &SI) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00004116 SmallVector<void *, 4> InputDecls;
4117 SmallVector<void *, 4> OutputDecls;
Chad Rosierc1ec2072013-01-10 22:10:27 +00004118 SmallVector<bool, 4> InputDeclsAddressOf;
4119 SmallVector<bool, 4> OutputDeclsAddressOf;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004120 SmallVector<std::string, 4> InputConstraints;
4121 SmallVector<std::string, 4> OutputConstraints;
Benjamin Kramer75234372013-02-15 20:37:21 +00004122 SmallVector<unsigned, 4> ClobberRegs;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004123
Benjamin Kramer75234372013-02-15 20:37:21 +00004124 SmallVector<AsmRewrite, 4> AsmStrRewrites;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004125
4126 // Prime the lexer.
4127 Lex();
4128
4129 // While we have input, parse each statement.
4130 unsigned InputIdx = 0;
4131 unsigned OutputIdx = 0;
4132 while (getLexer().isNot(AsmToken::Eof)) {
Eli Friedman2128aae2012-10-22 23:58:19 +00004133 ParseStatementInfo Info(&AsmStrRewrites);
Jim Grosbach4a200922013-09-20 23:08:21 +00004134 if (parseStatement(Info))
Chad Rosierab450e42012-10-19 22:57:33 +00004135 return true;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004136
Chad Rosier57498012012-12-12 22:45:52 +00004137 if (Info.ParseError)
4138 return true;
4139
Benjamin Kramer75234372013-02-15 20:37:21 +00004140 if (Info.Opcode == ~0U)
4141 continue;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004142
Benjamin Kramer75234372013-02-15 20:37:21 +00004143 const MCInstrDesc &Desc = MII->get(Info.Opcode);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004144
Benjamin Kramer75234372013-02-15 20:37:21 +00004145 // Build the list of clobbers, outputs and inputs.
4146 for (unsigned i = 1, e = Info.ParsedOperands.size(); i != e; ++i) {
4147 MCParsedAsmOperand *Operand = Info.ParsedOperands[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00004148
Benjamin Kramer75234372013-02-15 20:37:21 +00004149 // Immediate.
Chad Rosier811ddf62013-03-19 21:58:18 +00004150 if (Operand->isImm())
Benjamin Kramer75234372013-02-15 20:37:21 +00004151 continue;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004152
Benjamin Kramer75234372013-02-15 20:37:21 +00004153 // Register operand.
4154 if (Operand->isReg() && !Operand->needAddressOf()) {
4155 unsigned NumDefs = Desc.getNumDefs();
4156 // Clobber.
4157 if (NumDefs && Operand->getMCOperandNum() < NumDefs)
4158 ClobberRegs.push_back(Operand->getReg());
4159 continue;
4160 }
4161
4162 // Expr/Input or Output.
Chad Rosierb976e402013-04-09 17:53:49 +00004163 StringRef SymName = Operand->getSymName();
4164 if (SymName.empty())
4165 continue;
4166
Chad Rosier087c3092013-04-22 22:12:12 +00004167 void *OpDecl = Operand->getOpDecl();
Benjamin Kramer75234372013-02-15 20:37:21 +00004168 if (!OpDecl)
4169 continue;
4170
4171 bool isOutput = (i == 1) && Desc.mayStore();
Chad Rosierb976e402013-04-09 17:53:49 +00004172 SMLoc Start = SMLoc::getFromPointer(SymName.data());
Benjamin Kramer75234372013-02-15 20:37:21 +00004173 if (isOutput) {
4174 ++InputIdx;
4175 OutputDecls.push_back(OpDecl);
4176 OutputDeclsAddressOf.push_back(Operand->needAddressOf());
4177 OutputConstraints.push_back('=' + Operand->getConstraint().str());
Chad Rosierb976e402013-04-09 17:53:49 +00004178 AsmStrRewrites.push_back(AsmRewrite(AOK_Output, Start, SymName.size()));
Benjamin Kramer75234372013-02-15 20:37:21 +00004179 } else {
4180 InputDecls.push_back(OpDecl);
4181 InputDeclsAddressOf.push_back(Operand->needAddressOf());
4182 InputConstraints.push_back(Operand->getConstraint().str());
Chad Rosierb976e402013-04-09 17:53:49 +00004183 AsmStrRewrites.push_back(AsmRewrite(AOK_Input, Start, SymName.size()));
Chad Rosierb1f8c132012-10-18 15:49:34 +00004184 }
Chad Rosierb1f8c132012-10-18 15:49:34 +00004185 }
4186 }
4187
4188 // Set the number of Outputs and Inputs.
Chad Rosierc8dd27e2012-10-18 19:39:30 +00004189 NumOutputs = OutputDecls.size();
4190 NumInputs = InputDecls.size();
Chad Rosierb1f8c132012-10-18 15:49:34 +00004191
4192 // Set the unique clobbers.
Benjamin Kramer75234372013-02-15 20:37:21 +00004193 array_pod_sort(ClobberRegs.begin(), ClobberRegs.end());
4194 ClobberRegs.erase(std::unique(ClobberRegs.begin(), ClobberRegs.end()),
4195 ClobberRegs.end());
4196 Clobbers.assign(ClobberRegs.size(), std::string());
4197 for (unsigned I = 0, E = ClobberRegs.size(); I != E; ++I) {
4198 raw_string_ostream OS(Clobbers[I]);
4199 IP->printRegName(OS, ClobberRegs[I]);
4200 }
Chad Rosierb1f8c132012-10-18 15:49:34 +00004201
4202 // Merge the various outputs and inputs. Output are expected first.
4203 if (NumOutputs || NumInputs) {
4204 unsigned NumExprs = NumOutputs + NumInputs;
Chad Rosierc8dd27e2012-10-18 19:39:30 +00004205 OpDecls.resize(NumExprs);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004206 Constraints.resize(NumExprs);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004207 for (unsigned i = 0; i < NumOutputs; ++i) {
Chad Rosierc1ec2072013-01-10 22:10:27 +00004208 OpDecls[i] = std::make_pair(OutputDecls[i], OutputDeclsAddressOf[i]);
Chad Rosier1c99a7f2013-01-15 23:07:53 +00004209 Constraints[i] = OutputConstraints[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00004210 }
4211 for (unsigned i = 0, j = NumOutputs; i < NumInputs; ++i, ++j) {
Chad Rosierc1ec2072013-01-10 22:10:27 +00004212 OpDecls[j] = std::make_pair(InputDecls[i], InputDeclsAddressOf[i]);
Chad Rosier1c99a7f2013-01-15 23:07:53 +00004213 Constraints[j] = InputConstraints[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00004214 }
4215 }
4216
4217 // Build the IR assembly string.
4218 std::string AsmStringIR;
4219 raw_string_ostream OS(AsmStringIR);
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004220 const char *AsmStart = SrcMgr.getMemoryBuffer(0)->getBufferStart();
4221 const char *AsmEnd = SrcMgr.getMemoryBuffer(0)->getBufferEnd();
Jim Grosbach4a200922013-09-20 23:08:21 +00004222 array_pod_sort(AsmStrRewrites.begin(), AsmStrRewrites.end(), rewritesSort);
Benjamin Kramer75234372013-02-15 20:37:21 +00004223 for (SmallVectorImpl<AsmRewrite>::iterator I = AsmStrRewrites.begin(),
4224 E = AsmStrRewrites.end();
4225 I != E; ++I) {
Chad Rosierdda4b6b2013-04-12 16:26:42 +00004226 AsmRewriteKind Kind = (*I).Kind;
4227 if (Kind == AOK_Delete)
4228 continue;
4229
Chad Rosierb1f8c132012-10-18 15:49:34 +00004230 const char *Loc = (*I).Loc.getPointer();
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004231 assert(Loc >= AsmStart && "Expected Loc to be at or after Start!");
Chad Rosier96d58e62012-10-19 20:57:14 +00004232
Chad Rosier023c8802013-03-19 17:32:17 +00004233 // Emit everything up to the immediate/expression.
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004234 unsigned Len = Loc - AsmStart;
Chad Rosierf06cc982013-04-11 21:49:30 +00004235 if (Len)
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004236 OS << StringRef(AsmStart, Len);
Chad Rosier96d58e62012-10-19 20:57:14 +00004237
Chad Rosier5a719fc2012-10-23 17:43:43 +00004238 // Skip the original expression.
4239 if (Kind == AOK_Skip) {
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004240 AsmStart = Loc + (*I).Len;
Chad Rosier5a719fc2012-10-23 17:43:43 +00004241 continue;
4242 }
4243
Chad Rosierdda4b6b2013-04-12 16:26:42 +00004244 unsigned AdditionalSkip = 0;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004245 // Rewrite expressions in $N notation.
Chad Rosier96d58e62012-10-19 20:57:14 +00004246 switch (Kind) {
Jim Grosbach4a200922013-09-20 23:08:21 +00004247 default:
4248 break;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004249 case AOK_Imm:
Benjamin Kramer75234372013-02-15 20:37:21 +00004250 OS << "$$" << (*I).Val;
Chad Rosierefcb3d92012-10-26 18:04:20 +00004251 break;
4252 case AOK_ImmPrefix:
Benjamin Kramer75234372013-02-15 20:37:21 +00004253 OS << "$$";
Chad Rosierb1f8c132012-10-18 15:49:34 +00004254 break;
4255 case AOK_Input:
Benjamin Kramer75234372013-02-15 20:37:21 +00004256 OS << '$' << InputIdx++;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004257 break;
4258 case AOK_Output:
Benjamin Kramer75234372013-02-15 20:37:21 +00004259 OS << '$' << OutputIdx++;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004260 break;
Chad Rosier96d58e62012-10-19 20:57:14 +00004261 case AOK_SizeDirective:
Benjamin Kramer75234372013-02-15 20:37:21 +00004262 switch ((*I).Val) {
Chad Rosier96d58e62012-10-19 20:57:14 +00004263 default: break;
4264 case 8: OS << "byte ptr "; break;
4265 case 16: OS << "word ptr "; break;
4266 case 32: OS << "dword ptr "; break;
4267 case 64: OS << "qword ptr "; break;
4268 case 80: OS << "xword ptr "; break;
4269 case 128: OS << "xmmword ptr "; break;
4270 case 256: OS << "ymmword ptr "; break;
4271 }
Eli Friedman2128aae2012-10-22 23:58:19 +00004272 break;
4273 case AOK_Emit:
4274 OS << ".byte";
4275 break;
Chad Rosier469b1442013-02-12 21:33:51 +00004276 case AOK_Align: {
4277 unsigned Val = (*I).Val;
4278 OS << ".align " << Val;
4279
4280 // Skip the original immediate.
Benjamin Kramer75234372013-02-15 20:37:21 +00004281 assert(Val < 10 && "Expected alignment less then 2^10.");
Chad Rosier469b1442013-02-12 21:33:51 +00004282 AdditionalSkip = (Val < 4) ? 2 : Val < 7 ? 3 : 4;
4283 break;
4284 }
Chad Rosier6a020a72012-10-25 20:41:34 +00004285 case AOK_DotOperator:
4286 OS << (*I).Val;
4287 break;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004288 }
Chad Rosier96d58e62012-10-19 20:57:14 +00004289
Chad Rosierb1f8c132012-10-18 15:49:34 +00004290 // Skip the original expression.
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004291 AsmStart = Loc + (*I).Len + AdditionalSkip;
Chad Rosierb1f8c132012-10-18 15:49:34 +00004292 }
4293
4294 // Emit the remainder of the asm string.
Chad Rosier0f7ccd22013-03-19 21:12:14 +00004295 if (AsmStart != AsmEnd)
4296 OS << StringRef(AsmStart, AsmEnd - AsmStart);
Chad Rosierb1f8c132012-10-18 15:49:34 +00004297
4298 AsmString = OS.str();
4299 return false;
4300}
4301
Daniel Dunbard1e3b442010-07-17 02:26:10 +00004302/// \brief Create an MCAsmParser instance.
Jim Grosbach4a200922013-09-20 23:08:21 +00004303MCAsmParser *llvm::createMCAsmParser(SourceMgr &SM, MCContext &C,
4304 MCStreamer &Out, const MCAsmInfo &MAI) {
Jim Grosbach1b84cce2011-08-16 18:33:49 +00004305 return new AsmParser(SM, C, Out, MAI);
Daniel Dunbard1e3b442010-07-17 02:26:10 +00004306}