blob: b47a6bdb54075e8a3115fadd2b3a2eda2c0dbf37 [file] [log] [blame]
Chris Lattner27aa7d22009-06-21 20:16:42 +00001//===- AsmParser.cpp - Parser for Assembly Files --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This class implements the parser for assembly files.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbarb95a0792010-09-24 01:59:56 +000014#include "llvm/ADT/APFloat.h"
Daniel Dunbar7c0a3342009-08-26 22:49:51 +000015#include "llvm/ADT/SmallString.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000016#include "llvm/ADT/StringMap.h"
Daniel Dunbarf9507ff2009-07-27 23:20:52 +000017#include "llvm/ADT/Twine.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000018#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000019#include "llvm/MC/MCContext.h"
Evan Cheng94b95502011-07-26 00:24:13 +000020#include "llvm/MC/MCDwarf.h"
Daniel Dunbar28c251b2009-08-31 08:06:59 +000021#include "llvm/MC/MCExpr.h"
Chad Rosierb1f8c132012-10-18 15:49:34 +000022#include "llvm/MC/MCInstPrinter.h"
23#include "llvm/MC/MCInstrInfo.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000024#include "llvm/MC/MCParser/AsmCond.h"
25#include "llvm/MC/MCParser/AsmLexer.h"
26#include "llvm/MC/MCParser/MCAsmParser.h"
27#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Evan Chenge76a33b2011-07-20 05:58:47 +000028#include "llvm/MC/MCRegisterInfo.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000029#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000030#include "llvm/MC/MCStreamer.h"
Daniel Dunbardce0f3c2009-06-29 23:43:14 +000031#include "llvm/MC/MCSymbol.h"
Evan Cheng94b95502011-07-26 00:24:13 +000032#include "llvm/MC/MCTargetAsmParser.h"
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +000033#include "llvm/Support/CommandLine.h"
Benjamin Kramer518ff562012-01-28 15:28:41 +000034#include "llvm/Support/ErrorHandling.h"
Jim Grosbach254cf032011-06-29 16:05:14 +000035#include "llvm/Support/MathExtras.h"
Kevin Enderbyf187ac52010-06-28 21:45:58 +000036#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000037#include "llvm/Support/SourceMgr.h"
Chris Lattnerb0789ed2009-06-21 20:54:55 +000038#include "llvm/Support/raw_ostream.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000039#include <cctype>
Chad Rosierb1f8c132012-10-18 15:49:34 +000040#include <set>
41#include <string>
Daniel Dunbaraef87e32010-07-18 18:31:38 +000042#include <vector>
Chris Lattner27aa7d22009-06-21 20:16:42 +000043using namespace llvm;
44
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +000045static cl::opt<bool>
46FatalAssemblerWarnings("fatal-assembler-warnings",
47 cl::desc("Consider warnings as error"));
48
Nick Lewycky0d7d11d2012-10-19 07:00:09 +000049MCAsmParserSemaCallback::~MCAsmParserSemaCallback() {}
50
Daniel Dunbar81ea00f2010-07-12 17:54:38 +000051namespace {
52
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000053/// \brief Helper class for tracking macro definitions.
Rafael Espindola28c1f6662012-06-03 22:41:23 +000054typedef std::vector<AsmToken> MacroArgument;
Rafael Espindola8a403d32012-08-08 14:51:03 +000055typedef std::vector<MacroArgument> MacroArguments;
Preston Gurd6c9176a2012-09-19 20:29:04 +000056typedef std::pair<StringRef, MacroArgument> MacroParameter;
Rafael Espindola8a403d32012-08-08 14:51:03 +000057typedef std::vector<MacroParameter> MacroParameters;
Rafael Espindola28c1f6662012-06-03 22:41:23 +000058
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000059struct Macro {
60 StringRef Name;
61 StringRef Body;
Rafael Espindola8a403d32012-08-08 14:51:03 +000062 MacroParameters Parameters;
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000063
64public:
Rafael Espindola8a403d32012-08-08 14:51:03 +000065 Macro(StringRef N, StringRef B, const MacroParameters &P) :
Rafael Espindola65366442011-06-05 02:43:45 +000066 Name(N), Body(B), Parameters(P) {}
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000067};
68
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000069/// \brief Helper class for storing information about an active macro
70/// instantiation.
71struct MacroInstantiation {
72 /// The macro being instantiated.
73 const Macro *TheMacro;
74
75 /// The macro instantiation with substitutions.
76 MemoryBuffer *Instantiation;
77
78 /// The location of the instantiation.
79 SMLoc InstantiationLoc;
80
81 /// The location where parsing should resume upon instantiation completion.
82 SMLoc ExitLoc;
83
84public:
Daniel Dunbar7a570d02010-07-18 19:00:10 +000085 MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
Rafael Espindola65366442011-06-05 02:43:45 +000086 MemoryBuffer *I);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000087};
88
Chad Rosier6a020a72012-10-25 20:41:34 +000089//struct AsmRewrite;
Eli Friedman2128aae2012-10-22 23:58:19 +000090struct ParseStatementInfo {
91 /// ParsedOperands - The parsed operands from the last parsed statement.
92 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
93
94 /// Opcode - The opcode from the last parsed instruction.
95 unsigned Opcode;
96
97 SmallVectorImpl<AsmRewrite> *AsmRewrites;
98
99 ParseStatementInfo() : Opcode(~0U), AsmRewrites(0) {}
100 ParseStatementInfo(SmallVectorImpl<AsmRewrite> *rewrites)
101 : Opcode(~0), AsmRewrites(rewrites) {}
102
103 ~ParseStatementInfo() {
104 // Free any parsed operands.
105 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
106 delete ParsedOperands[i];
107 ParsedOperands.clear();
108 }
109};
110
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000111/// \brief The concrete assembly parser instance.
112class AsmParser : public MCAsmParser {
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000113 friend class GenericAsmParser;
114
Craig Topper85aadc02012-09-15 16:23:52 +0000115 AsmParser(const AsmParser &) LLVM_DELETED_FUNCTION;
116 void operator=(const AsmParser &) LLVM_DELETED_FUNCTION;
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000117private:
118 AsmLexer Lexer;
119 MCContext &Ctx;
120 MCStreamer &Out;
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000121 const MCAsmInfo &MAI;
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000122 SourceMgr &SrcMgr;
Benjamin Kramer04a04262011-10-16 10:48:29 +0000123 SourceMgr::DiagHandlerTy SavedDiagHandler;
124 void *SavedDiagContext;
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000125 MCAsmParserExtension *GenericParser;
126 MCAsmParserExtension *PlatformParser;
Rafael Espindolaa61842b2011-04-11 21:49:50 +0000127
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000128 /// This is the current buffer index we're lexing from as managed by the
129 /// SourceMgr object.
130 int CurBuffer;
131
132 AsmCond TheCondState;
133 std::vector<AsmCond> TheCondStack;
134
135 /// DirectiveMap - This is a table handlers for directives. Each handler is
136 /// invoked after the directive identifier is read and is responsible for
137 /// parsing and validating the rest of the directive. The handler is passed
138 /// in the directive name and the location of the directive keyword.
139 StringMap<std::pair<MCAsmParserExtension*, DirectiveHandler> > DirectiveMap;
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000140
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000141 /// MacroMap - Map of currently defined macros.
142 StringMap<Macro*> MacroMap;
143
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000144 /// ActiveMacros - Stack of active macro instantiations.
145 std::vector<MacroInstantiation*> ActiveMacros;
146
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000147 /// Boolean tracking whether macro substitution is enabled.
148 unsigned MacrosEnabled : 1;
149
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000150 /// Flag tracking whether any errors have been encountered.
151 unsigned HadError : 1;
152
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000153 /// The values from the last parsed cpp hash file line comment if any.
154 StringRef CppHashFilename;
155 int64_t CppHashLineNumber;
156 SMLoc CppHashLoc;
157
Devang Patel0db58bf2012-01-31 18:14:05 +0000158 /// AssemblerDialect. ~OU means unset value and use value provided by MAI.
159 unsigned AssemblerDialect;
160
Preston Gurd7b6f2032012-09-19 20:36:12 +0000161 /// IsDarwin - is Darwin compatibility enabled?
162 bool IsDarwin;
163
Chad Rosier8f138d12012-10-15 17:19:13 +0000164 /// ParsingInlineAsm - Are we parsing ms-style inline assembly?
Chad Rosier84125ca2012-10-13 00:26:04 +0000165 bool ParsingInlineAsm;
166
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000167public:
Jim Grosbach1b84cce2011-08-16 18:33:49 +0000168 AsmParser(SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000169 const MCAsmInfo &MAI);
Craig Topper345d16d2012-08-29 05:48:09 +0000170 virtual ~AsmParser();
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000171
172 virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
173
Craig Topper345d16d2012-08-29 05:48:09 +0000174 virtual void AddDirectiveHandler(MCAsmParserExtension *Object,
175 StringRef Directive,
176 DirectiveHandler Handler) {
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000177 DirectiveMap[Directive] = std::make_pair(Object, Handler);
178 }
179
180public:
181 /// @name MCAsmParser Interface
182 /// {
183
184 virtual SourceMgr &getSourceManager() { return SrcMgr; }
185 virtual MCAsmLexer &getLexer() { return Lexer; }
186 virtual MCContext &getContext() { return Ctx; }
187 virtual MCStreamer &getStreamer() { return Out; }
Devang Patel0db58bf2012-01-31 18:14:05 +0000188 virtual unsigned getAssemblerDialect() {
189 if (AssemblerDialect == ~0U)
190 return MAI.getAssemblerDialect();
191 else
192 return AssemblerDialect;
193 }
194 virtual void setAssemblerDialect(unsigned i) {
195 AssemblerDialect = i;
196 }
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000197
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000198 virtual bool Warning(SMLoc L, const Twine &Msg,
199 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>());
200 virtual bool Error(SMLoc L, const Twine &Msg,
201 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>());
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000202
Craig Topper345d16d2012-08-29 05:48:09 +0000203 virtual const AsmToken &Lex();
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000204
Chad Rosier84125ca2012-10-13 00:26:04 +0000205 void setParsingInlineAsm(bool V) { ParsingInlineAsm = V; }
Chad Rosierc5ac87d2012-10-16 20:16:20 +0000206 bool isParsingInlineAsm() { return ParsingInlineAsm; }
Chad Rosierb1f8c132012-10-18 15:49:34 +0000207
208 bool ParseMSInlineAsm(void *AsmLoc, std::string &AsmString,
209 unsigned &NumOutputs, unsigned &NumInputs,
Chad Rosier5a719fc2012-10-23 17:43:43 +0000210 SmallVectorImpl<std::pair<void *,bool> > &OpDecls,
Chad Rosierb1f8c132012-10-18 15:49:34 +0000211 SmallVectorImpl<std::string> &Constraints,
Chad Rosierb1f8c132012-10-18 15:49:34 +0000212 SmallVectorImpl<std::string> &Clobbers,
213 const MCInstrInfo *MII,
214 const MCInstPrinter *IP,
215 MCAsmParserSemaCallback &SI);
Chad Rosier84125ca2012-10-13 00:26:04 +0000216
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000217 bool ParseExpression(const MCExpr *&Res);
218 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
219 virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
220 virtual bool ParseAbsoluteExpression(int64_t &Res);
221
222 /// }
223
224private:
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000225 void CheckForValidSection();
226
Eli Friedman2128aae2012-10-22 23:58:19 +0000227 bool ParseStatement(ParseStatementInfo &Info);
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000228 void EatToEndOfLine();
229 bool ParseCppHashLineFilenameComment(const SMLoc &L);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000230
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000231 bool HandleMacroEntry(StringRef Name, SMLoc NameLoc, const Macro *M);
Rafael Espindola761cb062012-06-03 23:57:14 +0000232 bool expandMacro(raw_svector_ostream &OS, StringRef Body,
Rafael Espindola8a403d32012-08-08 14:51:03 +0000233 const MacroParameters &Parameters,
234 const MacroArguments &A,
Rafael Espindola65366442011-06-05 02:43:45 +0000235 const SMLoc &L);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000236 void HandleMacroExit();
237
238 void PrintMacroInstantiations();
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000239 void PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Msg,
Chris Lattner462b43c2011-10-16 05:47:55 +0000240 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) const {
241 SrcMgr.PrintMessage(Loc, Kind, Msg, Ranges);
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000242 }
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000243 static void DiagHandler(const SMDiagnostic &Diag, void *Context);
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000244
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000245 /// EnterIncludeFile - Enter the specified file. This returns true on failure.
246 bool EnterIncludeFile(const std::string &Filename);
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000247 /// ProcessIncbinFile - Process the specified file for the .incbin directive.
248 /// This returns true on failure.
249 bool ProcessIncbinFile(const std::string &Filename);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000250
Dmitri Gribenkoc5252da2012-09-14 14:57:36 +0000251 /// \brief Reset the current lexer position to that given by \p Loc. The
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000252 /// current token is not set; clients should ensure Lex() is called
253 /// subsequently.
254 void JumpToLoc(SMLoc Loc);
255
Craig Topper345d16d2012-08-29 05:48:09 +0000256 virtual void EatToEndOfStatement();
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000257
Preston Gurd7b6f2032012-09-19 20:36:12 +0000258 bool ParseMacroArgument(MacroArgument &MA,
259 AsmToken::TokenKind &ArgumentDelimiter);
Rafael Espindola8a403d32012-08-08 14:51:03 +0000260 bool ParseMacroArguments(const Macro *M, MacroArguments &A);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +0000261
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000262 /// \brief Parse up to the end of statement and a return the contents from the
263 /// current token until the end of the statement; the current token on exit
264 /// will be either the EndOfStatement or EOF.
Craig Topper345d16d2012-08-29 05:48:09 +0000265 virtual StringRef ParseStringToEndOfStatement();
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000266
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000267 /// \brief Parse until the end of a statement or a comma is encountered,
268 /// return the contents from the current token up to the end or comma.
269 StringRef ParseStringToComma();
270
Jim Grosbach3f90a4c2012-09-13 23:11:31 +0000271 bool ParseAssignment(StringRef Name, bool allow_redef,
272 bool NoDeadStrip = false);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000273
274 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
275 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
276 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000277 bool ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000278
279 /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
Dmitri Gribenkoc5252da2012-09-14 14:57:36 +0000280 /// and set \p Res to the identifier contents.
Craig Topper345d16d2012-08-29 05:48:09 +0000281 virtual bool ParseIdentifier(StringRef &Res);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000282
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000283 // Directive Parsing.
Rafael Espindola787c3372010-10-28 20:02:27 +0000284
285 // ".ascii", ".asciiz", ".string"
286 bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000287 bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
Daniel Dunbarb95a0792010-09-24 01:59:56 +0000288 bool ParseDirectiveRealValue(const fltSemantics &); // ".single", ...
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000289 bool ParseDirectiveFill(); // ".fill"
290 bool ParseDirectiveSpace(); // ".space"
Rafael Espindola2ea2ac72010-09-16 15:03:59 +0000291 bool ParseDirectiveZero(); // ".zero"
Nico Weber4c4c7322011-01-28 03:04:41 +0000292 bool ParseDirectiveSet(StringRef IDVal, bool allow_redef); // ".set", ".equ", ".equiv"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000293 bool ParseDirectiveOrg(); // ".org"
294 // ".align{,32}", ".p2align{,w,l}"
295 bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
296
297 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
298 /// accepts a single symbol (which should be a label or an external).
299 bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000300
301 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
302
303 bool ParseDirectiveAbort(); // ".abort"
304 bool ParseDirectiveInclude(); // ".include"
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000305 bool ParseDirectiveIncbin(); // ".incbin"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000306
307 bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +0000308 // ".ifb" or ".ifnb", depending on ExpectBlank.
309 bool ParseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank);
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000310 // ".ifc" or ".ifnc", depending on ExpectEqual.
311 bool ParseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual);
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +0000312 // ".ifdef" or ".ifndef", depending on expect_defined
313 bool ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000314 bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
315 bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
316 bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
317
318 /// ParseEscapedString - Parse the current token as a string which may include
319 /// escaped characters and return the string contents.
320 bool ParseEscapedString(std::string &Data);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000321
322 const MCExpr *ApplyModifierToExpr(const MCExpr *E,
323 MCSymbolRefExpr::VariantKind Variant);
Rafael Espindola2ec304c2012-05-12 16:31:10 +0000324
Rafael Espindola761cb062012-06-03 23:57:14 +0000325 // Macro-like directives
326 Macro *ParseMacroLikeBody(SMLoc DirectiveLoc);
327 void InstantiateMacroLikeBody(Macro *M, SMLoc DirectiveLoc,
328 raw_svector_ostream &OS);
329 bool ParseDirectiveRept(SMLoc DirectiveLoc); // ".rept"
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +0000330 bool ParseDirectiveIrp(SMLoc DirectiveLoc); // ".irp"
Rafael Espindolafc9216e2012-06-16 18:03:25 +0000331 bool ParseDirectiveIrpc(SMLoc DirectiveLoc); // ".irpc"
Rafael Espindola761cb062012-06-03 23:57:14 +0000332 bool ParseDirectiveEndr(SMLoc DirectiveLoc); // ".endr"
Chad Rosierb1f8c132012-10-18 15:49:34 +0000333
Eli Friedman2128aae2012-10-22 23:58:19 +0000334 // "_emit"
335 bool ParseDirectiveEmit(SMLoc DirectiveLoc, ParseStatementInfo &Info);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000336};
337
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000338/// \brief Generic implementations of directive handling, etc. which is shared
339/// (or the default, at least) for all assembler parser.
340class GenericAsmParser : public MCAsmParserExtension {
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000341 template<bool (GenericAsmParser::*Handler)(StringRef, SMLoc)>
342 void AddDirectiveHandler(StringRef Directive) {
343 getParser().AddDirectiveHandler(this, Directive,
344 HandleDirective<GenericAsmParser, Handler>);
345 }
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000346public:
347 GenericAsmParser() {}
348
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000349 AsmParser &getParser() {
350 return (AsmParser&) this->MCAsmParserExtension::getParser();
351 }
352
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000353 virtual void Initialize(MCAsmParser &Parser) {
354 // Call the base implementation.
355 this->MCAsmParserExtension::Initialize(Parser);
356
357 // Debugging directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000358 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveFile>(".file");
359 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLine>(".line");
360 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLoc>(".loc");
Daniel Dunbar138abae2010-10-16 04:56:42 +0000361 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveStabs>(".stabs");
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000362
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000363 // CFI directives.
Rafael Espindolaf9efd832011-05-10 01:10:18 +0000364 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFISections>(
365 ".cfi_sections");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000366 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIStartProc>(
367 ".cfi_startproc");
368 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIEndProc>(
369 ".cfi_endproc");
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000370 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfa>(
371 ".cfi_def_cfa");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000372 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaOffset>(
373 ".cfi_def_cfa_offset");
Rafael Espindola53abbe52011-04-11 20:29:16 +0000374 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIAdjustCfaOffset>(
375 ".cfi_adjust_cfa_offset");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000376 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaRegister>(
377 ".cfi_def_cfa_register");
378 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIOffset>(
379 ".cfi_offset");
Rafael Espindolaa61842b2011-04-11 21:49:50 +0000380 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIRelOffset>(
381 ".cfi_rel_offset");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000382 AddDirectiveHandler<
383 &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_personality");
384 AddDirectiveHandler<
385 &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_lsda");
Rafael Espindolafe024d02010-12-28 18:36:23 +0000386 AddDirectiveHandler<
387 &GenericAsmParser::ParseDirectiveCFIRememberState>(".cfi_remember_state");
388 AddDirectiveHandler<
389 &GenericAsmParser::ParseDirectiveCFIRestoreState>(".cfi_restore_state");
Rafael Espindolac5754392011-04-12 15:31:05 +0000390 AddDirectiveHandler<
391 &GenericAsmParser::ParseDirectiveCFISameValue>(".cfi_same_value");
Rafael Espindola6f0b1812011-12-29 20:24:47 +0000392 AddDirectiveHandler<
Rafael Espindolaed23bdb2011-12-29 21:43:03 +0000393 &GenericAsmParser::ParseDirectiveCFIRestore>(".cfi_restore");
394 AddDirectiveHandler<
Rafael Espindola6f0b1812011-12-29 20:24:47 +0000395 &GenericAsmParser::ParseDirectiveCFIEscape>(".cfi_escape");
Rafael Espindola16d7d432012-01-23 21:51:52 +0000396 AddDirectiveHandler<
397 &GenericAsmParser::ParseDirectiveCFISignalFrame>(".cfi_signal_frame");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000398
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000399 // Macro directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000400 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
401 ".macros_on");
402 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
403 ".macros_off");
404 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacro>(".macro");
405 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endm");
406 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endmacro");
Benjamin Kramerbc3b27c2012-05-12 11:21:46 +0000407 AddDirectiveHandler<&GenericAsmParser::ParseDirectivePurgeMacro>(".purgem");
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000408
409 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".sleb128");
410 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".uleb128");
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000411 }
412
Roman Divacky54b0f4f2011-01-27 17:16:37 +0000413 bool ParseRegisterOrRegisterNumber(int64_t &Register, SMLoc DirectiveLoc);
414
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000415 bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
416 bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
417 bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar138abae2010-10-16 04:56:42 +0000418 bool ParseDirectiveStabs(StringRef, SMLoc DirectiveLoc);
Rafael Espindolaf9efd832011-05-10 01:10:18 +0000419 bool ParseDirectiveCFISections(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000420 bool ParseDirectiveCFIStartProc(StringRef, SMLoc DirectiveLoc);
421 bool ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc);
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000422 bool ParseDirectiveCFIDefCfa(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000423 bool ParseDirectiveCFIDefCfaOffset(StringRef, SMLoc DirectiveLoc);
Rafael Espindola53abbe52011-04-11 20:29:16 +0000424 bool ParseDirectiveCFIAdjustCfaOffset(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000425 bool ParseDirectiveCFIDefCfaRegister(StringRef, SMLoc DirectiveLoc);
426 bool ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc);
Rafael Espindolaa61842b2011-04-11 21:49:50 +0000427 bool ParseDirectiveCFIRelOffset(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000428 bool ParseDirectiveCFIPersonalityOrLsda(StringRef, SMLoc DirectiveLoc);
Rafael Espindolafe024d02010-12-28 18:36:23 +0000429 bool ParseDirectiveCFIRememberState(StringRef, SMLoc DirectiveLoc);
430 bool ParseDirectiveCFIRestoreState(StringRef, SMLoc DirectiveLoc);
Rafael Espindolac5754392011-04-12 15:31:05 +0000431 bool ParseDirectiveCFISameValue(StringRef, SMLoc DirectiveLoc);
Rafael Espindolaed23bdb2011-12-29 21:43:03 +0000432 bool ParseDirectiveCFIRestore(StringRef, SMLoc DirectiveLoc);
Rafael Espindola6f0b1812011-12-29 20:24:47 +0000433 bool ParseDirectiveCFIEscape(StringRef, SMLoc DirectiveLoc);
Rafael Espindola16d7d432012-01-23 21:51:52 +0000434 bool ParseDirectiveCFISignalFrame(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000435
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000436 bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000437 bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
438 bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
Benjamin Kramerbc3b27c2012-05-12 11:21:46 +0000439 bool ParseDirectivePurgeMacro(StringRef, SMLoc DirectiveLoc);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000440
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000441 bool ParseDirectiveLEB128(StringRef, SMLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000442};
443
444}
445
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000446namespace llvm {
447
448extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000449extern MCAsmParserExtension *createELFAsmParser();
Michael J. Spencer7d490042010-10-09 11:01:07 +0000450extern MCAsmParserExtension *createCOFFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000451
452}
453
Chris Lattneraaec2052010-01-19 19:46:13 +0000454enum { DEFAULT_ADDRSPACE = 0 };
455
Jim Grosbach1b84cce2011-08-16 18:33:49 +0000456AsmParser::AsmParser(SourceMgr &_SM, MCContext &_Ctx,
Daniel Dunbar9186fa62010-07-01 20:41:56 +0000457 MCStreamer &_Out, const MCAsmInfo &_MAI)
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000458 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), MAI(_MAI), SrcMgr(_SM),
Rafael Espindola5d7dcd32011-04-12 18:53:30 +0000459 GenericParser(new GenericAsmParser), PlatformParser(0),
Preston Gurd7b6f2032012-09-19 20:36:12 +0000460 CurBuffer(0), MacrosEnabled(true), CppHashLineNumber(0),
Eli Friedman2128aae2012-10-22 23:58:19 +0000461 AssemblerDialect(~0U), IsDarwin(false), ParsingInlineAsm(false) {
Benjamin Kramer04a04262011-10-16 10:48:29 +0000462 // Save the old handler.
463 SavedDiagHandler = SrcMgr.getDiagHandler();
464 SavedDiagContext = SrcMgr.getDiagContext();
465 // Set our own handler which calls the saved handler.
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000466 SrcMgr.setDiagHandler(DiagHandler, this);
Sean Callananfd0b0282010-01-21 00:19:58 +0000467 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000468
469 // Initialize the generic parser.
470 GenericParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000471
472 // Initialize the platform / file format parser.
473 //
474 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
475 // created.
Michael J. Spencer7d490042010-10-09 11:01:07 +0000476 if (_MAI.hasMicrosoftFastStdCallMangling()) {
477 PlatformParser = createCOFFAsmParser();
478 PlatformParser->Initialize(*this);
479 } else if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000480 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000481 PlatformParser->Initialize(*this);
Preston Gurd7b6f2032012-09-19 20:36:12 +0000482 IsDarwin = true;
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000483 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000484 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000485 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000486 }
Chris Lattnerebb89b42009-09-27 21:16:52 +0000487}
488
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000489AsmParser::~AsmParser() {
Daniel Dunbar56491302010-07-29 01:51:55 +0000490 assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
491
492 // Destroy any macros.
493 for (StringMap<Macro*>::iterator it = MacroMap.begin(),
494 ie = MacroMap.end(); it != ie; ++it)
495 delete it->getValue();
496
Daniel Dunbare4749702010-07-12 18:12:02 +0000497 delete PlatformParser;
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000498 delete GenericParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000499}
500
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000501void AsmParser::PrintMacroInstantiations() {
502 // Print the active macro instantiation stack.
503 for (std::vector<MacroInstantiation*>::const_reverse_iterator
504 it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000505 PrintMessage((*it)->InstantiationLoc, SourceMgr::DK_Note,
506 "while in macro instantiation");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000507}
508
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000509bool AsmParser::Warning(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +0000510 if (FatalAssemblerWarnings)
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000511 return Error(L, Msg, Ranges);
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000512 PrintMessage(L, SourceMgr::DK_Warning, Msg, Ranges);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000513 PrintMacroInstantiations();
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +0000514 return false;
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000515}
516
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000517bool AsmParser::Error(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000518 HadError = true;
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000519 PrintMessage(L, SourceMgr::DK_Error, Msg, Ranges);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000520 PrintMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000521 return true;
522}
523
Sean Callananfd0b0282010-01-21 00:19:58 +0000524bool AsmParser::EnterIncludeFile(const std::string &Filename) {
Joerg Sonnenbergerdd137902011-06-01 13:10:15 +0000525 std::string IncludedFile;
526 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
Sean Callananfd0b0282010-01-21 00:19:58 +0000527 if (NewBuf == -1)
528 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000529
Sean Callananfd0b0282010-01-21 00:19:58 +0000530 CurBuffer = NewBuf;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000531
Sean Callananfd0b0282010-01-21 00:19:58 +0000532 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000533
Sean Callananfd0b0282010-01-21 00:19:58 +0000534 return false;
535}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000536
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000537/// Process the specified .incbin file by seaching for it in the include paths
Benjamin Kramerd9b0b022012-06-02 10:20:22 +0000538/// then just emitting the byte contents of the file to the streamer. This
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000539/// returns true on failure.
540bool AsmParser::ProcessIncbinFile(const std::string &Filename) {
541 std::string IncludedFile;
542 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
543 if (NewBuf == -1)
544 return true;
545
Kevin Enderbyc3fc3132011-12-14 22:34:45 +0000546 // Pick up the bytes from the file and emit them.
Kevin Enderbydac29532011-12-15 00:00:27 +0000547 getStreamer().EmitBytes(SrcMgr.getMemoryBuffer(NewBuf)->getBuffer(),
548 DEFAULT_ADDRSPACE);
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000549 return false;
550}
551
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000552void AsmParser::JumpToLoc(SMLoc Loc) {
553 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
554 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
555}
556
Sean Callananfd0b0282010-01-21 00:19:58 +0000557const AsmToken &AsmParser::Lex() {
558 const AsmToken *tok = &Lexer.Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000559
Sean Callananfd0b0282010-01-21 00:19:58 +0000560 if (tok->is(AsmToken::Eof)) {
561 // If this is the end of an included file, pop the parent file off the
562 // include stack.
563 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
564 if (ParentIncludeLoc != SMLoc()) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000565 JumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000566 tok = &Lexer.Lex();
567 }
568 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000569
Sean Callananfd0b0282010-01-21 00:19:58 +0000570 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000571 Error(Lexer.getErrLoc(), Lexer.getErr());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000572
Sean Callananfd0b0282010-01-21 00:19:58 +0000573 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000574}
575
Chris Lattner79180e22010-04-05 23:15:42 +0000576bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000577 // Create the initial section, if requested.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000578 if (!NoInitialTextSection)
Rafael Espindolad80781b2010-09-15 21:48:40 +0000579 Out.InitSections();
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000580
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000581 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000582 Lex();
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000583
584 HadError = false;
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000585 AsmCond StartingCondState = TheCondState;
586
Kevin Enderby613b7572011-11-01 22:27:22 +0000587 // If we are generating dwarf for assembly source files save the initial text
588 // section and generate a .file directive.
589 if (getContext().getGenDwarfForAssembly()) {
590 getContext().setGenDwarfSection(getStreamer().getCurrentSection());
Kevin Enderby94c2e852011-12-09 18:09:40 +0000591 MCSymbol *SectionStartSym = getContext().CreateTempSymbol();
592 getStreamer().EmitLabel(SectionStartSym);
593 getContext().setGenDwarfSectionStartSym(SectionStartSym);
Kevin Enderby613b7572011-11-01 22:27:22 +0000594 getStreamer().EmitDwarfFileDirective(getContext().nextGenDwarfFileNumber(),
595 StringRef(), SrcMgr.getMemoryBuffer(CurBuffer)->getBufferIdentifier());
596 }
597
Chris Lattnerb717fb02009-07-02 21:53:43 +0000598 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000599 while (Lexer.isNot(AsmToken::Eof)) {
Eli Friedman2128aae2012-10-22 23:58:19 +0000600 ParseStatementInfo Info;
601 if (!ParseStatement(Info)) continue;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000602
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000603 // We had an error, validate that one was emitted and recover by skipping to
604 // the next line.
605 assert(HadError && "Parse statement returned an error, but none emitted!");
Chris Lattnerb717fb02009-07-02 21:53:43 +0000606 EatToEndOfStatement();
607 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000608
609 if (TheCondState.TheCond != StartingCondState.TheCond ||
610 TheCondState.Ignore != StartingCondState.Ignore)
611 return TokError("unmatched .ifs or .elses");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000612
613 // Check to see there are no empty DwarfFile slots.
614 const std::vector<MCDwarfFile *> &MCDwarfFiles =
615 getContext().getMCDwarfFiles();
616 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000617 if (!MCDwarfFiles[i])
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000618 TokError("unassigned file number: " + Twine(i) + " for .file directives");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000619 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000620
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000621 // Check to see that all assembler local symbols were actually defined.
622 // Targets that don't do subsections via symbols may not want this, though,
623 // so conservatively exclude them. Only do this if we're finalizing, though,
624 // as otherwise we won't necessarilly have seen everything yet.
625 if (!NoFinalize && MAI.hasSubsectionsViaSymbols()) {
626 const MCContext::SymbolTable &Symbols = getContext().getSymbols();
627 for (MCContext::SymbolTable::const_iterator i = Symbols.begin(),
628 e = Symbols.end();
629 i != e; ++i) {
630 MCSymbol *Sym = i->getValue();
631 // Variable symbols may not be marked as defined, so check those
632 // explicitly. If we know it's a variable, we have a definition for
633 // the purposes of this check.
634 if (Sym->isTemporary() && !Sym->isVariable() && !Sym->isDefined())
635 // FIXME: We would really like to refer back to where the symbol was
636 // first referenced for a source location. We need to add something
637 // to track that. Currently, we just point to the end of the file.
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000638 PrintMessage(getLexer().getLoc(), SourceMgr::DK_Error,
639 "assembler local symbol '" + Sym->getName() +
640 "' not defined");
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000641 }
642 }
643
644
Chris Lattner79180e22010-04-05 23:15:42 +0000645 // Finalize the output stream if there are no errors and if the client wants
646 // us to.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000647 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000648 Out.Finish();
649
Chris Lattnerb717fb02009-07-02 21:53:43 +0000650 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000651}
652
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000653void AsmParser::CheckForValidSection() {
Chad Rosier84125ca2012-10-13 00:26:04 +0000654 if (!ParsingInlineAsm && !getStreamer().getCurrentSection()) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000655 TokError("expected section directive before assembly directive");
656 Out.SwitchSection(Ctx.getMachOSection(
657 "__TEXT", "__text",
658 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
659 0, SectionKind::getText()));
660 }
661}
662
Chris Lattner2cf5f142009-06-22 01:29:09 +0000663/// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
664void AsmParser::EatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000665 while (Lexer.isNot(AsmToken::EndOfStatement) &&
666 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000667 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000668
Chris Lattner2cf5f142009-06-22 01:29:09 +0000669 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000670 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000671 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000672}
673
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000674StringRef AsmParser::ParseStringToEndOfStatement() {
675 const char *Start = getTok().getLoc().getPointer();
676
677 while (Lexer.isNot(AsmToken::EndOfStatement) &&
678 Lexer.isNot(AsmToken::Eof))
679 Lex();
680
681 const char *End = getTok().getLoc().getPointer();
682 return StringRef(Start, End - Start);
683}
Chris Lattnerc4193832009-06-22 05:51:26 +0000684
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000685StringRef AsmParser::ParseStringToComma() {
686 const char *Start = getTok().getLoc().getPointer();
687
688 while (Lexer.isNot(AsmToken::EndOfStatement) &&
689 Lexer.isNot(AsmToken::Comma) &&
690 Lexer.isNot(AsmToken::Eof))
691 Lex();
692
693 const char *End = getTok().getLoc().getPointer();
694 return StringRef(Start, End - Start);
695}
696
Chris Lattner74ec1a32009-06-22 06:32:03 +0000697/// ParseParenExpr - Parse a paren expression and return it.
698/// NOTE: This assumes the leading '(' has already been consumed.
699///
700/// parenexpr ::= expr)
701///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000702bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner74ec1a32009-06-22 06:32:03 +0000703 if (ParseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000704 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000705 return TokError("expected ')' in parentheses expression");
Chris Lattnerb4307b32010-01-15 19:28:38 +0000706 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000707 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000708 return false;
709}
Chris Lattnerc4193832009-06-22 05:51:26 +0000710
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000711/// ParseBracketExpr - Parse a bracket expression and return it.
712/// NOTE: This assumes the leading '[' has already been consumed.
713///
714/// bracketexpr ::= expr]
715///
716bool AsmParser::ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc) {
717 if (ParseExpression(Res)) return true;
718 if (Lexer.isNot(AsmToken::RBrac))
719 return TokError("expected ']' in brackets expression");
720 EndLoc = Lexer.getLoc();
721 Lex();
722 return false;
723}
724
Chris Lattner74ec1a32009-06-22 06:32:03 +0000725/// ParsePrimaryExpr - Parse a primary expression and return it.
726/// primaryexpr ::= (parenexpr
727/// primaryexpr ::= symbol
728/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000729/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000730/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000731bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000732 switch (Lexer.getKind()) {
733 default:
734 return TokError("unknown token in expression");
Eric Christopherf3755b22011-04-12 00:03:13 +0000735 // If we have an error assume that we've already handled it.
736 case AsmToken::Error:
737 return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000738 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000739 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000740 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000741 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000742 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000743 return false;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000744 case AsmToken::Dollar:
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000745 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000746 case AsmToken::Identifier: {
Daniel Dunbare17edff2010-08-24 19:13:42 +0000747 EndLoc = Lexer.getLoc();
748
749 StringRef Identifier;
750 if (ParseIdentifier(Identifier))
Jim Grosbach95ae09a2011-05-23 20:36:04 +0000751 return true;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000752
Daniel Dunbarfffff912009-10-16 01:34:54 +0000753 // This is a symbol reference.
Daniel Dunbare17edff2010-08-24 19:13:42 +0000754 std::pair<StringRef, StringRef> Split = Identifier.split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000755 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000756
757 // Lookup the symbol variant if used.
758 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000759 if (Split.first.size() != Identifier.size()) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000760 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000761 if (Variant == MCSymbolRefExpr::VK_Invalid) {
762 Variant = MCSymbolRefExpr::VK_None;
Jim Grosbach4121e8a2011-01-19 23:06:07 +0000763 return TokError("invalid variant '" + Split.second + "'");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000764 }
765 }
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000766
Daniel Dunbarfffff912009-10-16 01:34:54 +0000767 // If this is an absolute variable reference, substitute it now to preserve
768 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000769 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000770 if (Variant)
Daniel Dunbar603abd52010-11-08 17:53:02 +0000771 return Error(EndLoc, "unexpected modifier on variable reference");
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000772
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000773 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000774 return false;
775 }
776
777 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000778 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000779 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000780 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000781 case AsmToken::Integer: {
782 SMLoc Loc = getTok().getLoc();
783 int64_t IntVal = getTok().getIntVal();
784 Res = MCConstantExpr::Create(IntVal, getContext());
Chris Lattnerb4307b32010-01-15 19:28:38 +0000785 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000786 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000787 // Look for 'b' or 'f' following an Integer as a directional label
788 if (Lexer.getKind() == AsmToken::Identifier) {
789 StringRef IDVal = getTok().getString();
790 if (IDVal == "f" || IDVal == "b"){
791 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
792 IDVal == "f" ? 1 : 0);
793 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
794 getContext());
Benjamin Kramer29739e72012-05-12 16:52:21 +0000795 if (IDVal == "b" && Sym->isUndefined())
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000796 return Error(Loc, "invalid reference to undefined symbol");
797 EndLoc = Lexer.getLoc();
798 Lex(); // Eat identifier.
799 }
800 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000801 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000802 }
Bill Wendling69c4ef32011-01-25 21:26:41 +0000803 case AsmToken::Real: {
804 APFloat RealVal(APFloat::IEEEdouble, getTok().getString());
Bob Wilson720b9182011-02-03 23:17:47 +0000805 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
Bill Wendling69c4ef32011-01-25 21:26:41 +0000806 Res = MCConstantExpr::Create(IntVal, getContext());
807 Lex(); // Eat token.
808 return false;
809 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000810 case AsmToken::Dot: {
811 // This is a '.' reference, which references the current PC. Emit a
812 // temporary label to the streamer and refer to it.
813 MCSymbol *Sym = Ctx.CreateTempSymbol();
814 Out.EmitLabel(Sym);
815 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
816 EndLoc = Lexer.getLoc();
817 Lex(); // Eat identifier.
818 return false;
819 }
Daniel Dunbar3f872332009-07-28 16:08:33 +0000820 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000821 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000822 return ParseParenExpr(Res, EndLoc);
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000823 case AsmToken::LBrac:
824 if (!PlatformParser->HasBracketExpressions())
825 return TokError("brackets expression not supported on this target");
826 Lex(); // Eat the '['.
827 return ParseBracketExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000828 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000829 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000830 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000831 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000832 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000833 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000834 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000835 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000836 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000837 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000838 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000839 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000840 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000841 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000842 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000843 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000844 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000845 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000846 }
847}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000848
Chris Lattnerb4307b32010-01-15 19:28:38 +0000849bool AsmParser::ParseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000850 SMLoc EndLoc;
851 return ParseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000852}
853
Daniel Dunbarcceba832010-09-17 02:47:07 +0000854const MCExpr *
855AsmParser::ApplyModifierToExpr(const MCExpr *E,
856 MCSymbolRefExpr::VariantKind Variant) {
857 // Recurse over the given expression, rebuilding it to apply the given variant
858 // if there is exactly one symbol.
859 switch (E->getKind()) {
860 case MCExpr::Target:
861 case MCExpr::Constant:
862 return 0;
863
864 case MCExpr::SymbolRef: {
865 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
866
867 if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
868 TokError("invalid variant on expression '" +
869 getTok().getIdentifier() + "' (already modified)");
870 return E;
871 }
872
873 return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
874 }
875
876 case MCExpr::Unary: {
877 const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
878 const MCExpr *Sub = ApplyModifierToExpr(UE->getSubExpr(), Variant);
879 if (!Sub)
880 return 0;
881 return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
882 }
883
884 case MCExpr::Binary: {
885 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
886 const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
887 const MCExpr *RHS = ApplyModifierToExpr(BE->getRHS(), Variant);
888
889 if (!LHS && !RHS)
890 return 0;
891
892 if (!LHS) LHS = BE->getLHS();
893 if (!RHS) RHS = BE->getRHS();
894
895 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
896 }
897 }
Daniel Dunbarf3f95c92010-09-17 16:34:24 +0000898
Craig Topper85814382012-02-07 05:05:23 +0000899 llvm_unreachable("Invalid expression kind!");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000900}
901
Chris Lattner74ec1a32009-06-22 06:32:03 +0000902/// ParseExpression - Parse an expression and return it.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000903///
Jim Grosbachfbe16812011-08-20 16:24:13 +0000904/// expr ::= expr &&,|| expr -> lowest.
905/// expr ::= expr |,^,&,! expr
906/// expr ::= expr ==,!=,<>,<,<=,>,>= expr
907/// expr ::= expr <<,>> expr
908/// expr ::= expr +,- expr
909/// expr ::= expr *,/,% expr -> highest.
Chris Lattner74ec1a32009-06-22 06:32:03 +0000910/// expr ::= primaryexpr
911///
Chris Lattner54482b42010-01-15 19:39:23 +0000912bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000913 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000914 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000915 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
916 return true;
917
Daniel Dunbarcceba832010-09-17 02:47:07 +0000918 // As a special case, we support 'a op b @ modifier' by rewriting the
919 // expression to include the modifier. This is inefficient, but in general we
920 // expect users to use 'a@modifier op b'.
921 if (Lexer.getKind() == AsmToken::At) {
922 Lex();
923
924 if (Lexer.isNot(AsmToken::Identifier))
925 return TokError("unexpected symbol modifier following '@'");
926
927 MCSymbolRefExpr::VariantKind Variant =
928 MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
929 if (Variant == MCSymbolRefExpr::VK_Invalid)
930 return TokError("invalid variant '" + getTok().getIdentifier() + "'");
931
932 const MCExpr *ModifiedRes = ApplyModifierToExpr(Res, Variant);
933 if (!ModifiedRes) {
934 return TokError("invalid modifier '" + getTok().getIdentifier() +
935 "' (no symbols present)");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000936 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000937
Daniel Dunbarcceba832010-09-17 02:47:07 +0000938 Res = ModifiedRes;
939 Lex();
940 }
941
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000942 // Try to constant fold it up front, if possible.
943 int64_t Value;
944 if (Res->EvaluateAsAbsolute(Value))
945 Res = MCConstantExpr::Create(Value, getContext());
946
947 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000948}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000949
Chris Lattnerb4307b32010-01-15 19:28:38 +0000950bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000951 Res = 0;
952 return ParseParenExpr(Res, EndLoc) ||
953 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000954}
955
Daniel Dunbar475839e2009-06-29 20:37:27 +0000956bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000957 const MCExpr *Expr;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000958
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000959 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar475839e2009-06-29 20:37:27 +0000960 if (ParseExpression(Expr))
961 return true;
962
Daniel Dunbare00b0112009-10-16 01:57:52 +0000963 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000964 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +0000965
966 return false;
967}
968
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000969static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000970 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000971 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000972 default:
973 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000974
Jim Grosbachfbe16812011-08-20 16:24:13 +0000975 // Lowest Precedence: &&, ||
Daniel Dunbar3f872332009-07-28 16:08:33 +0000976 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000977 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000978 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000979 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000980 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000981 return 1;
982
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000983
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000984 // Low Precedence: |, &, ^
Daniel Dunbar475839e2009-06-29 20:37:27 +0000985 //
986 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +0000987 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000988 Kind = MCBinaryExpr::Or;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000989 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000990 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000991 Kind = MCBinaryExpr::Xor;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000992 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000993 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000994 Kind = MCBinaryExpr::And;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000995 return 2;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000996
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000997 // Low Intermediate Precedence: ==, !=, <>, <, <=, >, >=
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000998 case AsmToken::EqualEqual:
999 Kind = MCBinaryExpr::EQ;
1000 return 3;
1001 case AsmToken::ExclaimEqual:
1002 case AsmToken::LessGreater:
1003 Kind = MCBinaryExpr::NE;
1004 return 3;
1005 case AsmToken::Less:
1006 Kind = MCBinaryExpr::LT;
1007 return 3;
1008 case AsmToken::LessEqual:
1009 Kind = MCBinaryExpr::LTE;
1010 return 3;
1011 case AsmToken::Greater:
1012 Kind = MCBinaryExpr::GT;
1013 return 3;
1014 case AsmToken::GreaterEqual:
1015 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001016 return 3;
1017
Jim Grosbachfbe16812011-08-20 16:24:13 +00001018 // Intermediate Precedence: <<, >>
1019 case AsmToken::LessLess:
1020 Kind = MCBinaryExpr::Shl;
1021 return 4;
1022 case AsmToken::GreaterGreater:
1023 Kind = MCBinaryExpr::Shr;
1024 return 4;
1025
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001026 // High Intermediate Precedence: +, -
1027 case AsmToken::Plus:
1028 Kind = MCBinaryExpr::Add;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001029 return 5;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001030 case AsmToken::Minus:
1031 Kind = MCBinaryExpr::Sub;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001032 return 5;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +00001033
Jim Grosbachfbe16812011-08-20 16:24:13 +00001034 // Highest Precedence: *, /, %
Daniel Dunbar3f872332009-07-28 16:08:33 +00001035 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001036 Kind = MCBinaryExpr::Mul;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001037 return 6;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001038 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001039 Kind = MCBinaryExpr::Div;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001040 return 6;
Daniel Dunbar3f872332009-07-28 16:08:33 +00001041 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001042 Kind = MCBinaryExpr::Mod;
Jim Grosbachfbe16812011-08-20 16:24:13 +00001043 return 6;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001044 }
1045}
1046
1047
1048/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
1049/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +00001050bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
1051 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001052 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001053 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001054 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001055
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001056 // If the next token is lower precedence than we are allowed to eat, return
1057 // successfully with what we ate already.
1058 if (TokPrec < Precedence)
1059 return false;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001060
Sean Callanan79ed1a82010-01-19 20:22:31 +00001061 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001062
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001063 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +00001064 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +00001065 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001066
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001067 // If BinOp binds less tightly with RHS than the operator after RHS, let
1068 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +00001069 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001070 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001071 if (TokPrec < NextTokPrec) {
Chris Lattnerb4307b32010-01-15 19:28:38 +00001072 if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001073 }
1074
Daniel Dunbar475839e2009-06-29 20:37:27 +00001075 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +00001076 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001077 }
1078}
1079
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001080/// ParseStatement:
1081/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +00001082/// ::= Label* Directive ...Operands... EndOfStatement
1083/// ::= Label* Identifier OperandList* EndOfStatement
Eli Friedman2128aae2012-10-22 23:58:19 +00001084bool AsmParser::ParseStatement(ParseStatementInfo &Info) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001085 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +00001086 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001087 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001088 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001089 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001090
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001091 // Statements always start with an identifier or are a full line comment.
Sean Callanan18b83232010-01-19 21:44:56 +00001092 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +00001093 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001094 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001095 int64_t LocalLabelVal = -1;
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001096 // A full line comment is a '#' as the first token.
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001097 if (Lexer.is(AsmToken::Hash))
1098 return ParseCppHashLineFilenameComment(IDLoc);
Daniel Dunbar0143ac12011-03-25 17:47:14 +00001099
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001100 // Allow an integer followed by a ':' as a directional local label.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001101 if (Lexer.is(AsmToken::Integer)) {
1102 LocalLabelVal = getTok().getIntVal();
1103 if (LocalLabelVal < 0) {
1104 if (!TheCondState.Ignore)
1105 return TokError("unexpected token at start of statement");
1106 IDVal = "";
1107 }
1108 else {
1109 IDVal = getTok().getString();
1110 Lex(); // Consume the integer token to be used as an identifier token.
1111 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +00001112 if (!TheCondState.Ignore)
1113 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001114 }
1115 }
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001116
1117 } else if (Lexer.is(AsmToken::Dot)) {
1118 // Treat '.' as a valid identifier in this context.
1119 Lex();
1120 IDVal = ".";
1121
Daniel Dunbar0143ac12011-03-25 17:47:14 +00001122 } else if (ParseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +00001123 if (!TheCondState.Ignore)
1124 return TokError("unexpected token at start of statement");
1125 IDVal = "";
1126 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001127
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001128
Chris Lattner7834fac2010-04-17 18:14:27 +00001129 // Handle conditional assembly here before checking for skipping. We
1130 // have to do this so that .endif isn't skipped in a ".if 0" block for
1131 // example.
1132 if (IDVal == ".if")
1133 return ParseDirectiveIf(IDLoc);
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00001134 if (IDVal == ".ifb")
1135 return ParseDirectiveIfb(IDLoc, true);
1136 if (IDVal == ".ifnb")
1137 return ParseDirectiveIfb(IDLoc, false);
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00001138 if (IDVal == ".ifc")
1139 return ParseDirectiveIfc(IDLoc, true);
1140 if (IDVal == ".ifnc")
1141 return ParseDirectiveIfc(IDLoc, false);
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00001142 if (IDVal == ".ifdef")
1143 return ParseDirectiveIfdef(IDLoc, true);
1144 if (IDVal == ".ifndef" || IDVal == ".ifnotdef")
1145 return ParseDirectiveIfdef(IDLoc, false);
Chris Lattner7834fac2010-04-17 18:14:27 +00001146 if (IDVal == ".elseif")
1147 return ParseDirectiveElseIf(IDLoc);
1148 if (IDVal == ".else")
1149 return ParseDirectiveElse(IDLoc);
1150 if (IDVal == ".endif")
1151 return ParseDirectiveEndIf(IDLoc);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001152
Chris Lattner7834fac2010-04-17 18:14:27 +00001153 // If we are in a ".if 0" block, ignore this statement.
Chad Rosier17feeec2012-10-20 00:47:08 +00001154 if (TheCondState.Ignore) {
Chris Lattner7834fac2010-04-17 18:14:27 +00001155 EatToEndOfStatement();
1156 return false;
1157 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001158
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001159 // FIXME: Recurse on local labels?
1160
1161 // See what kind of statement we have.
1162 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001163 case AsmToken::Colon: {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001164 CheckForValidSection();
1165
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001166 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001167 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001168
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001169 // Diagnose attempt to use '.' as a label.
1170 if (IDVal == ".")
1171 return Error(IDLoc, "invalid use of pseudo-symbol '.' as a label");
1172
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001173 // Diagnose attempt to use a variable as a label.
1174 //
1175 // FIXME: Diagnostics. Note the location of the definition as a label.
1176 // FIXME: This doesn't diagnose assignment to a symbol which has been
1177 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001178 MCSymbol *Sym;
1179 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001180 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001181 else
1182 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +00001183 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001184 return Error(IDLoc, "invalid symbol redefinition");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001185
Daniel Dunbar959fd882009-08-26 22:13:22 +00001186 // Emit the label.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001187 Out.EmitLabel(Sym);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001188
Kevin Enderby94c2e852011-12-09 18:09:40 +00001189 // If we are generating dwarf for assembly source files then gather the
Kevin Enderby11c2def2012-01-10 21:12:34 +00001190 // info to make a dwarf label entry for this label if needed.
Kevin Enderby94c2e852011-12-09 18:09:40 +00001191 if (getContext().getGenDwarfForAssembly())
Kevin Enderby11c2def2012-01-10 21:12:34 +00001192 MCGenDwarfLabelEntry::Make(Sym, &getStreamer(), getSourceManager(),
1193 IDLoc);
Kevin Enderby94c2e852011-12-09 18:09:40 +00001194
Daniel Dunbar01777ff2010-05-23 18:36:34 +00001195 // Consume any end of statement token, if present, to avoid spurious
1196 // AddBlankLine calls().
1197 if (Lexer.is(AsmToken::EndOfStatement)) {
1198 Lex();
1199 if (Lexer.is(AsmToken::Eof))
1200 return false;
1201 }
1202
Eli Friedman2128aae2012-10-22 23:58:19 +00001203 return false;
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001204 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001205
Daniel Dunbar3f872332009-07-28 16:08:33 +00001206 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001207 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +00001208 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001209
Nico Weber4c4c7322011-01-28 03:04:41 +00001210 return ParseAssignment(IDVal, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001211
1212 default: // Normal instruction or directive.
1213 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001214 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001215
1216 // If macros are enabled, check to see if this is a macro instantiation.
1217 if (MacrosEnabled)
1218 if (const Macro *M = MacroMap.lookup(IDVal))
1219 return HandleMacroEntry(IDVal, IDLoc, M);
1220
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001221 // Otherwise, we have a normal instruction or directive.
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001222 if (IDVal[0] == '.' && IDVal != ".") {
Akira Hatanaka3b02d952012-07-05 19:09:33 +00001223
1224 // Target hook for parsing target specific directives.
1225 if (!getTargetParser().ParseDirective(ID))
1226 return false;
1227
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001228 // Assembler features
Roman Divacky50e7a782010-10-28 16:22:58 +00001229 if (IDVal == ".set" || IDVal == ".equ")
Nico Weber4c4c7322011-01-28 03:04:41 +00001230 return ParseDirectiveSet(IDVal, true);
1231 if (IDVal == ".equiv")
1232 return ParseDirectiveSet(IDVal, false);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001233
Daniel Dunbara0d14262009-06-24 23:30:00 +00001234 // Data directives
1235
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001236 if (IDVal == ".ascii")
Rafael Espindola787c3372010-10-28 20:02:27 +00001237 return ParseDirectiveAscii(IDVal, false);
1238 if (IDVal == ".asciz" || IDVal == ".string")
1239 return ParseDirectiveAscii(IDVal, true);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001240
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001241 if (IDVal == ".byte")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001242 return ParseDirectiveValue(1);
Kevin Enderby9c656452009-09-10 20:51:44 +00001243 if (IDVal == ".short")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001244 return ParseDirectiveValue(2);
Rafael Espindolacc3acee2010-11-01 15:29:07 +00001245 if (IDVal == ".value")
1246 return ParseDirectiveValue(2);
Rafael Espindola110f22a2010-11-17 16:15:42 +00001247 if (IDVal == ".2byte")
1248 return ParseDirectiveValue(2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001249 if (IDVal == ".long")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001250 return ParseDirectiveValue(4);
Rafael Espindola435279b2010-11-17 16:24:40 +00001251 if (IDVal == ".int")
1252 return ParseDirectiveValue(4);
Rafael Espindola110f22a2010-11-17 16:15:42 +00001253 if (IDVal == ".4byte")
1254 return ParseDirectiveValue(4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001255 if (IDVal == ".quad")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001256 return ParseDirectiveValue(8);
Rafael Espindola110f22a2010-11-17 16:15:42 +00001257 if (IDVal == ".8byte")
1258 return ParseDirectiveValue(8);
Roman Divacky14e66552011-01-28 14:20:32 +00001259 if (IDVal == ".single" || IDVal == ".float")
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001260 return ParseDirectiveRealValue(APFloat::IEEEsingle);
1261 if (IDVal == ".double")
1262 return ParseDirectiveRealValue(APFloat::IEEEdouble);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001263
Eli Friedman5d68ec22010-07-19 04:17:25 +00001264 if (IDVal == ".align") {
1265 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
1266 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
1267 }
1268 if (IDVal == ".align32") {
1269 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
1270 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
1271 }
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001272 if (IDVal == ".balign")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001273 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001274 if (IDVal == ".balignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001275 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001276 if (IDVal == ".balignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001277 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001278 if (IDVal == ".p2align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001279 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001280 if (IDVal == ".p2alignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001281 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001282 if (IDVal == ".p2alignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001283 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
1284
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001285 if (IDVal == ".org")
Daniel Dunbarc238b582009-06-25 22:44:51 +00001286 return ParseDirectiveOrg();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001287
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001288 if (IDVal == ".fill")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001289 return ParseDirectiveFill();
Rafael Espindolace8463f2011-04-07 20:26:23 +00001290 if (IDVal == ".space" || IDVal == ".skip")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001291 return ParseDirectiveSpace();
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001292 if (IDVal == ".zero")
1293 return ParseDirectiveZero();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001294
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001295 // Symbol attribute directives
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001296
Benjamin Kramere14a3c52012-05-12 11:18:59 +00001297 if (IDVal == ".extern") {
1298 EatToEndOfStatement(); // .extern is the default, ignore it.
1299 return false;
1300 }
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001301 if (IDVal == ".globl" || IDVal == ".global")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001302 return ParseDirectiveSymbolAttribute(MCSA_Global);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001303 if (IDVal == ".indirect_symbol")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001304 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001305 if (IDVal == ".lazy_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001306 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001307 if (IDVal == ".no_dead_strip")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001308 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Kevin Enderbye8e98d72010-11-19 18:39:33 +00001309 if (IDVal == ".symbol_resolver")
1310 return ParseDirectiveSymbolAttribute(MCSA_SymbolResolver);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001311 if (IDVal == ".private_extern")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001312 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001313 if (IDVal == ".reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001314 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001315 if (IDVal == ".weak_definition")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001316 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001317 if (IDVal == ".weak_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001318 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Kevin Enderbyf59cac52010-07-08 17:22:42 +00001319 if (IDVal == ".weak_def_can_be_hidden")
1320 return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001321
Hans Wennborg5cc64912011-06-18 13:51:54 +00001322 if (IDVal == ".comm" || IDVal == ".common")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001323 return ParseDirectiveComm(/*IsLocal=*/false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001324 if (IDVal == ".lcomm")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001325 return ParseDirectiveComm(/*IsLocal=*/true);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001326
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001327 if (IDVal == ".abort")
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001328 return ParseDirectiveAbort();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001329 if (IDVal == ".include")
Kevin Enderby1f049b22009-07-14 23:21:55 +00001330 return ParseDirectiveInclude();
Kevin Enderbyc55acca2011-12-14 21:47:48 +00001331 if (IDVal == ".incbin")
1332 return ParseDirectiveIncbin();
Kevin Enderbya5c78322009-07-13 21:03:15 +00001333
Benjamin Kramer5cdf0ad2012-05-12 11:19:04 +00001334 if (IDVal == ".code16" || IDVal == ".code16gcc")
Roman Divackyf6fbd842011-01-31 20:56:49 +00001335 return TokError(Twine(IDVal) + " not supported yet");
Roman Divackycb727802011-01-28 19:29:48 +00001336
Rafael Espindola761cb062012-06-03 23:57:14 +00001337 // Macro-like directives
Rafael Espindola2ec304c2012-05-12 16:31:10 +00001338 if (IDVal == ".rept")
1339 return ParseDirectiveRept(IDLoc);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001340 if (IDVal == ".irp")
1341 return ParseDirectiveIrp(IDLoc);
Rafael Espindolafc9216e2012-06-16 18:03:25 +00001342 if (IDVal == ".irpc")
1343 return ParseDirectiveIrpc(IDLoc);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00001344 if (IDVal == ".endr")
Rafael Espindola761cb062012-06-03 23:57:14 +00001345 return ParseDirectiveEndr(IDLoc);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00001346
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001347 // Look up the handler in the handler table.
1348 std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
1349 DirectiveMap.lookup(IDVal);
1350 if (Handler.first)
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +00001351 return (*Handler.second)(Handler.first, IDVal, IDLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001352
Kevin Enderby9c656452009-09-10 20:51:44 +00001353
Jim Grosbach686c0182012-05-01 18:38:27 +00001354 return Error(IDLoc, "unknown directive");
Chris Lattner2cf5f142009-06-22 01:29:09 +00001355 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001356
Eli Friedman2128aae2012-10-22 23:58:19 +00001357 // _emit
1358 if (ParsingInlineAsm && IDVal == "_emit")
1359 return ParseDirectiveEmit(IDLoc, Info);
1360
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001361 CheckForValidSection();
1362
Chris Lattnera7f13542010-05-19 23:34:33 +00001363 // Canonicalize the opcode to lower case.
Chad Rosier8f138d12012-10-15 17:19:13 +00001364 SmallString<128> OpcodeStr;
Chris Lattnera7f13542010-05-19 23:34:33 +00001365 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
Chad Rosier8f138d12012-10-15 17:19:13 +00001366 OpcodeStr.push_back(tolower(IDVal[i]));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001367
Chad Rosier6a020a72012-10-25 20:41:34 +00001368 ParseInstructionInfo IInfo(Info.AsmRewrites);
1369 bool HadError = getTargetParser().ParseInstruction(IInfo, OpcodeStr.str(),
1370 IDLoc,Info.ParsedOperands);
Chris Lattner2cf5f142009-06-22 01:29:09 +00001371
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001372 // Dump the parsed representation, if requested.
1373 if (getShowParsedOperands()) {
1374 SmallString<256> Str;
1375 raw_svector_ostream OS(Str);
1376 OS << "parsed instruction: [";
Eli Friedman2128aae2012-10-22 23:58:19 +00001377 for (unsigned i = 0; i != Info.ParsedOperands.size(); ++i) {
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001378 if (i != 0)
1379 OS << ", ";
Eli Friedman2128aae2012-10-22 23:58:19 +00001380 Info.ParsedOperands[i]->print(OS);
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001381 }
1382 OS << "]";
1383
Chris Lattner3f2d5f62011-10-16 05:43:57 +00001384 PrintMessage(IDLoc, SourceMgr::DK_Note, OS.str());
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001385 }
1386
Kevin Enderby613b7572011-11-01 22:27:22 +00001387 // If we are generating dwarf for assembly source files and the current
1388 // section is the initial text section then generate a .loc directive for
1389 // the instruction.
1390 if (!HadError && getContext().getGenDwarfForAssembly() &&
1391 getContext().getGenDwarfSection() == getStreamer().getCurrentSection() ) {
1392 getStreamer().EmitDwarfLocDirective(getContext().getGenDwarfFileNumber(),
1393 SrcMgr.FindLineNumber(IDLoc, CurBuffer),
1394 0, DWARF2_LINE_DEFAULT_IS_STMT ?
Kevin Enderbydba9a172011-11-02 17:56:38 +00001395 DWARF2_FLAG_IS_STMT : 0, 0, 0,
Kevin Enderby613b7572011-11-01 22:27:22 +00001396 StringRef());
1397 }
1398
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001399 // If parsing succeeded, match the instruction.
Chad Rosier84125ca2012-10-13 00:26:04 +00001400 if (!HadError) {
Chad Rosier84125ca2012-10-13 00:26:04 +00001401 unsigned ErrorInfo;
Eli Friedman2128aae2012-10-22 23:58:19 +00001402 HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, Info.Opcode,
1403 Info.ParsedOperands,
1404 Out, ErrorInfo,
Chad Rosier84125ca2012-10-13 00:26:04 +00001405 ParsingInlineAsm);
1406 }
Chris Lattner98986712010-01-14 22:21:20 +00001407
Chris Lattnercbf8a982010-09-11 16:18:25 +00001408 // Don't skip the rest of the line, the instruction parser is responsible for
1409 // that.
1410 return false;
Chris Lattner27aa7d22009-06-21 20:16:42 +00001411}
Chris Lattner9a023f72009-06-24 04:43:34 +00001412
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001413/// EatToEndOfLine uses the Lexer to eat the characters to the end of the line
1414/// since they may not be able to be tokenized to get to the end of line token.
1415void AsmParser::EatToEndOfLine() {
Rafael Espindola12ae5272011-10-19 18:48:52 +00001416 if (!Lexer.is(AsmToken::EndOfStatement))
1417 Lexer.LexUntilEndOfLine();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001418 // Eat EOL.
1419 Lex();
1420}
1421
1422/// ParseCppHashLineFilenameComment as this:
1423/// ::= # number "filename"
1424/// or just as a full line comment if it doesn't have a number and a string.
1425bool AsmParser::ParseCppHashLineFilenameComment(const SMLoc &L) {
1426 Lex(); // Eat the hash token.
1427
1428 if (getLexer().isNot(AsmToken::Integer)) {
1429 // Consume the line since in cases it is not a well-formed line directive,
1430 // as if were simply a full line comment.
1431 EatToEndOfLine();
1432 return false;
1433 }
1434
1435 int64_t LineNumber = getTok().getIntVal();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001436 Lex();
1437
1438 if (getLexer().isNot(AsmToken::String)) {
1439 EatToEndOfLine();
1440 return false;
1441 }
1442
1443 StringRef Filename = getTok().getString();
1444 // Get rid of the enclosing quotes.
1445 Filename = Filename.substr(1, Filename.size()-2);
1446
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001447 // Save the SMLoc, Filename and LineNumber for later use by diagnostics.
1448 CppHashLoc = L;
1449 CppHashFilename = Filename;
1450 CppHashLineNumber = LineNumber;
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001451
1452 // Ignore any trailing characters, they're just comment.
1453 EatToEndOfLine();
1454 return false;
1455}
1456
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001457/// DiagHandler - will use the last parsed cpp hash line filename comment
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001458/// for the Filename and LineNo if any in the diagnostic.
1459void AsmParser::DiagHandler(const SMDiagnostic &Diag, void *Context) {
1460 const AsmParser *Parser = static_cast<const AsmParser*>(Context);
1461 raw_ostream &OS = errs();
1462
1463 const SourceMgr &DiagSrcMgr = *Diag.getSourceMgr();
1464 const SMLoc &DiagLoc = Diag.getLoc();
1465 int DiagBuf = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
1466 int CppHashBuf = Parser->SrcMgr.FindBufferContainingLoc(Parser->CppHashLoc);
1467
1468 // Like SourceMgr::PrintMessage() we need to print the include stack if any
1469 // before printing the message.
1470 int DiagCurBuffer = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
Benjamin Kramer04a04262011-10-16 10:48:29 +00001471 if (!Parser->SavedDiagHandler && DiagCurBuffer > 0) {
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001472 SMLoc ParentIncludeLoc = DiagSrcMgr.getParentIncludeLoc(DiagCurBuffer);
1473 DiagSrcMgr.PrintIncludeStack(ParentIncludeLoc, OS);
1474 }
1475
1476 // If we have not parsed a cpp hash line filename comment or the source
1477 // manager changed or buffer changed (like in a nested include) then just
1478 // print the normal diagnostic using its Filename and LineNo.
1479 if (!Parser->CppHashLineNumber ||
1480 &DiagSrcMgr != &Parser->SrcMgr ||
1481 DiagBuf != CppHashBuf) {
Benjamin Kramer04a04262011-10-16 10:48:29 +00001482 if (Parser->SavedDiagHandler)
1483 Parser->SavedDiagHandler(Diag, Parser->SavedDiagContext);
1484 else
1485 Diag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001486 return;
1487 }
1488
1489 // Use the CppHashFilename and calculate a line number based on the
1490 // CppHashLoc and CppHashLineNumber relative to this Diag's SMLoc for
1491 // the diagnostic.
1492 const std::string Filename = Parser->CppHashFilename;
1493
1494 int DiagLocLineNo = DiagSrcMgr.FindLineNumber(DiagLoc, DiagBuf);
1495 int CppHashLocLineNo =
1496 Parser->SrcMgr.FindLineNumber(Parser->CppHashLoc, CppHashBuf);
1497 int LineNo = Parser->CppHashLineNumber - 1 +
1498 (DiagLocLineNo - CppHashLocLineNo);
1499
Chris Lattnerd8b7aa22011-10-16 04:47:35 +00001500 SMDiagnostic NewDiag(*Diag.getSourceMgr(), Diag.getLoc(),
1501 Filename, LineNo, Diag.getColumnNo(),
Chris Lattner3f2d5f62011-10-16 05:43:57 +00001502 Diag.getKind(), Diag.getMessage(),
Chris Lattner462b43c2011-10-16 05:47:55 +00001503 Diag.getLineContents(), Diag.getRanges());
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001504
Benjamin Kramer04a04262011-10-16 10:48:29 +00001505 if (Parser->SavedDiagHandler)
1506 Parser->SavedDiagHandler(NewDiag, Parser->SavedDiagContext);
1507 else
1508 NewDiag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001509}
1510
Rafael Espindola799aacf2012-08-21 18:29:30 +00001511// FIXME: This is mostly duplicated from the function in AsmLexer.cpp. The
1512// difference being that that function accepts '@' as part of identifiers and
1513// we can't do that. AsmLexer.cpp should probably be changed to handle
1514// '@' as a special case when needed.
1515static bool isIdentifierChar(char c) {
1516 return isalnum(c) || c == '_' || c == '$' || c == '.';
1517}
1518
Rafael Espindola761cb062012-06-03 23:57:14 +00001519bool AsmParser::expandMacro(raw_svector_ostream &OS, StringRef Body,
Rafael Espindola8a403d32012-08-08 14:51:03 +00001520 const MacroParameters &Parameters,
1521 const MacroArguments &A,
Rafael Espindola65366442011-06-05 02:43:45 +00001522 const SMLoc &L) {
Rafael Espindola65366442011-06-05 02:43:45 +00001523 unsigned NParameters = Parameters.size();
1524 if (NParameters != 0 && NParameters != A.size())
1525 return Error(L, "Wrong number of arguments");
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001526
Preston Gurd7b6f2032012-09-19 20:36:12 +00001527 // A macro without parameters is handled differently on Darwin:
1528 // gas accepts no arguments and does no substitutions
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001529 while (!Body.empty()) {
1530 // Scan for the next substitution.
1531 std::size_t End = Body.size(), Pos = 0;
1532 for (; Pos != End; ++Pos) {
1533 // Check for a substitution or escape.
Rafael Espindola65366442011-06-05 02:43:45 +00001534 if (!NParameters) {
1535 // This macro has no parameters, look for $0, $1, etc.
1536 if (Body[Pos] != '$' || Pos + 1 == End)
1537 continue;
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001538
Rafael Espindola65366442011-06-05 02:43:45 +00001539 char Next = Body[Pos + 1];
1540 if (Next == '$' || Next == 'n' || isdigit(Next))
1541 break;
1542 } else {
1543 // This macro has parameters, look for \foo, \bar, etc.
1544 if (Body[Pos] == '\\' && Pos + 1 != End)
1545 break;
1546 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001547 }
1548
1549 // Add the prefix.
1550 OS << Body.slice(0, Pos);
1551
1552 // Check if we reached the end.
1553 if (Pos == End)
1554 break;
1555
Rafael Espindola65366442011-06-05 02:43:45 +00001556 if (!NParameters) {
1557 switch (Body[Pos+1]) {
1558 // $$ => $
1559 case '$':
1560 OS << '$';
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001561 break;
1562
Rafael Espindola65366442011-06-05 02:43:45 +00001563 // $n => number of arguments
1564 case 'n':
1565 OS << A.size();
1566 break;
1567
1568 // $[0-9] => argument
1569 default: {
1570 // Missing arguments are ignored.
1571 unsigned Index = Body[Pos+1] - '0';
1572 if (Index >= A.size())
1573 break;
1574
1575 // Otherwise substitute with the token values, with spaces eliminated.
Rafael Espindola28c1f6662012-06-03 22:41:23 +00001576 for (MacroArgument::const_iterator it = A[Index].begin(),
Rafael Espindola65366442011-06-05 02:43:45 +00001577 ie = A[Index].end(); it != ie; ++it)
1578 OS << it->getString();
1579 break;
1580 }
1581 }
1582 Pos += 2;
1583 } else {
1584 unsigned I = Pos + 1;
Rafael Espindola799aacf2012-08-21 18:29:30 +00001585 while (isIdentifierChar(Body[I]) && I + 1 != End)
Rafael Espindola65366442011-06-05 02:43:45 +00001586 ++I;
1587
1588 const char *Begin = Body.data() + Pos +1;
1589 StringRef Argument(Begin, I - (Pos +1));
1590 unsigned Index = 0;
1591 for (; Index < NParameters; ++Index)
Preston Gurd6c9176a2012-09-19 20:29:04 +00001592 if (Parameters[Index].first == Argument)
Rafael Espindola65366442011-06-05 02:43:45 +00001593 break;
1594
Preston Gurd7b6f2032012-09-19 20:36:12 +00001595 if (Index == NParameters) {
1596 if (Body[Pos+1] == '(' && Body[Pos+2] == ')')
1597 Pos += 3;
1598 else {
1599 OS << '\\' << Argument;
1600 Pos = I;
1601 }
1602 } else {
1603 for (MacroArgument::const_iterator it = A[Index].begin(),
1604 ie = A[Index].end(); it != ie; ++it)
1605 if (it->getKind() == AsmToken::String)
1606 OS << it->getStringContents();
1607 else
1608 OS << it->getString();
Rafael Espindola65366442011-06-05 02:43:45 +00001609
Preston Gurd7b6f2032012-09-19 20:36:12 +00001610 Pos += 1 + Argument.size();
1611 }
Rafael Espindola65366442011-06-05 02:43:45 +00001612 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001613 // Update the scan point.
Rafael Espindola65366442011-06-05 02:43:45 +00001614 Body = Body.substr(Pos);
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001615 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001616
Rafael Espindola65366442011-06-05 02:43:45 +00001617 return false;
1618}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001619
Rafael Espindola65366442011-06-05 02:43:45 +00001620MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
1621 MemoryBuffer *I)
1622 : TheMacro(M), Instantiation(I), InstantiationLoc(IL), ExitLoc(EL)
1623{
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001624}
1625
Preston Gurd7b6f2032012-09-19 20:36:12 +00001626static bool IsOperator(AsmToken::TokenKind kind)
1627{
1628 switch (kind)
1629 {
1630 default:
1631 return false;
1632 case AsmToken::Plus:
1633 case AsmToken::Minus:
1634 case AsmToken::Tilde:
1635 case AsmToken::Slash:
1636 case AsmToken::Star:
1637 case AsmToken::Dot:
1638 case AsmToken::Equal:
1639 case AsmToken::EqualEqual:
1640 case AsmToken::Pipe:
1641 case AsmToken::PipePipe:
1642 case AsmToken::Caret:
1643 case AsmToken::Amp:
1644 case AsmToken::AmpAmp:
1645 case AsmToken::Exclaim:
1646 case AsmToken::ExclaimEqual:
1647 case AsmToken::Percent:
1648 case AsmToken::Less:
1649 case AsmToken::LessEqual:
1650 case AsmToken::LessLess:
1651 case AsmToken::LessGreater:
1652 case AsmToken::Greater:
1653 case AsmToken::GreaterEqual:
1654 case AsmToken::GreaterGreater:
1655 return true;
1656 }
1657}
1658
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001659/// ParseMacroArgument - Extract AsmTokens for a macro argument.
1660/// This is used for both default macro parameter values and the
1661/// arguments in macro invocations
Preston Gurd7b6f2032012-09-19 20:36:12 +00001662bool AsmParser::ParseMacroArgument(MacroArgument &MA,
1663 AsmToken::TokenKind &ArgumentDelimiter) {
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001664 unsigned ParenLevel = 0;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001665 unsigned AddTokens = 0;
1666
1667 // gas accepts arguments separated by whitespace, except on Darwin
1668 if (!IsDarwin)
1669 Lexer.setSkipSpace(false);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001670
1671 for (;;) {
Preston Gurd7b6f2032012-09-19 20:36:12 +00001672 if (Lexer.is(AsmToken::Eof) || Lexer.is(AsmToken::Equal)) {
1673 Lexer.setSkipSpace(true);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001674 return TokError("unexpected token in macro instantiation");
Preston Gurd7b6f2032012-09-19 20:36:12 +00001675 }
1676
1677 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1678 // Spaces and commas cannot be mixed to delimit parameters
1679 if (ArgumentDelimiter == AsmToken::Eof)
1680 ArgumentDelimiter = AsmToken::Comma;
1681 else if (ArgumentDelimiter != AsmToken::Comma) {
1682 Lexer.setSkipSpace(true);
1683 return TokError("expected ' ' for macro argument separator");
1684 }
1685 break;
1686 }
1687
1688 if (Lexer.is(AsmToken::Space)) {
1689 Lex(); // Eat spaces
1690
1691 // Spaces can delimit parameters, but could also be part an expression.
1692 // If the token after a space is an operator, add the token and the next
1693 // one into this argument
1694 if (ArgumentDelimiter == AsmToken::Space ||
1695 ArgumentDelimiter == AsmToken::Eof) {
1696 if (IsOperator(Lexer.getKind())) {
1697 // Check to see whether the token is used as an operator,
1698 // or part of an identifier
1699 const char *NextChar = getTok().getEndLoc().getPointer() + 1;
1700 if (*NextChar == ' ')
1701 AddTokens = 2;
1702 }
1703
1704 if (!AddTokens && ParenLevel == 0) {
1705 if (ArgumentDelimiter == AsmToken::Eof &&
1706 !IsOperator(Lexer.getKind()))
1707 ArgumentDelimiter = AsmToken::Space;
1708 break;
1709 }
1710 }
1711 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001712
1713 // HandleMacroEntry relies on not advancing the lexer here
1714 // to be able to fill in the remaining default parameter values
1715 if (Lexer.is(AsmToken::EndOfStatement))
1716 break;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001717
1718 // Adjust the current parentheses level.
1719 if (Lexer.is(AsmToken::LParen))
1720 ++ParenLevel;
1721 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1722 --ParenLevel;
1723
1724 // Append the token to the current argument list.
1725 MA.push_back(getTok());
Preston Gurd7b6f2032012-09-19 20:36:12 +00001726 if (AddTokens)
1727 AddTokens--;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001728 Lex();
1729 }
Preston Gurd7b6f2032012-09-19 20:36:12 +00001730
1731 Lexer.setSkipSpace(true);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001732 if (ParenLevel != 0)
Rafael Espindola76ac2002012-08-21 15:55:04 +00001733 return TokError("unbalanced parentheses in macro argument");
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001734 return false;
1735}
1736
1737// Parse the macro instantiation arguments.
Rafael Espindola8a403d32012-08-08 14:51:03 +00001738bool AsmParser::ParseMacroArguments(const Macro *M, MacroArguments &A) {
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001739 const unsigned NParameters = M ? M->Parameters.size() : 0;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001740 // Argument delimiter is initially unknown. It will be set by
1741 // ParseMacroArgument()
1742 AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001743
1744 // Parse two kinds of macro invocations:
1745 // - macros defined without any parameters accept an arbitrary number of them
1746 // - macros defined with parameters accept at most that many of them
1747 for (unsigned Parameter = 0; !NParameters || Parameter < NParameters;
1748 ++Parameter) {
1749 MacroArgument MA;
1750
Preston Gurd7b6f2032012-09-19 20:36:12 +00001751 if (ParseMacroArgument(MA, ArgumentDelimiter))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001752 return true;
1753
Preston Gurd6c9176a2012-09-19 20:29:04 +00001754 if (!MA.empty() || !NParameters)
1755 A.push_back(MA);
1756 else if (NParameters) {
1757 if (!M->Parameters[Parameter].second.empty())
1758 A.push_back(M->Parameters[Parameter].second);
1759 }
Jim Grosbach97146442012-07-30 22:44:17 +00001760
Preston Gurd6c9176a2012-09-19 20:29:04 +00001761 // At the end of the statement, fill in remaining arguments that have
1762 // default values. If there aren't any, then the next argument is
1763 // required but missing
1764 if (Lexer.is(AsmToken::EndOfStatement)) {
1765 if (NParameters && Parameter < NParameters - 1) {
1766 if (M->Parameters[Parameter + 1].second.empty())
1767 return TokError("macro argument '" +
1768 Twine(M->Parameters[Parameter + 1].first) +
1769 "' is missing");
1770 else
1771 continue;
1772 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001773 return false;
Preston Gurd6c9176a2012-09-19 20:29:04 +00001774 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001775
1776 if (Lexer.is(AsmToken::Comma))
1777 Lex();
1778 }
1779 return TokError("Too many arguments");
1780}
1781
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001782bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
1783 const Macro *M) {
1784 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1785 // this, although we should protect against infinite loops.
1786 if (ActiveMacros.size() == 20)
1787 return TokError("macros cannot be nested more than 20 levels deep");
1788
Rafael Espindola8a403d32012-08-08 14:51:03 +00001789 MacroArguments A;
1790 if (ParseMacroArguments(M, A))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001791 return true;
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001792
Jim Grosbach97146442012-07-30 22:44:17 +00001793 // Remove any trailing empty arguments. Do this after-the-fact as we have
1794 // to keep empty arguments in the middle of the list or positionality
1795 // gets off. e.g., "foo 1, , 2" vs. "foo 1, 2,"
Rafael Espindola8a403d32012-08-08 14:51:03 +00001796 while (!A.empty() && A.back().empty())
1797 A.pop_back();
Jim Grosbach97146442012-07-30 22:44:17 +00001798
Rafael Espindola65366442011-06-05 02:43:45 +00001799 // Macro instantiation is lexical, unfortunately. We construct a new buffer
1800 // to hold the macro body with substitutions.
1801 SmallString<256> Buf;
1802 StringRef Body = M->Body;
Rafael Espindola761cb062012-06-03 23:57:14 +00001803 raw_svector_ostream OS(Buf);
Rafael Espindola65366442011-06-05 02:43:45 +00001804
Rafael Espindola8a403d32012-08-08 14:51:03 +00001805 if (expandMacro(OS, Body, M->Parameters, A, getTok().getLoc()))
Rafael Espindola65366442011-06-05 02:43:45 +00001806 return true;
1807
Rafael Espindola761cb062012-06-03 23:57:14 +00001808 // We include the .endmacro in the buffer as our queue to exit the macro
1809 // instantiation.
1810 OS << ".endmacro\n";
1811
Rafael Espindola65366442011-06-05 02:43:45 +00001812 MemoryBuffer *Instantiation =
Rafael Espindola761cb062012-06-03 23:57:14 +00001813 MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Rafael Espindola65366442011-06-05 02:43:45 +00001814
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001815 // Create the macro instantiation object and add to the current macro
1816 // instantiation stack.
1817 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001818 getTok().getLoc(),
Rafael Espindola65366442011-06-05 02:43:45 +00001819 Instantiation);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001820 ActiveMacros.push_back(MI);
1821
1822 // Jump to the macro instantiation and prime the lexer.
1823 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1824 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1825 Lex();
1826
1827 return false;
1828}
1829
1830void AsmParser::HandleMacroExit() {
1831 // Jump to the EndOfStatement we should return to, and consume it.
1832 JumpToLoc(ActiveMacros.back()->ExitLoc);
1833 Lex();
1834
1835 // Pop the instantiation entry.
1836 delete ActiveMacros.back();
1837 ActiveMacros.pop_back();
1838}
1839
Rafael Espindolae71cc862012-01-28 05:57:00 +00001840static bool IsUsedIn(const MCSymbol *Sym, const MCExpr *Value) {
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001841 switch (Value->getKind()) {
Rafael Espindolae71cc862012-01-28 05:57:00 +00001842 case MCExpr::Binary: {
1843 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr*>(Value);
1844 return IsUsedIn(Sym, BE->getLHS()) || IsUsedIn(Sym, BE->getRHS());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001845 break;
1846 }
Rafael Espindolae71cc862012-01-28 05:57:00 +00001847 case MCExpr::Target:
1848 case MCExpr::Constant:
1849 return false;
1850 case MCExpr::SymbolRef: {
1851 const MCSymbol &S = static_cast<const MCSymbolRefExpr*>(Value)->getSymbol();
Rafael Espindola8b01c822012-01-28 06:22:14 +00001852 if (S.isVariable())
1853 return IsUsedIn(Sym, S.getVariableValue());
1854 return &S == Sym;
Rafael Espindolae71cc862012-01-28 05:57:00 +00001855 }
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001856 case MCExpr::Unary:
Rafael Espindolae71cc862012-01-28 05:57:00 +00001857 return IsUsedIn(Sym, static_cast<const MCUnaryExpr*>(Value)->getSubExpr());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001858 }
Benjamin Kramer518ff562012-01-28 15:28:41 +00001859
1860 llvm_unreachable("Unknown expr kind!");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001861}
1862
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00001863bool AsmParser::ParseAssignment(StringRef Name, bool allow_redef,
1864 bool NoDeadStrip) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001865 // FIXME: Use better location, we should use proper tokens.
1866 SMLoc EqualLoc = Lexer.getLoc();
1867
Daniel Dunbar821e3332009-08-31 08:09:28 +00001868 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001869 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001870 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001871
Rafael Espindolae71cc862012-01-28 05:57:00 +00001872 // Note: we don't count b as used in "a = b". This is to allow
1873 // a = b
1874 // b = c
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001875
Daniel Dunbar3f872332009-07-28 16:08:33 +00001876 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001877 return TokError("unexpected token in assignment");
1878
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001879 // Error on assignment to '.'.
1880 if (Name == ".") {
1881 return Error(EqualLoc, ("assignment to pseudo-symbol '.' is unsupported "
1882 "(use '.space' or '.org').)"));
1883 }
1884
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001885 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001886 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001887
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001888 // Validate that the LHS is allowed to be a variable (either it has not been
1889 // used as a symbol, or it is an absolute symbol).
1890 MCSymbol *Sym = getContext().LookupSymbol(Name);
1891 if (Sym) {
1892 // Diagnose assignment to a label.
1893 //
1894 // FIXME: Diagnostics. Note the location of the definition as a label.
1895 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Rafael Espindolae71cc862012-01-28 05:57:00 +00001896 if (IsUsedIn(Sym, Value))
1897 return Error(EqualLoc, "Recursive use of '" + Name + "'");
1898 else if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001899 ; // Allow redefinitions of undefined symbols only used in directives.
Jim Grosbach48c95332012-03-20 21:33:21 +00001900 else if (Sym->isVariable() && !Sym->isUsed() && allow_redef)
1901 ; // Allow redefinitions of variables that haven't yet been used.
Daniel Dunbar6db7fe82011-04-29 17:53:11 +00001902 else if (!Sym->isUndefined() && (!Sym->isVariable() || !allow_redef))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001903 return Error(EqualLoc, "redefinition of '" + Name + "'");
1904 else if (!Sym->isVariable())
1905 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00001906 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001907 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1908 Name + "'");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001909
1910 // Don't count these checks as uses.
1911 Sym->setUsed(false);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001912 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001913 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001914
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001915 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001916
1917 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00001918 Out.EmitAssignment(Sym, Value);
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00001919 if (NoDeadStrip)
1920 Out.EmitSymbolAttribute(Sym, MCSA_NoDeadStrip);
1921
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001922
1923 return false;
1924}
1925
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001926/// ParseIdentifier:
1927/// ::= identifier
1928/// ::= string
1929bool AsmParser::ParseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00001930 // The assembler has relaxed rules for accepting identifiers, in particular we
1931 // allow things like '.globl $foo', which would normally be separate
1932 // tokens. At this level, we have already lexed so we cannot (currently)
1933 // handle this as a context dependent token, instead we detect adjacent tokens
1934 // and return the combined identifier.
1935 if (Lexer.is(AsmToken::Dollar)) {
1936 SMLoc DollarLoc = getLexer().getLoc();
1937
1938 // Consume the dollar sign, and check for a following identifier.
1939 Lex();
1940 if (Lexer.isNot(AsmToken::Identifier))
1941 return true;
1942
1943 // We have a '$' followed by an identifier, make sure they are adjacent.
1944 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
1945 return true;
1946
1947 // Construct the joined identifier and consume the token.
1948 Res = StringRef(DollarLoc.getPointer(),
1949 getTok().getIdentifier().size() + 1);
1950 Lex();
1951 return false;
1952 }
1953
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001954 if (Lexer.isNot(AsmToken::Identifier) &&
1955 Lexer.isNot(AsmToken::String))
1956 return true;
1957
Sean Callanan18b83232010-01-19 21:44:56 +00001958 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001959
Sean Callanan79ed1a82010-01-19 20:22:31 +00001960 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001961
1962 return false;
1963}
1964
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001965/// ParseDirectiveSet:
Nico Weber4c4c7322011-01-28 03:04:41 +00001966/// ::= .equ identifier ',' expression
1967/// ::= .equiv identifier ',' expression
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001968/// ::= .set identifier ',' expression
Nico Weber4c4c7322011-01-28 03:04:41 +00001969bool AsmParser::ParseDirectiveSet(StringRef IDVal, bool allow_redef) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001970 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001971
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001972 if (ParseIdentifier(Name))
Roman Divackyf9d17522010-10-28 16:57:58 +00001973 return TokError("expected identifier after '" + Twine(IDVal) + "'");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001974
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001975 if (getLexer().isNot(AsmToken::Comma))
Roman Divackyf9d17522010-10-28 16:57:58 +00001976 return TokError("unexpected token in '" + Twine(IDVal) + "'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001977 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001978
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00001979 return ParseAssignment(Name, allow_redef, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001980}
1981
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001982bool AsmParser::ParseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001983 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001984
1985 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00001986 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001987 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1988 if (Str[i] != '\\') {
1989 Data += Str[i];
1990 continue;
1991 }
1992
1993 // Recognize escaped characters. Note that this escape semantics currently
1994 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1995 ++i;
1996 if (i == e)
1997 return TokError("unexpected backslash at end of string");
1998
1999 // Recognize octal sequences.
2000 if ((unsigned) (Str[i] - '0') <= 7) {
2001 // Consume up to three octal characters.
2002 unsigned Value = Str[i] - '0';
2003
2004 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
2005 ++i;
2006 Value = Value * 8 + (Str[i] - '0');
2007
2008 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
2009 ++i;
2010 Value = Value * 8 + (Str[i] - '0');
2011 }
2012 }
2013
2014 if (Value > 255)
2015 return TokError("invalid octal escape sequence (out of range)");
2016
2017 Data += (unsigned char) Value;
2018 continue;
2019 }
2020
2021 // Otherwise recognize individual escapes.
2022 switch (Str[i]) {
2023 default:
2024 // Just reject invalid escape sequences for now.
2025 return TokError("invalid escape sequence (unrecognized character)");
2026
2027 case 'b': Data += '\b'; break;
2028 case 'f': Data += '\f'; break;
2029 case 'n': Data += '\n'; break;
2030 case 'r': Data += '\r'; break;
2031 case 't': Data += '\t'; break;
2032 case '"': Data += '"'; break;
2033 case '\\': Data += '\\'; break;
2034 }
2035 }
2036
2037 return false;
2038}
2039
Daniel Dunbara0d14262009-06-24 23:30:00 +00002040/// ParseDirectiveAscii:
Rafael Espindola787c3372010-10-28 20:02:27 +00002041/// ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
2042bool AsmParser::ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002043 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002044 CheckForValidSection();
2045
Daniel Dunbara0d14262009-06-24 23:30:00 +00002046 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002047 if (getLexer().isNot(AsmToken::String))
Rafael Espindola787c3372010-10-28 20:02:27 +00002048 return TokError("expected string in '" + Twine(IDVal) + "' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002049
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002050 std::string Data;
2051 if (ParseEscapedString(Data))
2052 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002053
2054 getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002055 if (ZeroTerminated)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002056 getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
2057
Sean Callanan79ed1a82010-01-19 20:22:31 +00002058 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002059
2060 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002061 break;
2062
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002063 if (getLexer().isNot(AsmToken::Comma))
Rafael Espindola787c3372010-10-28 20:02:27 +00002064 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002065 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002066 }
2067 }
2068
Sean Callanan79ed1a82010-01-19 20:22:31 +00002069 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002070 return false;
2071}
2072
2073/// ParseDirectiveValue
2074/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
2075bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002076 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002077 CheckForValidSection();
2078
Daniel Dunbara0d14262009-06-24 23:30:00 +00002079 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00002080 const MCExpr *Value;
Jim Grosbach254cf032011-06-29 16:05:14 +00002081 SMLoc ExprLoc = getLexer().getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00002082 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002083 return true;
2084
Daniel Dunbar414c0c42010-05-23 18:36:38 +00002085 // Special case constant expressions to match code generator.
Jim Grosbach254cf032011-06-29 16:05:14 +00002086 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2087 assert(Size <= 8 && "Invalid size");
2088 uint64_t IntValue = MCE->getValue();
2089 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2090 return Error(ExprLoc, "literal value out of range for directive");
2091 getStreamer().EmitIntValue(IntValue, Size, DEFAULT_ADDRSPACE);
2092 } else
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002093 getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002094
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002095 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002096 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002097
Daniel Dunbara0d14262009-06-24 23:30:00 +00002098 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002099 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002100 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002101 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002102 }
2103 }
2104
Sean Callanan79ed1a82010-01-19 20:22:31 +00002105 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002106 return false;
2107}
2108
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002109/// ParseDirectiveRealValue
2110/// ::= (.single | .double) [ expression (, expression)* ]
2111bool AsmParser::ParseDirectiveRealValue(const fltSemantics &Semantics) {
2112 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2113 CheckForValidSection();
2114
2115 for (;;) {
2116 // We don't truly support arithmetic on floating point expressions, so we
2117 // have to manually parse unary prefixes.
2118 bool IsNeg = false;
2119 if (getLexer().is(AsmToken::Minus)) {
2120 Lex();
2121 IsNeg = true;
2122 } else if (getLexer().is(AsmToken::Plus))
2123 Lex();
2124
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002125 if (getLexer().isNot(AsmToken::Integer) &&
Kevin Enderby360d8d72011-03-29 21:11:52 +00002126 getLexer().isNot(AsmToken::Real) &&
2127 getLexer().isNot(AsmToken::Identifier))
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002128 return TokError("unexpected token in directive");
2129
2130 // Convert to an APFloat.
2131 APFloat Value(Semantics);
Kevin Enderby360d8d72011-03-29 21:11:52 +00002132 StringRef IDVal = getTok().getString();
2133 if (getLexer().is(AsmToken::Identifier)) {
2134 if (!IDVal.compare_lower("infinity") || !IDVal.compare_lower("inf"))
2135 Value = APFloat::getInf(Semantics);
2136 else if (!IDVal.compare_lower("nan"))
2137 Value = APFloat::getNaN(Semantics, false, ~0);
2138 else
2139 return TokError("invalid floating point literal");
2140 } else if (Value.convertFromString(IDVal, APFloat::rmNearestTiesToEven) ==
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002141 APFloat::opInvalidOp)
2142 return TokError("invalid floating point literal");
2143 if (IsNeg)
2144 Value.changeSign();
2145
2146 // Consume the numeric token.
2147 Lex();
2148
2149 // Emit the value as an integer.
2150 APInt AsInt = Value.bitcastToAPInt();
2151 getStreamer().EmitIntValue(AsInt.getLimitedValue(),
2152 AsInt.getBitWidth() / 8, DEFAULT_ADDRSPACE);
2153
2154 if (getLexer().is(AsmToken::EndOfStatement))
2155 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002156
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002157 if (getLexer().isNot(AsmToken::Comma))
2158 return TokError("unexpected token in directive");
2159 Lex();
2160 }
2161 }
2162
2163 Lex();
2164 return false;
2165}
2166
Daniel Dunbara0d14262009-06-24 23:30:00 +00002167/// ParseDirectiveSpace
2168/// ::= .space expression [ , expression ]
2169bool AsmParser::ParseDirectiveSpace() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002170 CheckForValidSection();
2171
Daniel Dunbara0d14262009-06-24 23:30:00 +00002172 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00002173 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002174 return true;
2175
2176 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002177 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2178 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002179 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002180 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002181
Daniel Dunbar475839e2009-06-29 20:37:27 +00002182 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002183 return true;
2184
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002185 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002186 return TokError("unexpected token in '.space' directive");
2187 }
2188
Sean Callanan79ed1a82010-01-19 20:22:31 +00002189 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002190
2191 if (NumBytes <= 0)
2192 return TokError("invalid number of bytes in '.space' directive");
2193
2194 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002195 getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002196
2197 return false;
2198}
2199
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002200/// ParseDirectiveZero
2201/// ::= .zero expression
2202bool AsmParser::ParseDirectiveZero() {
2203 CheckForValidSection();
2204
2205 int64_t NumBytes;
2206 if (ParseAbsoluteExpression(NumBytes))
2207 return true;
2208
Rafael Espindolae452b172010-10-05 19:42:57 +00002209 int64_t Val = 0;
2210 if (getLexer().is(AsmToken::Comma)) {
2211 Lex();
2212 if (ParseAbsoluteExpression(Val))
2213 return true;
2214 }
2215
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002216 if (getLexer().isNot(AsmToken::EndOfStatement))
2217 return TokError("unexpected token in '.zero' directive");
2218
2219 Lex();
2220
Rafael Espindolae452b172010-10-05 19:42:57 +00002221 getStreamer().EmitFill(NumBytes, Val, DEFAULT_ADDRSPACE);
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002222
2223 return false;
2224}
2225
Daniel Dunbara0d14262009-06-24 23:30:00 +00002226/// ParseDirectiveFill
2227/// ::= .fill expression , expression , expression
2228bool AsmParser::ParseDirectiveFill() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002229 CheckForValidSection();
2230
Daniel Dunbara0d14262009-06-24 23:30:00 +00002231 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00002232 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002233 return true;
2234
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002235 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002236 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002237 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002238
Daniel Dunbara0d14262009-06-24 23:30:00 +00002239 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00002240 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002241 return true;
2242
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002243 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002244 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002245 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002246
Daniel Dunbara0d14262009-06-24 23:30:00 +00002247 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00002248 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002249 return true;
2250
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002251 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002252 return TokError("unexpected token in '.fill' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002253
Sean Callanan79ed1a82010-01-19 20:22:31 +00002254 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002255
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00002256 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
2257 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00002258
2259 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002260 getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002261
2262 return false;
2263}
Daniel Dunbarc238b582009-06-25 22:44:51 +00002264
2265/// ParseDirectiveOrg
2266/// ::= .org expression [ , expression ]
2267bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002268 CheckForValidSection();
2269
Daniel Dunbar821e3332009-08-31 08:09:28 +00002270 const MCExpr *Offset;
Jim Grosbachebd4c052012-01-27 00:37:08 +00002271 SMLoc Loc = getTok().getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00002272 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002273 return true;
2274
2275 // Parse optional fill expression.
2276 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002277 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2278 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002279 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002280 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002281
Daniel Dunbar475839e2009-06-29 20:37:27 +00002282 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002283 return true;
2284
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002285 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002286 return TokError("unexpected token in '.org' directive");
2287 }
2288
Sean Callanan79ed1a82010-01-19 20:22:31 +00002289 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00002290
Jim Grosbachebd4c052012-01-27 00:37:08 +00002291 // Only limited forms of relocatable expressions are accepted here, it
2292 // has to be relative to the current section. The streamer will return
2293 // 'true' if the expression wasn't evaluatable.
2294 if (getStreamer().EmitValueToOffset(Offset, FillExpr))
2295 return Error(Loc, "expected assembly-time absolute expression");
Daniel Dunbarc238b582009-06-25 22:44:51 +00002296
2297 return false;
2298}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002299
2300/// ParseDirectiveAlign
2301/// ::= {.align, ...} expression [ , expression [ , expression ]]
2302bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002303 CheckForValidSection();
2304
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002305 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002306 int64_t Alignment;
2307 if (ParseAbsoluteExpression(Alignment))
2308 return true;
2309
2310 SMLoc MaxBytesLoc;
2311 bool HasFillExpr = false;
2312 int64_t FillExpr = 0;
2313 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002314 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2315 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002316 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002317 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002318
2319 // The fill expression can be omitted while specifying a maximum number of
2320 // alignment bytes, e.g:
2321 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002322 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002323 HasFillExpr = true;
2324 if (ParseAbsoluteExpression(FillExpr))
2325 return true;
2326 }
2327
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002328 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2329 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002330 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002331 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002332
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002333 MaxBytesLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002334 if (ParseAbsoluteExpression(MaxBytesToFill))
2335 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002336
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002337 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002338 return TokError("unexpected token in directive");
2339 }
2340 }
2341
Sean Callanan79ed1a82010-01-19 20:22:31 +00002342 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002343
Daniel Dunbar648ac512010-05-17 21:54:30 +00002344 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002345 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002346
2347 // Compute alignment in bytes.
2348 if (IsPow2) {
2349 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002350 if (Alignment >= 32) {
2351 Error(AlignmentLoc, "invalid alignment value");
2352 Alignment = 31;
2353 }
2354
Benjamin Kramer12fd7672009-09-06 09:35:10 +00002355 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002356 }
2357
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002358 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002359 if (MaxBytesLoc.isValid()) {
2360 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002361 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
2362 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00002363 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002364 }
2365
2366 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00002367 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
2368 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002369 MaxBytesToFill = 0;
2370 }
2371 }
2372
Daniel Dunbar648ac512010-05-17 21:54:30 +00002373 // Check whether we should use optimal code alignment for this .align
2374 // directive.
Jan Wen Voung083cf152010-10-04 17:32:41 +00002375 bool UseCodeAlign = getStreamer().getCurrentSection()->UseCodeAlign();
Daniel Dunbar648ac512010-05-17 21:54:30 +00002376 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
2377 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002378 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002379 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00002380 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00002381 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
2382 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002383 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002384
2385 return false;
2386}
2387
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002388/// ParseDirectiveSymbolAttribute
2389/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00002390bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002391 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002392 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002393 StringRef Name;
Jim Grosbach10ec6502011-09-15 17:56:49 +00002394 SMLoc Loc = getTok().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002395
2396 if (ParseIdentifier(Name))
Jim Grosbach10ec6502011-09-15 17:56:49 +00002397 return Error(Loc, "expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002398
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00002399 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002400
Jim Grosbach10ec6502011-09-15 17:56:49 +00002401 // Assembler local symbols don't make any sense here. Complain loudly.
2402 if (Sym->isTemporary())
2403 return Error(Loc, "non-local symbol required in directive");
2404
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002405 getStreamer().EmitSymbolAttribute(Sym, Attr);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002406
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002407 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002408 break;
2409
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002410 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002411 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002412 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002413 }
2414 }
2415
Sean Callanan79ed1a82010-01-19 20:22:31 +00002416 Lex();
Jan Wen Vounga854a4b2010-09-30 01:09:20 +00002417 return false;
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002418}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002419
2420/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00002421/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
2422bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002423 CheckForValidSection();
2424
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002425 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002426 StringRef Name;
2427 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002428 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002429
Daniel Dunbar76c4d762009-07-31 21:55:09 +00002430 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00002431 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002432
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002433 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002434 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002435 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002436
2437 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002438 SMLoc SizeLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002439 if (ParseAbsoluteExpression(Size))
2440 return true;
2441
2442 int64_t Pow2Alignment = 0;
2443 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002444 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00002445 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002446 Pow2AlignmentLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002447 if (ParseAbsoluteExpression(Pow2Alignment))
2448 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002449
Benjamin Kramera9e37c52012-09-07 21:08:01 +00002450 LCOMM::LCOMMType LCOMM = Lexer.getMAI().getLCOMMDirectiveAlignmentType();
2451 if (IsLocal && LCOMM == LCOMM::NoAlignment)
Benjamin Kramer39646d92012-09-07 17:25:13 +00002452 return Error(Pow2AlignmentLoc, "alignment not supported on this target");
2453
Chris Lattner258281d2010-01-19 06:22:22 +00002454 // If this target takes alignments in bytes (not log) validate and convert.
Benjamin Kramera9e37c52012-09-07 21:08:01 +00002455 if ((!IsLocal && Lexer.getMAI().getCOMMDirectiveAlignmentIsInBytes()) ||
2456 (IsLocal && LCOMM == LCOMM::ByteAlignment)) {
Chris Lattner258281d2010-01-19 06:22:22 +00002457 if (!isPowerOf2_64(Pow2Alignment))
2458 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
2459 Pow2Alignment = Log2_64(Pow2Alignment);
2460 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002461 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002462
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002463 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00002464 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002465
Sean Callanan79ed1a82010-01-19 20:22:31 +00002466 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002467
Chris Lattner1fc3d752009-07-09 17:25:12 +00002468 // NOTE: a size of zero for a .comm should create a undefined symbol
2469 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002470 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00002471 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
2472 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002473
Eric Christopherc260a3e2010-05-14 01:38:54 +00002474 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002475 // may internally end up wanting an alignment in bytes.
2476 // FIXME: Diagnose overflow.
2477 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00002478 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
2479 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002480
Daniel Dunbar8906ff12009-08-22 07:22:36 +00002481 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002482 return Error(IDLoc, "invalid symbol redefinition");
2483
Chris Lattner1fc3d752009-07-09 17:25:12 +00002484 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00002485 if (IsLocal) {
Benjamin Kramer39646d92012-09-07 17:25:13 +00002486 getStreamer().EmitLocalCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00002487 return false;
2488 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002489
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002490 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002491 return false;
2492}
Chris Lattner9be3fee2009-07-10 22:20:30 +00002493
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002494/// ParseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002495/// ::= .abort [... message ...]
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002496bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00002497 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002498 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00002499
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002500 StringRef Str = ParseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002501 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002502 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002503
Sean Callanan79ed1a82010-01-19 20:22:31 +00002504 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002505
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00002506 if (Str.empty())
2507 Error(Loc, ".abort detected. Assembly stopping.");
2508 else
2509 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002510 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002511
2512 return false;
2513}
Kevin Enderby71148242009-07-14 21:35:03 +00002514
Kevin Enderby1f049b22009-07-14 23:21:55 +00002515/// ParseDirectiveInclude
2516/// ::= .include "filename"
2517bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002518 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00002519 return TokError("expected string in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002520
Sean Callanan18b83232010-01-19 21:44:56 +00002521 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002522 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00002523 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00002524
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002525 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00002526 return TokError("unexpected token in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002527
Chris Lattner8e25e2d2009-07-16 06:14:39 +00002528 // Strip the quotes.
2529 Filename = Filename.substr(1, Filename.size()-2);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002530
Chris Lattner8e25e2d2009-07-16 06:14:39 +00002531 // Attempt to switch the lexer to the included file before consuming the end
2532 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00002533 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00002534 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00002535 return true;
2536 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00002537
2538 return false;
2539}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00002540
Kevin Enderbyc55acca2011-12-14 21:47:48 +00002541/// ParseDirectiveIncbin
2542/// ::= .incbin "filename"
2543bool AsmParser::ParseDirectiveIncbin() {
2544 if (getLexer().isNot(AsmToken::String))
2545 return TokError("expected string in '.incbin' directive");
2546
2547 std::string Filename = getTok().getString();
2548 SMLoc IncbinLoc = getLexer().getLoc();
2549 Lex();
2550
2551 if (getLexer().isNot(AsmToken::EndOfStatement))
2552 return TokError("unexpected token in '.incbin' directive");
2553
2554 // Strip the quotes.
2555 Filename = Filename.substr(1, Filename.size()-2);
2556
2557 // Attempt to process the included file.
2558 if (ProcessIncbinFile(Filename)) {
2559 Error(IncbinLoc, "Could not find incbin file '" + Filename + "'");
2560 return true;
2561 }
2562
2563 return false;
2564}
2565
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002566/// ParseDirectiveIf
2567/// ::= .if expression
2568bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002569 TheCondStack.push_back(TheCondState);
2570 TheCondState.TheCond = AsmCond::IfCond;
Benjamin Kramer29739e72012-05-12 16:52:21 +00002571 if (TheCondState.Ignore) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002572 EatToEndOfStatement();
Benjamin Kramer29739e72012-05-12 16:52:21 +00002573 } else {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002574 int64_t ExprValue;
2575 if (ParseAbsoluteExpression(ExprValue))
2576 return true;
2577
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002578 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002579 return TokError("unexpected token in '.if' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002580
Sean Callanan79ed1a82010-01-19 20:22:31 +00002581 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002582
2583 TheCondState.CondMet = ExprValue;
2584 TheCondState.Ignore = !TheCondState.CondMet;
2585 }
2586
2587 return false;
2588}
2589
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00002590/// ParseDirectiveIfb
2591/// ::= .ifb string
2592bool AsmParser::ParseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank) {
2593 TheCondStack.push_back(TheCondState);
2594 TheCondState.TheCond = AsmCond::IfCond;
2595
Benjamin Kramer29739e72012-05-12 16:52:21 +00002596 if (TheCondState.Ignore) {
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00002597 EatToEndOfStatement();
2598 } else {
2599 StringRef Str = ParseStringToEndOfStatement();
2600
2601 if (getLexer().isNot(AsmToken::EndOfStatement))
2602 return TokError("unexpected token in '.ifb' directive");
2603
2604 Lex();
2605
2606 TheCondState.CondMet = ExpectBlank == Str.empty();
2607 TheCondState.Ignore = !TheCondState.CondMet;
2608 }
2609
2610 return false;
2611}
2612
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00002613/// ParseDirectiveIfc
2614/// ::= .ifc string1, string2
2615bool AsmParser::ParseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual) {
2616 TheCondStack.push_back(TheCondState);
2617 TheCondState.TheCond = AsmCond::IfCond;
2618
Benjamin Kramer29739e72012-05-12 16:52:21 +00002619 if (TheCondState.Ignore) {
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00002620 EatToEndOfStatement();
2621 } else {
2622 StringRef Str1 = ParseStringToComma();
2623
2624 if (getLexer().isNot(AsmToken::Comma))
2625 return TokError("unexpected token in '.ifc' directive");
2626
2627 Lex();
2628
2629 StringRef Str2 = ParseStringToEndOfStatement();
2630
2631 if (getLexer().isNot(AsmToken::EndOfStatement))
2632 return TokError("unexpected token in '.ifc' directive");
2633
2634 Lex();
2635
2636 TheCondState.CondMet = ExpectEqual == (Str1 == Str2);
2637 TheCondState.Ignore = !TheCondState.CondMet;
2638 }
2639
2640 return false;
2641}
2642
2643/// ParseDirectiveIfdef
2644/// ::= .ifdef symbol
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00002645bool AsmParser::ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined) {
2646 StringRef Name;
2647 TheCondStack.push_back(TheCondState);
2648 TheCondState.TheCond = AsmCond::IfCond;
2649
2650 if (TheCondState.Ignore) {
2651 EatToEndOfStatement();
2652 } else {
2653 if (ParseIdentifier(Name))
2654 return TokError("expected identifier after '.ifdef'");
2655
2656 Lex();
2657
2658 MCSymbol *Sym = getContext().LookupSymbol(Name);
2659
2660 if (expect_defined)
2661 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
2662 else
2663 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
2664 TheCondState.Ignore = !TheCondState.CondMet;
2665 }
2666
2667 return false;
2668}
2669
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002670/// ParseDirectiveElseIf
2671/// ::= .elseif expression
2672bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
2673 if (TheCondState.TheCond != AsmCond::IfCond &&
2674 TheCondState.TheCond != AsmCond::ElseIfCond)
2675 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
2676 " an .elseif");
2677 TheCondState.TheCond = AsmCond::ElseIfCond;
2678
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002679 bool LastIgnoreState = false;
2680 if (!TheCondStack.empty())
2681 LastIgnoreState = TheCondStack.back().Ignore;
2682 if (LastIgnoreState || TheCondState.CondMet) {
2683 TheCondState.Ignore = true;
2684 EatToEndOfStatement();
2685 }
2686 else {
2687 int64_t ExprValue;
2688 if (ParseAbsoluteExpression(ExprValue))
2689 return true;
2690
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002691 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002692 return TokError("unexpected token in '.elseif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002693
Sean Callanan79ed1a82010-01-19 20:22:31 +00002694 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002695 TheCondState.CondMet = ExprValue;
2696 TheCondState.Ignore = !TheCondState.CondMet;
2697 }
2698
2699 return false;
2700}
2701
2702/// ParseDirectiveElse
2703/// ::= .else
2704bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002705 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002706 return TokError("unexpected token in '.else' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002707
Sean Callanan79ed1a82010-01-19 20:22:31 +00002708 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002709
2710 if (TheCondState.TheCond != AsmCond::IfCond &&
2711 TheCondState.TheCond != AsmCond::ElseIfCond)
2712 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
2713 ".elseif");
2714 TheCondState.TheCond = AsmCond::ElseCond;
2715 bool LastIgnoreState = false;
2716 if (!TheCondStack.empty())
2717 LastIgnoreState = TheCondStack.back().Ignore;
2718 if (LastIgnoreState || TheCondState.CondMet)
2719 TheCondState.Ignore = true;
2720 else
2721 TheCondState.Ignore = false;
2722
2723 return false;
2724}
2725
2726/// ParseDirectiveEndIf
2727/// ::= .endif
2728bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002729 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002730 return TokError("unexpected token in '.endif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002731
Sean Callanan79ed1a82010-01-19 20:22:31 +00002732 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002733
2734 if ((TheCondState.TheCond == AsmCond::NoCond) ||
2735 TheCondStack.empty())
2736 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
2737 ".else");
2738 if (!TheCondStack.empty()) {
2739 TheCondState = TheCondStack.back();
2740 TheCondStack.pop_back();
2741 }
2742
2743 return false;
2744}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002745
2746/// ParseDirectiveFile
Nick Lewycky44d798d2011-10-17 23:05:28 +00002747/// ::= .file [number] filename
2748/// ::= .file number directory filename
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002749bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002750 // FIXME: I'm not sure what this is.
2751 int64_t FileNumber = -1;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002752 SMLoc FileNumberLoc = getLexer().getLoc();
Daniel Dunbareceec052010-07-12 17:45:27 +00002753 if (getLexer().is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00002754 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00002755 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00002756
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002757 if (FileNumber < 1)
2758 return TokError("file number less than one");
2759 }
2760
Daniel Dunbareceec052010-07-12 17:45:27 +00002761 if (getLexer().isNot(AsmToken::String))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002762 return TokError("unexpected token in '.file' directive");
Daniel Dunbareceec052010-07-12 17:45:27 +00002763
Nick Lewycky44d798d2011-10-17 23:05:28 +00002764 // Usually the directory and filename together, otherwise just the directory.
2765 StringRef Path = getTok().getString();
2766 Path = Path.substr(1, Path.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00002767 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002768
Nick Lewycky44d798d2011-10-17 23:05:28 +00002769 StringRef Directory;
2770 StringRef Filename;
2771 if (getLexer().is(AsmToken::String)) {
2772 if (FileNumber == -1)
2773 return TokError("explicit path specified, but no file number");
2774 Filename = getTok().getString();
2775 Filename = Filename.substr(1, Filename.size()-2);
2776 Directory = Path;
2777 Lex();
2778 } else {
2779 Filename = Path;
2780 }
2781
Daniel Dunbareceec052010-07-12 17:45:27 +00002782 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002783 return TokError("unexpected token in '.file' directive");
2784
Chris Lattnerd32e8032010-01-25 19:02:58 +00002785 if (FileNumber == -1)
Daniel Dunbareceec052010-07-12 17:45:27 +00002786 getStreamer().EmitFileDirective(Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002787 else {
Kevin Enderby8704b782012-01-11 18:04:47 +00002788 if (getContext().getGenDwarfForAssembly() == true)
2789 Error(DirectiveLoc, "input can't have .file dwarf directives when -g is "
2790 "used to generate dwarf debug info for assembly code");
2791
Nick Lewycky44d798d2011-10-17 23:05:28 +00002792 if (getStreamer().EmitDwarfFileDirective(FileNumber, Directory, Filename))
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002793 Error(FileNumberLoc, "file number already allocated");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002794 }
Daniel Dunbareceec052010-07-12 17:45:27 +00002795
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002796 return false;
2797}
2798
2799/// ParseDirectiveLine
2800/// ::= .line [number]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002801bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00002802 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2803 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002804 return TokError("unexpected token in '.line' directive");
2805
Sean Callanan18b83232010-01-19 21:44:56 +00002806 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002807 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00002808 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002809
2810 // FIXME: Do something with the .line.
2811 }
2812
Daniel Dunbareceec052010-07-12 17:45:27 +00002813 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbar839348a2010-07-01 20:20:01 +00002814 return TokError("unexpected token in '.line' directive");
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002815
2816 return false;
2817}
2818
2819
2820/// ParseDirectiveLoc
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002821/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002822/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2823/// The first number is a file number, must have been previously assigned with
2824/// a .file directive, the second number is the line number and optionally the
2825/// third number is a column position (zero if not specified). The remaining
2826/// optional items are .loc sub-directives.
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002827bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002828
Daniel Dunbareceec052010-07-12 17:45:27 +00002829 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002830 return TokError("unexpected token in '.loc' directive");
Sean Callanan18b83232010-01-19 21:44:56 +00002831 int64_t FileNumber = getTok().getIntVal();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002832 if (FileNumber < 1)
2833 return TokError("file number less than one in '.loc' directive");
Kevin Enderby3f55c242010-10-04 20:17:24 +00002834 if (!getContext().isValidDwarfFileNumber(FileNumber))
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002835 return TokError("unassigned file number in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002836 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002837
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002838 int64_t LineNumber = 0;
2839 if (getLexer().is(AsmToken::Integer)) {
2840 LineNumber = getTok().getIntVal();
2841 if (LineNumber < 1)
2842 return TokError("line number less than one in '.loc' directive");
2843 Lex();
2844 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002845
2846 int64_t ColumnPos = 0;
2847 if (getLexer().is(AsmToken::Integer)) {
2848 ColumnPos = getTok().getIntVal();
2849 if (ColumnPos < 0)
2850 return TokError("column position less than zero in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002851 Lex();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002852 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002853
Kevin Enderbyc0957932010-09-30 16:52:03 +00002854 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002855 unsigned Isa = 0;
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002856 int64_t Discriminator = 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002857 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2858 for (;;) {
2859 if (getLexer().is(AsmToken::EndOfStatement))
2860 break;
2861
2862 StringRef Name;
2863 SMLoc Loc = getTok().getLoc();
2864 if (getParser().ParseIdentifier(Name))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002865 return TokError("unexpected token in '.loc' directive");
2866
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002867 if (Name == "basic_block")
2868 Flags |= DWARF2_FLAG_BASIC_BLOCK;
2869 else if (Name == "prologue_end")
2870 Flags |= DWARF2_FLAG_PROLOGUE_END;
2871 else if (Name == "epilogue_begin")
2872 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2873 else if (Name == "is_stmt") {
2874 SMLoc Loc = getTok().getLoc();
2875 const MCExpr *Value;
2876 if (getParser().ParseExpression(Value))
2877 return true;
2878 // The expression must be the constant 0 or 1.
2879 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2880 int Value = MCE->getValue();
2881 if (Value == 0)
2882 Flags &= ~DWARF2_FLAG_IS_STMT;
2883 else if (Value == 1)
2884 Flags |= DWARF2_FLAG_IS_STMT;
2885 else
2886 return Error(Loc, "is_stmt value not 0 or 1");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002887 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002888 else {
2889 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2890 }
2891 }
2892 else if (Name == "isa") {
2893 SMLoc Loc = getTok().getLoc();
2894 const MCExpr *Value;
2895 if (getParser().ParseExpression(Value))
2896 return true;
2897 // The expression must be a constant greater or equal to 0.
2898 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2899 int Value = MCE->getValue();
2900 if (Value < 0)
2901 return Error(Loc, "isa number less than zero");
2902 Isa = Value;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002903 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002904 else {
2905 return Error(Loc, "isa number not a constant value");
2906 }
2907 }
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002908 else if (Name == "discriminator") {
2909 if (getParser().ParseAbsoluteExpression(Discriminator))
2910 return true;
2911 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002912 else {
2913 return Error(Loc, "unknown sub-directive in '.loc' directive");
2914 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002915
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002916 if (getLexer().is(AsmToken::EndOfStatement))
2917 break;
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002918 }
2919 }
2920
Rafael Espindolaaf6b58082010-11-16 21:20:32 +00002921 getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +00002922 Isa, Discriminator, StringRef());
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002923
2924 return false;
2925}
2926
Daniel Dunbar138abae2010-10-16 04:56:42 +00002927/// ParseDirectiveStabs
2928/// ::= .stabs string, number, number, number
2929bool GenericAsmParser::ParseDirectiveStabs(StringRef Directive,
2930 SMLoc DirectiveLoc) {
2931 return TokError("unsupported directive '" + Directive + "'");
2932}
2933
Rafael Espindolaf9efd832011-05-10 01:10:18 +00002934/// ParseDirectiveCFISections
2935/// ::= .cfi_sections section [, section]
2936bool GenericAsmParser::ParseDirectiveCFISections(StringRef,
2937 SMLoc DirectiveLoc) {
2938 StringRef Name;
2939 bool EH = false;
2940 bool Debug = false;
2941
2942 if (getParser().ParseIdentifier(Name))
2943 return TokError("Expected an identifier");
2944
2945 if (Name == ".eh_frame")
2946 EH = true;
2947 else if (Name == ".debug_frame")
2948 Debug = true;
2949
2950 if (getLexer().is(AsmToken::Comma)) {
2951 Lex();
2952
2953 if (getParser().ParseIdentifier(Name))
2954 return TokError("Expected an identifier");
2955
2956 if (Name == ".eh_frame")
2957 EH = true;
2958 else if (Name == ".debug_frame")
2959 Debug = true;
2960 }
2961
2962 getStreamer().EmitCFISections(EH, Debug);
2963
2964 return false;
2965}
2966
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002967/// ParseDirectiveCFIStartProc
2968/// ::= .cfi_startproc
2969bool GenericAsmParser::ParseDirectiveCFIStartProc(StringRef,
2970 SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00002971 getStreamer().EmitCFIStartProc();
2972 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002973}
2974
2975/// ParseDirectiveCFIEndProc
2976/// ::= .cfi_endproc
2977bool GenericAsmParser::ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00002978 getStreamer().EmitCFIEndProc();
2979 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002980}
2981
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002982/// ParseRegisterOrRegisterNumber - parse register name or number.
2983bool GenericAsmParser::ParseRegisterOrRegisterNumber(int64_t &Register,
2984 SMLoc DirectiveLoc) {
2985 unsigned RegNo;
2986
Jim Grosbach6f888a82011-06-02 17:14:04 +00002987 if (getLexer().isNot(AsmToken::Integer)) {
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002988 if (getParser().getTargetParser().ParseRegister(RegNo, DirectiveLoc,
2989 DirectiveLoc))
2990 return true;
Evan Cheng0e6a0522011-07-18 20:57:22 +00002991 Register = getContext().getRegisterInfo().getDwarfRegNum(RegNo, true);
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002992 } else
2993 return getParser().ParseAbsoluteExpression(Register);
Jim Grosbachde2f5f42011-02-11 19:05:56 +00002994
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002995 return false;
2996}
2997
Rafael Espindolab40a71f2010-12-29 01:42:56 +00002998/// ParseDirectiveCFIDefCfa
2999/// ::= .cfi_def_cfa register, offset
3000bool GenericAsmParser::ParseDirectiveCFIDefCfa(StringRef,
3001 SMLoc DirectiveLoc) {
3002 int64_t Register = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00003003 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindolab40a71f2010-12-29 01:42:56 +00003004 return true;
3005
3006 if (getLexer().isNot(AsmToken::Comma))
3007 return TokError("unexpected token in directive");
3008 Lex();
3009
3010 int64_t Offset = 0;
3011 if (getParser().ParseAbsoluteExpression(Offset))
3012 return true;
3013
Rafael Espindola066c2f42011-04-12 23:59:07 +00003014 getStreamer().EmitCFIDefCfa(Register, Offset);
3015 return false;
Rafael Espindolab40a71f2010-12-29 01:42:56 +00003016}
3017
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003018/// ParseDirectiveCFIDefCfaOffset
3019/// ::= .cfi_def_cfa_offset offset
3020bool GenericAsmParser::ParseDirectiveCFIDefCfaOffset(StringRef,
3021 SMLoc DirectiveLoc) {
3022 int64_t Offset = 0;
3023 if (getParser().ParseAbsoluteExpression(Offset))
3024 return true;
3025
Rafael Espindola066c2f42011-04-12 23:59:07 +00003026 getStreamer().EmitCFIDefCfaOffset(Offset);
3027 return false;
Rafael Espindola53abbe52011-04-11 20:29:16 +00003028}
3029
3030/// ParseDirectiveCFIAdjustCfaOffset
3031/// ::= .cfi_adjust_cfa_offset adjustment
3032bool GenericAsmParser::ParseDirectiveCFIAdjustCfaOffset(StringRef,
3033 SMLoc DirectiveLoc) {
3034 int64_t Adjustment = 0;
3035 if (getParser().ParseAbsoluteExpression(Adjustment))
3036 return true;
3037
Rafael Espindola5d7dcd32011-04-12 18:53:30 +00003038 getStreamer().EmitCFIAdjustCfaOffset(Adjustment);
3039 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003040}
3041
3042/// ParseDirectiveCFIDefCfaRegister
3043/// ::= .cfi_def_cfa_register register
3044bool GenericAsmParser::ParseDirectiveCFIDefCfaRegister(StringRef,
3045 SMLoc DirectiveLoc) {
3046 int64_t Register = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00003047 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003048 return true;
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003049
Rafael Espindola066c2f42011-04-12 23:59:07 +00003050 getStreamer().EmitCFIDefCfaRegister(Register);
3051 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003052}
3053
3054/// ParseDirectiveCFIOffset
Rafael Espindolaa61842b2011-04-11 21:49:50 +00003055/// ::= .cfi_offset register, offset
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003056bool GenericAsmParser::ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc) {
3057 int64_t Register = 0;
3058 int64_t Offset = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00003059
3060 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003061 return true;
3062
3063 if (getLexer().isNot(AsmToken::Comma))
3064 return TokError("unexpected token in directive");
3065 Lex();
3066
3067 if (getParser().ParseAbsoluteExpression(Offset))
3068 return true;
3069
Rafael Espindola066c2f42011-04-12 23:59:07 +00003070 getStreamer().EmitCFIOffset(Register, Offset);
3071 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003072}
3073
Rafael Espindolaa61842b2011-04-11 21:49:50 +00003074/// ParseDirectiveCFIRelOffset
3075/// ::= .cfi_rel_offset register, offset
3076bool GenericAsmParser::ParseDirectiveCFIRelOffset(StringRef,
3077 SMLoc DirectiveLoc) {
3078 int64_t Register = 0;
3079
3080 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
3081 return true;
3082
3083 if (getLexer().isNot(AsmToken::Comma))
3084 return TokError("unexpected token in directive");
3085 Lex();
3086
3087 int64_t Offset = 0;
3088 if (getParser().ParseAbsoluteExpression(Offset))
3089 return true;
3090
Rafael Espindola25f492e2011-04-12 16:12:03 +00003091 getStreamer().EmitCFIRelOffset(Register, Offset);
3092 return false;
Rafael Espindolaa61842b2011-04-11 21:49:50 +00003093}
3094
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00003095static bool isValidEncoding(int64_t Encoding) {
3096 if (Encoding & ~0xff)
3097 return false;
3098
3099 if (Encoding == dwarf::DW_EH_PE_omit)
3100 return true;
3101
3102 const unsigned Format = Encoding & 0xf;
3103 if (Format != dwarf::DW_EH_PE_absptr && Format != dwarf::DW_EH_PE_udata2 &&
3104 Format != dwarf::DW_EH_PE_udata4 && Format != dwarf::DW_EH_PE_udata8 &&
3105 Format != dwarf::DW_EH_PE_sdata2 && Format != dwarf::DW_EH_PE_sdata4 &&
3106 Format != dwarf::DW_EH_PE_sdata8 && Format != dwarf::DW_EH_PE_signed)
3107 return false;
3108
Rafael Espindolacaf11582010-12-29 04:31:26 +00003109 const unsigned Application = Encoding & 0x70;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00003110 if (Application != dwarf::DW_EH_PE_absptr &&
Rafael Espindolacaf11582010-12-29 04:31:26 +00003111 Application != dwarf::DW_EH_PE_pcrel)
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00003112 return false;
3113
3114 return true;
3115}
3116
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003117/// ParseDirectiveCFIPersonalityOrLsda
3118/// ::= .cfi_personality encoding, [symbol_name]
3119/// ::= .cfi_lsda encoding, [symbol_name]
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003120bool GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda(StringRef IDVal,
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003121 SMLoc DirectiveLoc) {
3122 int64_t Encoding = 0;
3123 if (getParser().ParseAbsoluteExpression(Encoding))
3124 return true;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00003125 if (Encoding == dwarf::DW_EH_PE_omit)
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003126 return false;
3127
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00003128 if (!isValidEncoding(Encoding))
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003129 return TokError("unsupported encoding.");
3130
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003131 if (getLexer().isNot(AsmToken::Comma))
3132 return TokError("unexpected token in directive");
3133 Lex();
3134
3135 StringRef Name;
3136 if (getParser().ParseIdentifier(Name))
3137 return TokError("expected identifier in directive");
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003138
3139 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
3140
3141 if (IDVal == ".cfi_personality")
Rafael Espindola066c2f42011-04-12 23:59:07 +00003142 getStreamer().EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003143 else {
3144 assert(IDVal == ".cfi_lsda");
Rafael Espindola066c2f42011-04-12 23:59:07 +00003145 getStreamer().EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003146 }
Rafael Espindola066c2f42011-04-12 23:59:07 +00003147 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003148}
3149
Rafael Espindolafe024d02010-12-28 18:36:23 +00003150/// ParseDirectiveCFIRememberState
3151/// ::= .cfi_remember_state
3152bool GenericAsmParser::ParseDirectiveCFIRememberState(StringRef IDVal,
3153 SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00003154 getStreamer().EmitCFIRememberState();
3155 return false;
Rafael Espindolafe024d02010-12-28 18:36:23 +00003156}
3157
3158/// ParseDirectiveCFIRestoreState
3159/// ::= .cfi_remember_state
3160bool GenericAsmParser::ParseDirectiveCFIRestoreState(StringRef IDVal,
3161 SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00003162 getStreamer().EmitCFIRestoreState();
3163 return false;
Rafael Espindolafe024d02010-12-28 18:36:23 +00003164}
3165
Rafael Espindolac5754392011-04-12 15:31:05 +00003166/// ParseDirectiveCFISameValue
3167/// ::= .cfi_same_value register
3168bool GenericAsmParser::ParseDirectiveCFISameValue(StringRef IDVal,
3169 SMLoc DirectiveLoc) {
3170 int64_t Register = 0;
3171
3172 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
3173 return true;
3174
3175 getStreamer().EmitCFISameValue(Register);
3176
3177 return false;
3178}
3179
Rafael Espindolaed23bdb2011-12-29 21:43:03 +00003180/// ParseDirectiveCFIRestore
3181/// ::= .cfi_restore register
3182bool GenericAsmParser::ParseDirectiveCFIRestore(StringRef IDVal,
Bill Wendling96cb1122012-07-19 00:04:14 +00003183 SMLoc DirectiveLoc) {
Rafael Espindolaed23bdb2011-12-29 21:43:03 +00003184 int64_t Register = 0;
3185 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
3186 return true;
3187
3188 getStreamer().EmitCFIRestore(Register);
3189
3190 return false;
3191}
3192
Rafael Espindola6f0b1812011-12-29 20:24:47 +00003193/// ParseDirectiveCFIEscape
3194/// ::= .cfi_escape expression[,...]
3195bool GenericAsmParser::ParseDirectiveCFIEscape(StringRef IDVal,
Bill Wendling96cb1122012-07-19 00:04:14 +00003196 SMLoc DirectiveLoc) {
Rafael Espindola6f0b1812011-12-29 20:24:47 +00003197 std::string Values;
3198 int64_t CurrValue;
3199 if (getParser().ParseAbsoluteExpression(CurrValue))
3200 return true;
3201
3202 Values.push_back((uint8_t)CurrValue);
3203
3204 while (getLexer().is(AsmToken::Comma)) {
3205 Lex();
3206
3207 if (getParser().ParseAbsoluteExpression(CurrValue))
3208 return true;
3209
3210 Values.push_back((uint8_t)CurrValue);
3211 }
3212
3213 getStreamer().EmitCFIEscape(Values);
3214 return false;
3215}
3216
Rafael Espindola16d7d432012-01-23 21:51:52 +00003217/// ParseDirectiveCFISignalFrame
3218/// ::= .cfi_signal_frame
3219bool GenericAsmParser::ParseDirectiveCFISignalFrame(StringRef Directive,
3220 SMLoc DirectiveLoc) {
3221 if (getLexer().isNot(AsmToken::EndOfStatement))
3222 return Error(getLexer().getLoc(),
3223 "unexpected token in '" + Directive + "' directive");
3224
3225 getStreamer().EmitCFISignalFrame();
3226
3227 return false;
3228}
3229
Daniel Dunbar3c802de2010-07-18 18:38:02 +00003230/// ParseDirectiveMacrosOnOff
3231/// ::= .macros_on
3232/// ::= .macros_off
3233bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
3234 SMLoc DirectiveLoc) {
3235 if (getLexer().isNot(AsmToken::EndOfStatement))
3236 return Error(getLexer().getLoc(),
3237 "unexpected token in '" + Directive + "' directive");
3238
3239 getParser().MacrosEnabled = Directive == ".macros_on";
3240
3241 return false;
3242}
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003243
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003244/// ParseDirectiveMacro
Rafael Espindola65366442011-06-05 02:43:45 +00003245/// ::= .macro name [parameters]
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003246bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
3247 SMLoc DirectiveLoc) {
3248 StringRef Name;
3249 if (getParser().ParseIdentifier(Name))
Rafael Espindolad7ae0f12012-08-21 17:12:05 +00003250 return TokError("expected identifier in '.macro' directive");
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003251
Rafael Espindola8a403d32012-08-08 14:51:03 +00003252 MacroParameters Parameters;
Preston Gurd7b6f2032012-09-19 20:36:12 +00003253 // Argument delimiter is initially unknown. It will be set by
3254 // ParseMacroArgument()
3255 AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
Rafael Espindola65366442011-06-05 02:43:45 +00003256 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Rafael Espindola7996d042012-08-21 16:06:48 +00003257 for (;;) {
3258 MacroParameter Parameter;
Preston Gurd6c9176a2012-09-19 20:29:04 +00003259 if (getParser().ParseIdentifier(Parameter.first))
Rafael Espindolad7ae0f12012-08-21 17:12:05 +00003260 return TokError("expected identifier in '.macro' directive");
Preston Gurd6c9176a2012-09-19 20:29:04 +00003261
3262 if (getLexer().is(AsmToken::Equal)) {
3263 Lex();
Preston Gurd7b6f2032012-09-19 20:36:12 +00003264 if (getParser().ParseMacroArgument(Parameter.second, ArgumentDelimiter))
Preston Gurd6c9176a2012-09-19 20:29:04 +00003265 return true;
3266 }
3267
Rafael Espindola65366442011-06-05 02:43:45 +00003268 Parameters.push_back(Parameter);
3269
Preston Gurd7b6f2032012-09-19 20:36:12 +00003270 if (getLexer().is(AsmToken::Comma))
3271 Lex();
3272 else if (getLexer().is(AsmToken::EndOfStatement))
Rafael Espindola65366442011-06-05 02:43:45 +00003273 break;
Rafael Espindola65366442011-06-05 02:43:45 +00003274 }
3275 }
3276
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003277 // Eat the end of statement.
3278 Lex();
3279
3280 AsmToken EndToken, StartToken = getTok();
3281
3282 // Lex the macro definition.
3283 for (;;) {
3284 // Check whether we have reached the end of the file.
3285 if (getLexer().is(AsmToken::Eof))
3286 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
3287
3288 // Otherwise, check whether we have reach the .endmacro.
3289 if (getLexer().is(AsmToken::Identifier) &&
3290 (getTok().getIdentifier() == ".endm" ||
3291 getTok().getIdentifier() == ".endmacro")) {
3292 EndToken = getTok();
3293 Lex();
3294 if (getLexer().isNot(AsmToken::EndOfStatement))
3295 return TokError("unexpected token in '" + EndToken.getIdentifier() +
3296 "' directive");
3297 break;
3298 }
3299
3300 // Otherwise, scan til the end of the statement.
3301 getParser().EatToEndOfStatement();
3302 }
3303
3304 if (getParser().MacroMap.lookup(Name)) {
3305 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
3306 }
3307
3308 const char *BodyStart = StartToken.getLoc().getPointer();
3309 const char *BodyEnd = EndToken.getLoc().getPointer();
3310 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
Rafael Espindola65366442011-06-05 02:43:45 +00003311 getParser().MacroMap[Name] = new Macro(Name, Body, Parameters);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003312 return false;
3313}
3314
3315/// ParseDirectiveEndMacro
3316/// ::= .endm
3317/// ::= .endmacro
3318bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
Rafael Espindola8a403d32012-08-08 14:51:03 +00003319 SMLoc DirectiveLoc) {
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003320 if (getLexer().isNot(AsmToken::EndOfStatement))
3321 return TokError("unexpected token in '" + Directive + "' directive");
3322
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00003323 // If we are inside a macro instantiation, terminate the current
3324 // instantiation.
3325 if (!getParser().ActiveMacros.empty()) {
3326 getParser().HandleMacroExit();
3327 return false;
3328 }
3329
3330 // Otherwise, this .endmacro is a stray entry in the file; well formed
3331 // .endmacro directives are handled during the macro definition parsing.
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003332 return TokError("unexpected '" + Directive + "' in file, "
3333 "no current macro definition");
3334}
3335
Benjamin Kramerbc3b27c2012-05-12 11:21:46 +00003336/// ParseDirectivePurgeMacro
3337/// ::= .purgem
3338bool GenericAsmParser::ParseDirectivePurgeMacro(StringRef Directive,
3339 SMLoc DirectiveLoc) {
3340 StringRef Name;
3341 if (getParser().ParseIdentifier(Name))
3342 return TokError("expected identifier in '.purgem' directive");
3343
3344 if (getLexer().isNot(AsmToken::EndOfStatement))
3345 return TokError("unexpected token in '.purgem' directive");
3346
3347 StringMap<Macro*>::iterator I = getParser().MacroMap.find(Name);
3348 if (I == getParser().MacroMap.end())
3349 return Error(DirectiveLoc, "macro '" + Name + "' is not defined");
3350
3351 // Undefine the macro.
3352 delete I->getValue();
3353 getParser().MacroMap.erase(I);
3354 return false;
3355}
3356
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003357bool GenericAsmParser::ParseDirectiveLEB128(StringRef DirName, SMLoc) {
Rafael Espindola3ff57092010-11-02 17:22:24 +00003358 getParser().CheckForValidSection();
3359
3360 const MCExpr *Value;
3361
3362 if (getParser().ParseExpression(Value))
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003363 return true;
3364
3365 if (getLexer().isNot(AsmToken::EndOfStatement))
3366 return TokError("unexpected token in directive");
3367
3368 if (DirName[1] == 's')
Rafael Espindola3ff57092010-11-02 17:22:24 +00003369 getStreamer().EmitSLEB128Value(Value);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003370 else
Rafael Espindola3ff57092010-11-02 17:22:24 +00003371 getStreamer().EmitULEB128Value(Value);
3372
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003373 return false;
3374}
3375
Rafael Espindola761cb062012-06-03 23:57:14 +00003376Macro *AsmParser::ParseMacroLikeBody(SMLoc DirectiveLoc) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003377 AsmToken EndToken, StartToken = getTok();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003378
Rafael Espindola761cb062012-06-03 23:57:14 +00003379 unsigned NestLevel = 0;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003380 for (;;) {
3381 // Check whether we have reached the end of the file.
Rafael Espindola761cb062012-06-03 23:57:14 +00003382 if (getLexer().is(AsmToken::Eof)) {
3383 Error(DirectiveLoc, "no matching '.endr' in definition");
3384 return 0;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003385 }
3386
Rafael Espindola761cb062012-06-03 23:57:14 +00003387 if (Lexer.is(AsmToken::Identifier) &&
3388 (getTok().getIdentifier() == ".rept")) {
3389 ++NestLevel;
3390 }
3391
3392 // Otherwise, check whether we have reached the .endr.
3393 if (Lexer.is(AsmToken::Identifier) &&
3394 getTok().getIdentifier() == ".endr") {
3395 if (NestLevel == 0) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003396 EndToken = getTok();
3397 Lex();
Rafael Espindola761cb062012-06-03 23:57:14 +00003398 if (Lexer.isNot(AsmToken::EndOfStatement)) {
3399 TokError("unexpected token in '.endr' directive");
3400 return 0;
3401 }
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003402 break;
3403 }
Rafael Espindola761cb062012-06-03 23:57:14 +00003404 --NestLevel;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003405 }
3406
Rafael Espindola761cb062012-06-03 23:57:14 +00003407 // Otherwise, scan till the end of the statement.
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003408 EatToEndOfStatement();
3409 }
3410
3411 const char *BodyStart = StartToken.getLoc().getPointer();
3412 const char *BodyEnd = EndToken.getLoc().getPointer();
3413 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
3414
Rafael Espindola761cb062012-06-03 23:57:14 +00003415 // We Are Anonymous.
3416 StringRef Name;
Rafael Espindola8a403d32012-08-08 14:51:03 +00003417 MacroParameters Parameters;
Rafael Espindola761cb062012-06-03 23:57:14 +00003418 return new Macro(Name, Body, Parameters);
3419}
3420
3421void AsmParser::InstantiateMacroLikeBody(Macro *M, SMLoc DirectiveLoc,
3422 raw_svector_ostream &OS) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003423 OS << ".endr\n";
3424
3425 MemoryBuffer *Instantiation =
3426 MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
3427
Rafael Espindola761cb062012-06-03 23:57:14 +00003428 // Create the macro instantiation object and add to the current macro
3429 // instantiation stack.
3430 MacroInstantiation *MI = new MacroInstantiation(M, DirectiveLoc,
3431 getTok().getLoc(),
3432 Instantiation);
3433 ActiveMacros.push_back(MI);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003434
Rafael Espindola761cb062012-06-03 23:57:14 +00003435 // Jump to the macro instantiation and prime the lexer.
3436 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
3437 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
3438 Lex();
3439}
3440
3441bool AsmParser::ParseDirectiveRept(SMLoc DirectiveLoc) {
3442 int64_t Count;
3443 if (ParseAbsoluteExpression(Count))
3444 return TokError("unexpected token in '.rept' directive");
3445
3446 if (Count < 0)
3447 return TokError("Count is negative");
3448
3449 if (Lexer.isNot(AsmToken::EndOfStatement))
3450 return TokError("unexpected token in '.rept' directive");
3451
3452 // Eat the end of statement.
3453 Lex();
3454
3455 // Lex the rept definition.
3456 Macro *M = ParseMacroLikeBody(DirectiveLoc);
3457 if (!M)
3458 return true;
3459
3460 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3461 // to hold the macro body with substitutions.
3462 SmallString<256> Buf;
Rafael Espindola8a403d32012-08-08 14:51:03 +00003463 MacroParameters Parameters;
3464 MacroArguments A;
Rafael Espindola761cb062012-06-03 23:57:14 +00003465 raw_svector_ostream OS(Buf);
3466 while (Count--) {
3467 if (expandMacro(OS, M->Body, Parameters, A, getTok().getLoc()))
3468 return true;
3469 }
3470 InstantiateMacroLikeBody(M, DirectiveLoc, OS);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003471
3472 return false;
3473}
3474
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003475/// ParseDirectiveIrp
3476/// ::= .irp symbol,values
3477bool AsmParser::ParseDirectiveIrp(SMLoc DirectiveLoc) {
Rafael Espindola8a403d32012-08-08 14:51:03 +00003478 MacroParameters Parameters;
3479 MacroParameter Parameter;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003480
Preston Gurd6c9176a2012-09-19 20:29:04 +00003481 if (ParseIdentifier(Parameter.first))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003482 return TokError("expected identifier in '.irp' directive");
3483
3484 Parameters.push_back(Parameter);
3485
3486 if (Lexer.isNot(AsmToken::Comma))
3487 return TokError("expected comma in '.irp' directive");
3488
3489 Lex();
3490
Rafael Espindola8a403d32012-08-08 14:51:03 +00003491 MacroArguments A;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003492 if (ParseMacroArguments(0, A))
3493 return true;
3494
3495 // Eat the end of statement.
3496 Lex();
3497
3498 // Lex the irp definition.
3499 Macro *M = ParseMacroLikeBody(DirectiveLoc);
3500 if (!M)
3501 return true;
3502
3503 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3504 // to hold the macro body with substitutions.
3505 SmallString<256> Buf;
3506 raw_svector_ostream OS(Buf);
3507
Rafael Espindola7996d042012-08-21 16:06:48 +00003508 for (MacroArguments::iterator i = A.begin(), e = A.end(); i != e; ++i) {
3509 MacroArguments Args;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003510 Args.push_back(*i);
3511
3512 if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
3513 return true;
3514 }
3515
3516 InstantiateMacroLikeBody(M, DirectiveLoc, OS);
3517
3518 return false;
3519}
3520
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003521/// ParseDirectiveIrpc
3522/// ::= .irpc symbol,values
3523bool AsmParser::ParseDirectiveIrpc(SMLoc DirectiveLoc) {
Rafael Espindola8a403d32012-08-08 14:51:03 +00003524 MacroParameters Parameters;
3525 MacroParameter Parameter;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003526
Preston Gurd6c9176a2012-09-19 20:29:04 +00003527 if (ParseIdentifier(Parameter.first))
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003528 return TokError("expected identifier in '.irpc' directive");
3529
3530 Parameters.push_back(Parameter);
3531
3532 if (Lexer.isNot(AsmToken::Comma))
3533 return TokError("expected comma in '.irpc' directive");
3534
3535 Lex();
3536
Rafael Espindola8a403d32012-08-08 14:51:03 +00003537 MacroArguments A;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003538 if (ParseMacroArguments(0, A))
3539 return true;
3540
3541 if (A.size() != 1 || A.front().size() != 1)
3542 return TokError("unexpected token in '.irpc' directive");
3543
3544 // Eat the end of statement.
3545 Lex();
3546
3547 // Lex the irpc definition.
3548 Macro *M = ParseMacroLikeBody(DirectiveLoc);
3549 if (!M)
3550 return true;
3551
3552 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3553 // to hold the macro body with substitutions.
3554 SmallString<256> Buf;
3555 raw_svector_ostream OS(Buf);
3556
3557 StringRef Values = A.front().front().getString();
3558 std::size_t I, End = Values.size();
3559 for (I = 0; I < End; ++I) {
3560 MacroArgument Arg;
3561 Arg.push_back(AsmToken(AsmToken::Identifier, Values.slice(I, I+1)));
3562
Rafael Espindola8a403d32012-08-08 14:51:03 +00003563 MacroArguments Args;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003564 Args.push_back(Arg);
3565
3566 if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
3567 return true;
3568 }
3569
3570 InstantiateMacroLikeBody(M, DirectiveLoc, OS);
3571
3572 return false;
3573}
3574
Rafael Espindola761cb062012-06-03 23:57:14 +00003575bool AsmParser::ParseDirectiveEndr(SMLoc DirectiveLoc) {
3576 if (ActiveMacros.empty())
Preston Gurd6579eea2012-09-19 20:23:43 +00003577 return TokError("unmatched '.endr' directive");
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003578
3579 // The only .repl that should get here are the ones created by
Rafael Espindola761cb062012-06-03 23:57:14 +00003580 // InstantiateMacroLikeBody.
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003581 assert(getLexer().is(AsmToken::EndOfStatement));
3582
Rafael Espindola761cb062012-06-03 23:57:14 +00003583 HandleMacroExit();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003584 return false;
3585}
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003586
Eli Friedman2128aae2012-10-22 23:58:19 +00003587bool AsmParser::ParseDirectiveEmit(SMLoc IDLoc, ParseStatementInfo &Info) {
3588 const MCExpr *Value;
3589 SMLoc ExprLoc = getLexer().getLoc();
3590 if (ParseExpression(Value))
3591 return true;
3592 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value);
3593 if (!MCE)
3594 return Error(ExprLoc, "unexpected expression in _emit");
3595 uint64_t IntValue = MCE->getValue();
3596 if (!isUIntN(8, IntValue) && !isIntN(8, IntValue))
3597 return Error(ExprLoc, "literal value out of range for directive");
3598
3599 Info.AsmRewrites->push_back(AsmRewrite(AOK_Emit, IDLoc, 5));
3600 return false;
3601}
3602
Chad Rosierb1f8c132012-10-18 15:49:34 +00003603bool AsmParser::ParseMSInlineAsm(void *AsmLoc, std::string &AsmString,
3604 unsigned &NumOutputs, unsigned &NumInputs,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003605 SmallVectorImpl<std::pair<void *, bool> > &OpDecls,
Chad Rosierb1f8c132012-10-18 15:49:34 +00003606 SmallVectorImpl<std::string> &Constraints,
Chad Rosierb1f8c132012-10-18 15:49:34 +00003607 SmallVectorImpl<std::string> &Clobbers,
3608 const MCInstrInfo *MII,
3609 const MCInstPrinter *IP,
3610 MCAsmParserSemaCallback &SI) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00003611 SmallVector<void *, 4> InputDecls;
3612 SmallVector<void *, 4> OutputDecls;
3613 SmallVector<bool, 4> InputDeclsOffsetOf;
3614 SmallVector<bool, 4> OutputDeclsOffsetOf;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003615 SmallVector<std::string, 4> InputConstraints;
3616 SmallVector<std::string, 4> OutputConstraints;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003617 std::set<std::string> ClobberRegs;
3618
Chad Rosier4e472d22012-10-20 01:02:45 +00003619 SmallVector<struct AsmRewrite, 4> AsmStrRewrites;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003620
3621 // Prime the lexer.
3622 Lex();
3623
3624 // While we have input, parse each statement.
3625 unsigned InputIdx = 0;
3626 unsigned OutputIdx = 0;
3627 while (getLexer().isNot(AsmToken::Eof)) {
Eli Friedman2128aae2012-10-22 23:58:19 +00003628 ParseStatementInfo Info(&AsmStrRewrites);
3629 if (ParseStatement(Info))
Chad Rosierab450e42012-10-19 22:57:33 +00003630 return true;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003631
Eli Friedman2128aae2012-10-22 23:58:19 +00003632 if (Info.Opcode != ~0U) {
3633 const MCInstrDesc &Desc = MII->get(Info.Opcode);
Chad Rosierb1f8c132012-10-18 15:49:34 +00003634
3635 // Build the list of clobbers, outputs and inputs.
Eli Friedman2128aae2012-10-22 23:58:19 +00003636 for (unsigned i = 1, e = Info.ParsedOperands.size(); i != e; ++i) {
3637 MCParsedAsmOperand *Operand = Info.ParsedOperands[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00003638
3639 // Immediate.
3640 if (Operand->isImm()) {
Chad Rosier4e472d22012-10-20 01:02:45 +00003641 AsmStrRewrites.push_back(AsmRewrite(AOK_Imm,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003642 Operand->getStartLoc(),
3643 Operand->getNameLen()));
Chad Rosierb1f8c132012-10-18 15:49:34 +00003644 continue;
3645 }
3646
3647 // Register operand.
Chad Rosierc0a14b82012-10-24 17:22:29 +00003648 if (Operand->isReg() && !Operand->isOffsetOf()) {
Chad Rosierb1f8c132012-10-18 15:49:34 +00003649 unsigned NumDefs = Desc.getNumDefs();
3650 // Clobber.
3651 if (NumDefs && Operand->getMCOperandNum() < NumDefs) {
3652 std::string Reg;
3653 raw_string_ostream OS(Reg);
3654 IP->printRegName(OS, Operand->getReg());
3655 ClobberRegs.insert(StringRef(OS.str()));
3656 }
3657 continue;
3658 }
3659
3660 // Expr/Input or Output.
Chad Rosier32989592012-10-18 20:27:15 +00003661 unsigned Size;
3662 void *OpDecl = SI.LookupInlineAsmIdentifier(Operand->getName(), AsmLoc,
3663 Size);
Chad Rosierc8dd27e2012-10-18 19:39:30 +00003664 if (OpDecl) {
Chad Rosierb1f8c132012-10-18 15:49:34 +00003665 bool isOutput = (i == 1) && Desc.mayStore();
Chad Rosierc0a14b82012-10-24 17:22:29 +00003666 if (!Operand->isOffsetOf() && Operand->needSizeDirective())
Chad Rosier4e472d22012-10-20 01:02:45 +00003667 AsmStrRewrites.push_back(AsmRewrite(AOK_SizeDirective,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003668 Operand->getStartLoc(), 0,
3669 Operand->getMemSize()));
3670
3671 // Don't emit the offset directive.
3672 if (Operand->isOffsetOf())
3673 AsmStrRewrites.push_back(AsmRewrite(AOK_Skip,
3674 Operand->getOffsetOfLoc(), 7));
3675
Chad Rosierb1f8c132012-10-18 15:49:34 +00003676 if (isOutput) {
3677 std::string Constraint = "=";
3678 ++InputIdx;
Chad Rosierc8dd27e2012-10-18 19:39:30 +00003679 OutputDecls.push_back(OpDecl);
Chad Rosier5a719fc2012-10-23 17:43:43 +00003680 OutputDeclsOffsetOf.push_back(Operand->isOffsetOf());
Chad Rosierb1f8c132012-10-18 15:49:34 +00003681 Constraint += Operand->getConstraint().str();
3682 OutputConstraints.push_back(Constraint);
Chad Rosier4e472d22012-10-20 01:02:45 +00003683 AsmStrRewrites.push_back(AsmRewrite(AOK_Output,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003684 Operand->getStartLoc(),
3685 Operand->getNameLen()));
Chad Rosierb1f8c132012-10-18 15:49:34 +00003686 } else {
Chad Rosierc8dd27e2012-10-18 19:39:30 +00003687 InputDecls.push_back(OpDecl);
Chad Rosier5a719fc2012-10-23 17:43:43 +00003688 InputDeclsOffsetOf.push_back(Operand->isOffsetOf());
Chad Rosierb1f8c132012-10-18 15:49:34 +00003689 InputConstraints.push_back(Operand->getConstraint().str());
Chad Rosier4e472d22012-10-20 01:02:45 +00003690 AsmStrRewrites.push_back(AsmRewrite(AOK_Input,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003691 Operand->getStartLoc(),
3692 Operand->getNameLen()));
Chad Rosierb1f8c132012-10-18 15:49:34 +00003693 }
3694 }
3695 }
Chad Rosierb1f8c132012-10-18 15:49:34 +00003696 }
3697 }
3698
3699 // Set the number of Outputs and Inputs.
Chad Rosierc8dd27e2012-10-18 19:39:30 +00003700 NumOutputs = OutputDecls.size();
3701 NumInputs = InputDecls.size();
Chad Rosierb1f8c132012-10-18 15:49:34 +00003702
3703 // Set the unique clobbers.
3704 for (std::set<std::string>::iterator I = ClobberRegs.begin(),
3705 E = ClobberRegs.end(); I != E; ++I)
3706 Clobbers.push_back(*I);
3707
3708 // Merge the various outputs and inputs. Output are expected first.
3709 if (NumOutputs || NumInputs) {
3710 unsigned NumExprs = NumOutputs + NumInputs;
Chad Rosierc8dd27e2012-10-18 19:39:30 +00003711 OpDecls.resize(NumExprs);
Chad Rosierb1f8c132012-10-18 15:49:34 +00003712 Constraints.resize(NumExprs);
Chad Rosier5a719fc2012-10-23 17:43:43 +00003713 // FIXME: Constraints are hard coded to 'm', but we need an 'r'
3714 // constraint for offsetof. This needs to be cleaned up!
Chad Rosierb1f8c132012-10-18 15:49:34 +00003715 for (unsigned i = 0; i < NumOutputs; ++i) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00003716 OpDecls[i] = std::make_pair(OutputDecls[i], OutputDeclsOffsetOf[i]);
3717 Constraints[i] = OutputDeclsOffsetOf[i] ? "=r" : OutputConstraints[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00003718 }
3719 for (unsigned i = 0, j = NumOutputs; i < NumInputs; ++i, ++j) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00003720 OpDecls[j] = std::make_pair(InputDecls[i], InputDeclsOffsetOf[i]);
3721 Constraints[j] = InputDeclsOffsetOf[i] ? "r" : InputConstraints[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00003722 }
3723 }
3724
3725 // Build the IR assembly string.
3726 std::string AsmStringIR;
Chad Rosier4e472d22012-10-20 01:02:45 +00003727 AsmRewriteKind PrevKind = AOK_Imm;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003728 raw_string_ostream OS(AsmStringIR);
3729 const char *Start = SrcMgr.getMemoryBuffer(0)->getBufferStart();
Chad Rosier4e472d22012-10-20 01:02:45 +00003730 for (SmallVectorImpl<struct AsmRewrite>::iterator
Chad Rosierb1f8c132012-10-18 15:49:34 +00003731 I = AsmStrRewrites.begin(), E = AsmStrRewrites.end(); I != E; ++I) {
3732 const char *Loc = (*I).Loc.getPointer();
Chad Rosier96d58e62012-10-19 20:57:14 +00003733
Chad Rosier4e472d22012-10-20 01:02:45 +00003734 AsmRewriteKind Kind = (*I).Kind;
Chad Rosier96d58e62012-10-19 20:57:14 +00003735
3736 // Emit everything up to the immediate/expression. If the previous rewrite
3737 // was a size directive, then this has already been done.
3738 if (PrevKind != AOK_SizeDirective)
3739 OS << StringRef(Start, Loc - Start);
3740 PrevKind = Kind;
3741
Chad Rosier5a719fc2012-10-23 17:43:43 +00003742 // Skip the original expression.
3743 if (Kind == AOK_Skip) {
3744 Start = Loc + (*I).Len;
3745 continue;
3746 }
3747
Chad Rosierb1f8c132012-10-18 15:49:34 +00003748 // Rewrite expressions in $N notation.
Chad Rosier96d58e62012-10-19 20:57:14 +00003749 switch (Kind) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00003750 default: break;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003751 case AOK_Imm:
3752 OS << Twine("$$") + StringRef(Loc, (*I).Len);
3753 break;
3754 case AOK_Input:
3755 OS << '$';
3756 OS << InputIdx++;
3757 break;
3758 case AOK_Output:
3759 OS << '$';
3760 OS << OutputIdx++;
3761 break;
Chad Rosier96d58e62012-10-19 20:57:14 +00003762 case AOK_SizeDirective:
Chad Rosier6a020a72012-10-25 20:41:34 +00003763 switch((*I).Val) {
Chad Rosier96d58e62012-10-19 20:57:14 +00003764 default: break;
3765 case 8: OS << "byte ptr "; break;
3766 case 16: OS << "word ptr "; break;
3767 case 32: OS << "dword ptr "; break;
3768 case 64: OS << "qword ptr "; break;
3769 case 80: OS << "xword ptr "; break;
3770 case 128: OS << "xmmword ptr "; break;
3771 case 256: OS << "ymmword ptr "; break;
3772 }
Eli Friedman2128aae2012-10-22 23:58:19 +00003773 break;
3774 case AOK_Emit:
3775 OS << ".byte";
3776 break;
Chad Rosier6a020a72012-10-25 20:41:34 +00003777 case AOK_DotOperator:
3778 OS << (*I).Val;
3779 break;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003780 }
Chad Rosier96d58e62012-10-19 20:57:14 +00003781
Chad Rosierb1f8c132012-10-18 15:49:34 +00003782 // Skip the original expression.
Chad Rosier96d58e62012-10-19 20:57:14 +00003783 if (Kind != AOK_SizeDirective)
3784 Start = Loc + (*I).Len;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003785 }
3786
3787 // Emit the remainder of the asm string.
3788 const char *AsmEnd = SrcMgr.getMemoryBuffer(0)->getBufferEnd();
3789 if (Start != AsmEnd)
3790 OS << StringRef(Start, AsmEnd - Start);
3791
3792 AsmString = OS.str();
3793 return false;
3794}
3795
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003796/// \brief Create an MCAsmParser instance.
Jim Grosbach1b84cce2011-08-16 18:33:49 +00003797MCAsmParser *llvm::createMCAsmParser(SourceMgr &SM,
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003798 MCContext &C, MCStreamer &Out,
3799 const MCAsmInfo &MAI) {
Jim Grosbach1b84cce2011-08-16 18:33:49 +00003800 return new AsmParser(SM, C, Out, MAI);
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003801}