blob: b87a239a55430094229d692b140c02c8c476ac6f [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
Eli Friedman2128aae2012-10-22 23:58:19 +000089struct AsmRewrite;
90struct 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 Rosier8f138d12012-10-15 17:19:13 +00001368 bool HadError = getTargetParser().ParseInstruction(OpcodeStr.str(), IDLoc,
Eli Friedman2128aae2012-10-22 23:58:19 +00001369 Info.ParsedOperands);
Chris Lattner2cf5f142009-06-22 01:29:09 +00001370
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001371 // Dump the parsed representation, if requested.
1372 if (getShowParsedOperands()) {
1373 SmallString<256> Str;
1374 raw_svector_ostream OS(Str);
1375 OS << "parsed instruction: [";
Eli Friedman2128aae2012-10-22 23:58:19 +00001376 for (unsigned i = 0; i != Info.ParsedOperands.size(); ++i) {
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001377 if (i != 0)
1378 OS << ", ";
Eli Friedman2128aae2012-10-22 23:58:19 +00001379 Info.ParsedOperands[i]->print(OS);
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001380 }
1381 OS << "]";
1382
Chris Lattner3f2d5f62011-10-16 05:43:57 +00001383 PrintMessage(IDLoc, SourceMgr::DK_Note, OS.str());
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001384 }
1385
Kevin Enderby613b7572011-11-01 22:27:22 +00001386 // If we are generating dwarf for assembly source files and the current
1387 // section is the initial text section then generate a .loc directive for
1388 // the instruction.
1389 if (!HadError && getContext().getGenDwarfForAssembly() &&
1390 getContext().getGenDwarfSection() == getStreamer().getCurrentSection() ) {
1391 getStreamer().EmitDwarfLocDirective(getContext().getGenDwarfFileNumber(),
1392 SrcMgr.FindLineNumber(IDLoc, CurBuffer),
1393 0, DWARF2_LINE_DEFAULT_IS_STMT ?
Kevin Enderbydba9a172011-11-02 17:56:38 +00001394 DWARF2_FLAG_IS_STMT : 0, 0, 0,
Kevin Enderby613b7572011-11-01 22:27:22 +00001395 StringRef());
1396 }
1397
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001398 // If parsing succeeded, match the instruction.
Chad Rosier84125ca2012-10-13 00:26:04 +00001399 if (!HadError) {
Chad Rosier84125ca2012-10-13 00:26:04 +00001400 unsigned ErrorInfo;
Eli Friedman2128aae2012-10-22 23:58:19 +00001401 HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, Info.Opcode,
1402 Info.ParsedOperands,
1403 Out, ErrorInfo,
Chad Rosier84125ca2012-10-13 00:26:04 +00001404 ParsingInlineAsm);
1405 }
Chris Lattner98986712010-01-14 22:21:20 +00001406
Chris Lattnercbf8a982010-09-11 16:18:25 +00001407 // Don't skip the rest of the line, the instruction parser is responsible for
1408 // that.
1409 return false;
Chris Lattner27aa7d22009-06-21 20:16:42 +00001410}
Chris Lattner9a023f72009-06-24 04:43:34 +00001411
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001412/// EatToEndOfLine uses the Lexer to eat the characters to the end of the line
1413/// since they may not be able to be tokenized to get to the end of line token.
1414void AsmParser::EatToEndOfLine() {
Rafael Espindola12ae5272011-10-19 18:48:52 +00001415 if (!Lexer.is(AsmToken::EndOfStatement))
1416 Lexer.LexUntilEndOfLine();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001417 // Eat EOL.
1418 Lex();
1419}
1420
1421/// ParseCppHashLineFilenameComment as this:
1422/// ::= # number "filename"
1423/// or just as a full line comment if it doesn't have a number and a string.
1424bool AsmParser::ParseCppHashLineFilenameComment(const SMLoc &L) {
1425 Lex(); // Eat the hash token.
1426
1427 if (getLexer().isNot(AsmToken::Integer)) {
1428 // Consume the line since in cases it is not a well-formed line directive,
1429 // as if were simply a full line comment.
1430 EatToEndOfLine();
1431 return false;
1432 }
1433
1434 int64_t LineNumber = getTok().getIntVal();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001435 Lex();
1436
1437 if (getLexer().isNot(AsmToken::String)) {
1438 EatToEndOfLine();
1439 return false;
1440 }
1441
1442 StringRef Filename = getTok().getString();
1443 // Get rid of the enclosing quotes.
1444 Filename = Filename.substr(1, Filename.size()-2);
1445
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001446 // Save the SMLoc, Filename and LineNumber for later use by diagnostics.
1447 CppHashLoc = L;
1448 CppHashFilename = Filename;
1449 CppHashLineNumber = LineNumber;
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001450
1451 // Ignore any trailing characters, they're just comment.
1452 EatToEndOfLine();
1453 return false;
1454}
1455
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001456/// DiagHandler - will use the last parsed cpp hash line filename comment
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001457/// for the Filename and LineNo if any in the diagnostic.
1458void AsmParser::DiagHandler(const SMDiagnostic &Diag, void *Context) {
1459 const AsmParser *Parser = static_cast<const AsmParser*>(Context);
1460 raw_ostream &OS = errs();
1461
1462 const SourceMgr &DiagSrcMgr = *Diag.getSourceMgr();
1463 const SMLoc &DiagLoc = Diag.getLoc();
1464 int DiagBuf = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
1465 int CppHashBuf = Parser->SrcMgr.FindBufferContainingLoc(Parser->CppHashLoc);
1466
1467 // Like SourceMgr::PrintMessage() we need to print the include stack if any
1468 // before printing the message.
1469 int DiagCurBuffer = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
Benjamin Kramer04a04262011-10-16 10:48:29 +00001470 if (!Parser->SavedDiagHandler && DiagCurBuffer > 0) {
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001471 SMLoc ParentIncludeLoc = DiagSrcMgr.getParentIncludeLoc(DiagCurBuffer);
1472 DiagSrcMgr.PrintIncludeStack(ParentIncludeLoc, OS);
1473 }
1474
1475 // If we have not parsed a cpp hash line filename comment or the source
1476 // manager changed or buffer changed (like in a nested include) then just
1477 // print the normal diagnostic using its Filename and LineNo.
1478 if (!Parser->CppHashLineNumber ||
1479 &DiagSrcMgr != &Parser->SrcMgr ||
1480 DiagBuf != CppHashBuf) {
Benjamin Kramer04a04262011-10-16 10:48:29 +00001481 if (Parser->SavedDiagHandler)
1482 Parser->SavedDiagHandler(Diag, Parser->SavedDiagContext);
1483 else
1484 Diag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001485 return;
1486 }
1487
1488 // Use the CppHashFilename and calculate a line number based on the
1489 // CppHashLoc and CppHashLineNumber relative to this Diag's SMLoc for
1490 // the diagnostic.
1491 const std::string Filename = Parser->CppHashFilename;
1492
1493 int DiagLocLineNo = DiagSrcMgr.FindLineNumber(DiagLoc, DiagBuf);
1494 int CppHashLocLineNo =
1495 Parser->SrcMgr.FindLineNumber(Parser->CppHashLoc, CppHashBuf);
1496 int LineNo = Parser->CppHashLineNumber - 1 +
1497 (DiagLocLineNo - CppHashLocLineNo);
1498
Chris Lattnerd8b7aa22011-10-16 04:47:35 +00001499 SMDiagnostic NewDiag(*Diag.getSourceMgr(), Diag.getLoc(),
1500 Filename, LineNo, Diag.getColumnNo(),
Chris Lattner3f2d5f62011-10-16 05:43:57 +00001501 Diag.getKind(), Diag.getMessage(),
Chris Lattner462b43c2011-10-16 05:47:55 +00001502 Diag.getLineContents(), Diag.getRanges());
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001503
Benjamin Kramer04a04262011-10-16 10:48:29 +00001504 if (Parser->SavedDiagHandler)
1505 Parser->SavedDiagHandler(NewDiag, Parser->SavedDiagContext);
1506 else
1507 NewDiag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001508}
1509
Rafael Espindola799aacf2012-08-21 18:29:30 +00001510// FIXME: This is mostly duplicated from the function in AsmLexer.cpp. The
1511// difference being that that function accepts '@' as part of identifiers and
1512// we can't do that. AsmLexer.cpp should probably be changed to handle
1513// '@' as a special case when needed.
1514static bool isIdentifierChar(char c) {
1515 return isalnum(c) || c == '_' || c == '$' || c == '.';
1516}
1517
Rafael Espindola761cb062012-06-03 23:57:14 +00001518bool AsmParser::expandMacro(raw_svector_ostream &OS, StringRef Body,
Rafael Espindola8a403d32012-08-08 14:51:03 +00001519 const MacroParameters &Parameters,
1520 const MacroArguments &A,
Rafael Espindola65366442011-06-05 02:43:45 +00001521 const SMLoc &L) {
Rafael Espindola65366442011-06-05 02:43:45 +00001522 unsigned NParameters = Parameters.size();
1523 if (NParameters != 0 && NParameters != A.size())
1524 return Error(L, "Wrong number of arguments");
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001525
Preston Gurd7b6f2032012-09-19 20:36:12 +00001526 // A macro without parameters is handled differently on Darwin:
1527 // gas accepts no arguments and does no substitutions
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001528 while (!Body.empty()) {
1529 // Scan for the next substitution.
1530 std::size_t End = Body.size(), Pos = 0;
1531 for (; Pos != End; ++Pos) {
1532 // Check for a substitution or escape.
Rafael Espindola65366442011-06-05 02:43:45 +00001533 if (!NParameters) {
1534 // This macro has no parameters, look for $0, $1, etc.
1535 if (Body[Pos] != '$' || Pos + 1 == End)
1536 continue;
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001537
Rafael Espindola65366442011-06-05 02:43:45 +00001538 char Next = Body[Pos + 1];
1539 if (Next == '$' || Next == 'n' || isdigit(Next))
1540 break;
1541 } else {
1542 // This macro has parameters, look for \foo, \bar, etc.
1543 if (Body[Pos] == '\\' && Pos + 1 != End)
1544 break;
1545 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001546 }
1547
1548 // Add the prefix.
1549 OS << Body.slice(0, Pos);
1550
1551 // Check if we reached the end.
1552 if (Pos == End)
1553 break;
1554
Rafael Espindola65366442011-06-05 02:43:45 +00001555 if (!NParameters) {
1556 switch (Body[Pos+1]) {
1557 // $$ => $
1558 case '$':
1559 OS << '$';
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001560 break;
1561
Rafael Espindola65366442011-06-05 02:43:45 +00001562 // $n => number of arguments
1563 case 'n':
1564 OS << A.size();
1565 break;
1566
1567 // $[0-9] => argument
1568 default: {
1569 // Missing arguments are ignored.
1570 unsigned Index = Body[Pos+1] - '0';
1571 if (Index >= A.size())
1572 break;
1573
1574 // Otherwise substitute with the token values, with spaces eliminated.
Rafael Espindola28c1f6662012-06-03 22:41:23 +00001575 for (MacroArgument::const_iterator it = A[Index].begin(),
Rafael Espindola65366442011-06-05 02:43:45 +00001576 ie = A[Index].end(); it != ie; ++it)
1577 OS << it->getString();
1578 break;
1579 }
1580 }
1581 Pos += 2;
1582 } else {
1583 unsigned I = Pos + 1;
Rafael Espindola799aacf2012-08-21 18:29:30 +00001584 while (isIdentifierChar(Body[I]) && I + 1 != End)
Rafael Espindola65366442011-06-05 02:43:45 +00001585 ++I;
1586
1587 const char *Begin = Body.data() + Pos +1;
1588 StringRef Argument(Begin, I - (Pos +1));
1589 unsigned Index = 0;
1590 for (; Index < NParameters; ++Index)
Preston Gurd6c9176a2012-09-19 20:29:04 +00001591 if (Parameters[Index].first == Argument)
Rafael Espindola65366442011-06-05 02:43:45 +00001592 break;
1593
Preston Gurd7b6f2032012-09-19 20:36:12 +00001594 if (Index == NParameters) {
1595 if (Body[Pos+1] == '(' && Body[Pos+2] == ')')
1596 Pos += 3;
1597 else {
1598 OS << '\\' << Argument;
1599 Pos = I;
1600 }
1601 } else {
1602 for (MacroArgument::const_iterator it = A[Index].begin(),
1603 ie = A[Index].end(); it != ie; ++it)
1604 if (it->getKind() == AsmToken::String)
1605 OS << it->getStringContents();
1606 else
1607 OS << it->getString();
Rafael Espindola65366442011-06-05 02:43:45 +00001608
Preston Gurd7b6f2032012-09-19 20:36:12 +00001609 Pos += 1 + Argument.size();
1610 }
Rafael Espindola65366442011-06-05 02:43:45 +00001611 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001612 // Update the scan point.
Rafael Espindola65366442011-06-05 02:43:45 +00001613 Body = Body.substr(Pos);
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001614 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001615
Rafael Espindola65366442011-06-05 02:43:45 +00001616 return false;
1617}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001618
Rafael Espindola65366442011-06-05 02:43:45 +00001619MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
1620 MemoryBuffer *I)
1621 : TheMacro(M), Instantiation(I), InstantiationLoc(IL), ExitLoc(EL)
1622{
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001623}
1624
Preston Gurd7b6f2032012-09-19 20:36:12 +00001625static bool IsOperator(AsmToken::TokenKind kind)
1626{
1627 switch (kind)
1628 {
1629 default:
1630 return false;
1631 case AsmToken::Plus:
1632 case AsmToken::Minus:
1633 case AsmToken::Tilde:
1634 case AsmToken::Slash:
1635 case AsmToken::Star:
1636 case AsmToken::Dot:
1637 case AsmToken::Equal:
1638 case AsmToken::EqualEqual:
1639 case AsmToken::Pipe:
1640 case AsmToken::PipePipe:
1641 case AsmToken::Caret:
1642 case AsmToken::Amp:
1643 case AsmToken::AmpAmp:
1644 case AsmToken::Exclaim:
1645 case AsmToken::ExclaimEqual:
1646 case AsmToken::Percent:
1647 case AsmToken::Less:
1648 case AsmToken::LessEqual:
1649 case AsmToken::LessLess:
1650 case AsmToken::LessGreater:
1651 case AsmToken::Greater:
1652 case AsmToken::GreaterEqual:
1653 case AsmToken::GreaterGreater:
1654 return true;
1655 }
1656}
1657
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001658/// ParseMacroArgument - Extract AsmTokens for a macro argument.
1659/// This is used for both default macro parameter values and the
1660/// arguments in macro invocations
Preston Gurd7b6f2032012-09-19 20:36:12 +00001661bool AsmParser::ParseMacroArgument(MacroArgument &MA,
1662 AsmToken::TokenKind &ArgumentDelimiter) {
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001663 unsigned ParenLevel = 0;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001664 unsigned AddTokens = 0;
1665
1666 // gas accepts arguments separated by whitespace, except on Darwin
1667 if (!IsDarwin)
1668 Lexer.setSkipSpace(false);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001669
1670 for (;;) {
Preston Gurd7b6f2032012-09-19 20:36:12 +00001671 if (Lexer.is(AsmToken::Eof) || Lexer.is(AsmToken::Equal)) {
1672 Lexer.setSkipSpace(true);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001673 return TokError("unexpected token in macro instantiation");
Preston Gurd7b6f2032012-09-19 20:36:12 +00001674 }
1675
1676 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1677 // Spaces and commas cannot be mixed to delimit parameters
1678 if (ArgumentDelimiter == AsmToken::Eof)
1679 ArgumentDelimiter = AsmToken::Comma;
1680 else if (ArgumentDelimiter != AsmToken::Comma) {
1681 Lexer.setSkipSpace(true);
1682 return TokError("expected ' ' for macro argument separator");
1683 }
1684 break;
1685 }
1686
1687 if (Lexer.is(AsmToken::Space)) {
1688 Lex(); // Eat spaces
1689
1690 // Spaces can delimit parameters, but could also be part an expression.
1691 // If the token after a space is an operator, add the token and the next
1692 // one into this argument
1693 if (ArgumentDelimiter == AsmToken::Space ||
1694 ArgumentDelimiter == AsmToken::Eof) {
1695 if (IsOperator(Lexer.getKind())) {
1696 // Check to see whether the token is used as an operator,
1697 // or part of an identifier
1698 const char *NextChar = getTok().getEndLoc().getPointer() + 1;
1699 if (*NextChar == ' ')
1700 AddTokens = 2;
1701 }
1702
1703 if (!AddTokens && ParenLevel == 0) {
1704 if (ArgumentDelimiter == AsmToken::Eof &&
1705 !IsOperator(Lexer.getKind()))
1706 ArgumentDelimiter = AsmToken::Space;
1707 break;
1708 }
1709 }
1710 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001711
1712 // HandleMacroEntry relies on not advancing the lexer here
1713 // to be able to fill in the remaining default parameter values
1714 if (Lexer.is(AsmToken::EndOfStatement))
1715 break;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001716
1717 // Adjust the current parentheses level.
1718 if (Lexer.is(AsmToken::LParen))
1719 ++ParenLevel;
1720 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1721 --ParenLevel;
1722
1723 // Append the token to the current argument list.
1724 MA.push_back(getTok());
Preston Gurd7b6f2032012-09-19 20:36:12 +00001725 if (AddTokens)
1726 AddTokens--;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001727 Lex();
1728 }
Preston Gurd7b6f2032012-09-19 20:36:12 +00001729
1730 Lexer.setSkipSpace(true);
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001731 if (ParenLevel != 0)
Rafael Espindola76ac2002012-08-21 15:55:04 +00001732 return TokError("unbalanced parentheses in macro argument");
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001733 return false;
1734}
1735
1736// Parse the macro instantiation arguments.
Rafael Espindola8a403d32012-08-08 14:51:03 +00001737bool AsmParser::ParseMacroArguments(const Macro *M, MacroArguments &A) {
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001738 const unsigned NParameters = M ? M->Parameters.size() : 0;
Preston Gurd7b6f2032012-09-19 20:36:12 +00001739 // Argument delimiter is initially unknown. It will be set by
1740 // ParseMacroArgument()
1741 AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001742
1743 // Parse two kinds of macro invocations:
1744 // - macros defined without any parameters accept an arbitrary number of them
1745 // - macros defined with parameters accept at most that many of them
1746 for (unsigned Parameter = 0; !NParameters || Parameter < NParameters;
1747 ++Parameter) {
1748 MacroArgument MA;
1749
Preston Gurd7b6f2032012-09-19 20:36:12 +00001750 if (ParseMacroArgument(MA, ArgumentDelimiter))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001751 return true;
1752
Preston Gurd6c9176a2012-09-19 20:29:04 +00001753 if (!MA.empty() || !NParameters)
1754 A.push_back(MA);
1755 else if (NParameters) {
1756 if (!M->Parameters[Parameter].second.empty())
1757 A.push_back(M->Parameters[Parameter].second);
1758 }
Jim Grosbach97146442012-07-30 22:44:17 +00001759
Preston Gurd6c9176a2012-09-19 20:29:04 +00001760 // At the end of the statement, fill in remaining arguments that have
1761 // default values. If there aren't any, then the next argument is
1762 // required but missing
1763 if (Lexer.is(AsmToken::EndOfStatement)) {
1764 if (NParameters && Parameter < NParameters - 1) {
1765 if (M->Parameters[Parameter + 1].second.empty())
1766 return TokError("macro argument '" +
1767 Twine(M->Parameters[Parameter + 1].first) +
1768 "' is missing");
1769 else
1770 continue;
1771 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001772 return false;
Preston Gurd6c9176a2012-09-19 20:29:04 +00001773 }
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001774
1775 if (Lexer.is(AsmToken::Comma))
1776 Lex();
1777 }
1778 return TokError("Too many arguments");
1779}
1780
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001781bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
1782 const Macro *M) {
1783 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1784 // this, although we should protect against infinite loops.
1785 if (ActiveMacros.size() == 20)
1786 return TokError("macros cannot be nested more than 20 levels deep");
1787
Rafael Espindola8a403d32012-08-08 14:51:03 +00001788 MacroArguments A;
1789 if (ParseMacroArguments(M, A))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00001790 return true;
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001791
Jim Grosbach97146442012-07-30 22:44:17 +00001792 // Remove any trailing empty arguments. Do this after-the-fact as we have
1793 // to keep empty arguments in the middle of the list or positionality
1794 // gets off. e.g., "foo 1, , 2" vs. "foo 1, 2,"
Rafael Espindola8a403d32012-08-08 14:51:03 +00001795 while (!A.empty() && A.back().empty())
1796 A.pop_back();
Jim Grosbach97146442012-07-30 22:44:17 +00001797
Rafael Espindola65366442011-06-05 02:43:45 +00001798 // Macro instantiation is lexical, unfortunately. We construct a new buffer
1799 // to hold the macro body with substitutions.
1800 SmallString<256> Buf;
1801 StringRef Body = M->Body;
Rafael Espindola761cb062012-06-03 23:57:14 +00001802 raw_svector_ostream OS(Buf);
Rafael Espindola65366442011-06-05 02:43:45 +00001803
Rafael Espindola8a403d32012-08-08 14:51:03 +00001804 if (expandMacro(OS, Body, M->Parameters, A, getTok().getLoc()))
Rafael Espindola65366442011-06-05 02:43:45 +00001805 return true;
1806
Rafael Espindola761cb062012-06-03 23:57:14 +00001807 // We include the .endmacro in the buffer as our queue to exit the macro
1808 // instantiation.
1809 OS << ".endmacro\n";
1810
Rafael Espindola65366442011-06-05 02:43:45 +00001811 MemoryBuffer *Instantiation =
Rafael Espindola761cb062012-06-03 23:57:14 +00001812 MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
Rafael Espindola65366442011-06-05 02:43:45 +00001813
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001814 // Create the macro instantiation object and add to the current macro
1815 // instantiation stack.
1816 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001817 getTok().getLoc(),
Rafael Espindola65366442011-06-05 02:43:45 +00001818 Instantiation);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001819 ActiveMacros.push_back(MI);
1820
1821 // Jump to the macro instantiation and prime the lexer.
1822 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1823 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1824 Lex();
1825
1826 return false;
1827}
1828
1829void AsmParser::HandleMacroExit() {
1830 // Jump to the EndOfStatement we should return to, and consume it.
1831 JumpToLoc(ActiveMacros.back()->ExitLoc);
1832 Lex();
1833
1834 // Pop the instantiation entry.
1835 delete ActiveMacros.back();
1836 ActiveMacros.pop_back();
1837}
1838
Rafael Espindolae71cc862012-01-28 05:57:00 +00001839static bool IsUsedIn(const MCSymbol *Sym, const MCExpr *Value) {
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001840 switch (Value->getKind()) {
Rafael Espindolae71cc862012-01-28 05:57:00 +00001841 case MCExpr::Binary: {
1842 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr*>(Value);
1843 return IsUsedIn(Sym, BE->getLHS()) || IsUsedIn(Sym, BE->getRHS());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001844 break;
1845 }
Rafael Espindolae71cc862012-01-28 05:57:00 +00001846 case MCExpr::Target:
1847 case MCExpr::Constant:
1848 return false;
1849 case MCExpr::SymbolRef: {
1850 const MCSymbol &S = static_cast<const MCSymbolRefExpr*>(Value)->getSymbol();
Rafael Espindola8b01c822012-01-28 06:22:14 +00001851 if (S.isVariable())
1852 return IsUsedIn(Sym, S.getVariableValue());
1853 return &S == Sym;
Rafael Espindolae71cc862012-01-28 05:57:00 +00001854 }
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001855 case MCExpr::Unary:
Rafael Espindolae71cc862012-01-28 05:57:00 +00001856 return IsUsedIn(Sym, static_cast<const MCUnaryExpr*>(Value)->getSubExpr());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001857 }
Benjamin Kramer518ff562012-01-28 15:28:41 +00001858
1859 llvm_unreachable("Unknown expr kind!");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001860}
1861
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00001862bool AsmParser::ParseAssignment(StringRef Name, bool allow_redef,
1863 bool NoDeadStrip) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001864 // FIXME: Use better location, we should use proper tokens.
1865 SMLoc EqualLoc = Lexer.getLoc();
1866
Daniel Dunbar821e3332009-08-31 08:09:28 +00001867 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001868 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001869 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001870
Rafael Espindolae71cc862012-01-28 05:57:00 +00001871 // Note: we don't count b as used in "a = b". This is to allow
1872 // a = b
1873 // b = c
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001874
Daniel Dunbar3f872332009-07-28 16:08:33 +00001875 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001876 return TokError("unexpected token in assignment");
1877
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001878 // Error on assignment to '.'.
1879 if (Name == ".") {
1880 return Error(EqualLoc, ("assignment to pseudo-symbol '.' is unsupported "
1881 "(use '.space' or '.org').)"));
1882 }
1883
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001884 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001885 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001886
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001887 // Validate that the LHS is allowed to be a variable (either it has not been
1888 // used as a symbol, or it is an absolute symbol).
1889 MCSymbol *Sym = getContext().LookupSymbol(Name);
1890 if (Sym) {
1891 // Diagnose assignment to a label.
1892 //
1893 // FIXME: Diagnostics. Note the location of the definition as a label.
1894 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Rafael Espindolae71cc862012-01-28 05:57:00 +00001895 if (IsUsedIn(Sym, Value))
1896 return Error(EqualLoc, "Recursive use of '" + Name + "'");
1897 else if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001898 ; // Allow redefinitions of undefined symbols only used in directives.
Jim Grosbach48c95332012-03-20 21:33:21 +00001899 else if (Sym->isVariable() && !Sym->isUsed() && allow_redef)
1900 ; // Allow redefinitions of variables that haven't yet been used.
Daniel Dunbar6db7fe82011-04-29 17:53:11 +00001901 else if (!Sym->isUndefined() && (!Sym->isVariable() || !allow_redef))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001902 return Error(EqualLoc, "redefinition of '" + Name + "'");
1903 else if (!Sym->isVariable())
1904 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00001905 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001906 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1907 Name + "'");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001908
1909 // Don't count these checks as uses.
1910 Sym->setUsed(false);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001911 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001912 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001913
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001914 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001915
1916 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00001917 Out.EmitAssignment(Sym, Value);
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00001918 if (NoDeadStrip)
1919 Out.EmitSymbolAttribute(Sym, MCSA_NoDeadStrip);
1920
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001921
1922 return false;
1923}
1924
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001925/// ParseIdentifier:
1926/// ::= identifier
1927/// ::= string
1928bool AsmParser::ParseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00001929 // The assembler has relaxed rules for accepting identifiers, in particular we
1930 // allow things like '.globl $foo', which would normally be separate
1931 // tokens. At this level, we have already lexed so we cannot (currently)
1932 // handle this as a context dependent token, instead we detect adjacent tokens
1933 // and return the combined identifier.
1934 if (Lexer.is(AsmToken::Dollar)) {
1935 SMLoc DollarLoc = getLexer().getLoc();
1936
1937 // Consume the dollar sign, and check for a following identifier.
1938 Lex();
1939 if (Lexer.isNot(AsmToken::Identifier))
1940 return true;
1941
1942 // We have a '$' followed by an identifier, make sure they are adjacent.
1943 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
1944 return true;
1945
1946 // Construct the joined identifier and consume the token.
1947 Res = StringRef(DollarLoc.getPointer(),
1948 getTok().getIdentifier().size() + 1);
1949 Lex();
1950 return false;
1951 }
1952
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001953 if (Lexer.isNot(AsmToken::Identifier) &&
1954 Lexer.isNot(AsmToken::String))
1955 return true;
1956
Sean Callanan18b83232010-01-19 21:44:56 +00001957 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001958
Sean Callanan79ed1a82010-01-19 20:22:31 +00001959 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001960
1961 return false;
1962}
1963
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001964/// ParseDirectiveSet:
Nico Weber4c4c7322011-01-28 03:04:41 +00001965/// ::= .equ identifier ',' expression
1966/// ::= .equiv identifier ',' expression
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001967/// ::= .set identifier ',' expression
Nico Weber4c4c7322011-01-28 03:04:41 +00001968bool AsmParser::ParseDirectiveSet(StringRef IDVal, bool allow_redef) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001969 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001970
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001971 if (ParseIdentifier(Name))
Roman Divackyf9d17522010-10-28 16:57:58 +00001972 return TokError("expected identifier after '" + Twine(IDVal) + "'");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001973
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001974 if (getLexer().isNot(AsmToken::Comma))
Roman Divackyf9d17522010-10-28 16:57:58 +00001975 return TokError("unexpected token in '" + Twine(IDVal) + "'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001976 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001977
Jim Grosbach3f90a4c2012-09-13 23:11:31 +00001978 return ParseAssignment(Name, allow_redef, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001979}
1980
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001981bool AsmParser::ParseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001982 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001983
1984 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00001985 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001986 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1987 if (Str[i] != '\\') {
1988 Data += Str[i];
1989 continue;
1990 }
1991
1992 // Recognize escaped characters. Note that this escape semantics currently
1993 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1994 ++i;
1995 if (i == e)
1996 return TokError("unexpected backslash at end of string");
1997
1998 // Recognize octal sequences.
1999 if ((unsigned) (Str[i] - '0') <= 7) {
2000 // Consume up to three octal characters.
2001 unsigned Value = Str[i] - '0';
2002
2003 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
2004 ++i;
2005 Value = Value * 8 + (Str[i] - '0');
2006
2007 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
2008 ++i;
2009 Value = Value * 8 + (Str[i] - '0');
2010 }
2011 }
2012
2013 if (Value > 255)
2014 return TokError("invalid octal escape sequence (out of range)");
2015
2016 Data += (unsigned char) Value;
2017 continue;
2018 }
2019
2020 // Otherwise recognize individual escapes.
2021 switch (Str[i]) {
2022 default:
2023 // Just reject invalid escape sequences for now.
2024 return TokError("invalid escape sequence (unrecognized character)");
2025
2026 case 'b': Data += '\b'; break;
2027 case 'f': Data += '\f'; break;
2028 case 'n': Data += '\n'; break;
2029 case 'r': Data += '\r'; break;
2030 case 't': Data += '\t'; break;
2031 case '"': Data += '"'; break;
2032 case '\\': Data += '\\'; break;
2033 }
2034 }
2035
2036 return false;
2037}
2038
Daniel Dunbara0d14262009-06-24 23:30:00 +00002039/// ParseDirectiveAscii:
Rafael Espindola787c3372010-10-28 20:02:27 +00002040/// ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
2041bool AsmParser::ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002042 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002043 CheckForValidSection();
2044
Daniel Dunbara0d14262009-06-24 23:30:00 +00002045 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002046 if (getLexer().isNot(AsmToken::String))
Rafael Espindola787c3372010-10-28 20:02:27 +00002047 return TokError("expected string in '" + Twine(IDVal) + "' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002048
Daniel Dunbar1ab75942009-08-14 18:19:52 +00002049 std::string Data;
2050 if (ParseEscapedString(Data))
2051 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002052
2053 getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002054 if (ZeroTerminated)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002055 getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
2056
Sean Callanan79ed1a82010-01-19 20:22:31 +00002057 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002058
2059 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002060 break;
2061
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002062 if (getLexer().isNot(AsmToken::Comma))
Rafael Espindola787c3372010-10-28 20:02:27 +00002063 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002064 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002065 }
2066 }
2067
Sean Callanan79ed1a82010-01-19 20:22:31 +00002068 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002069 return false;
2070}
2071
2072/// ParseDirectiveValue
2073/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
2074bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002075 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002076 CheckForValidSection();
2077
Daniel Dunbara0d14262009-06-24 23:30:00 +00002078 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00002079 const MCExpr *Value;
Jim Grosbach254cf032011-06-29 16:05:14 +00002080 SMLoc ExprLoc = getLexer().getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00002081 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002082 return true;
2083
Daniel Dunbar414c0c42010-05-23 18:36:38 +00002084 // Special case constant expressions to match code generator.
Jim Grosbach254cf032011-06-29 16:05:14 +00002085 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2086 assert(Size <= 8 && "Invalid size");
2087 uint64_t IntValue = MCE->getValue();
2088 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2089 return Error(ExprLoc, "literal value out of range for directive");
2090 getStreamer().EmitIntValue(IntValue, Size, DEFAULT_ADDRSPACE);
2091 } else
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002092 getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002093
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002094 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002095 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002096
Daniel Dunbara0d14262009-06-24 23:30:00 +00002097 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002098 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002099 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002100 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002101 }
2102 }
2103
Sean Callanan79ed1a82010-01-19 20:22:31 +00002104 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002105 return false;
2106}
2107
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002108/// ParseDirectiveRealValue
2109/// ::= (.single | .double) [ expression (, expression)* ]
2110bool AsmParser::ParseDirectiveRealValue(const fltSemantics &Semantics) {
2111 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2112 CheckForValidSection();
2113
2114 for (;;) {
2115 // We don't truly support arithmetic on floating point expressions, so we
2116 // have to manually parse unary prefixes.
2117 bool IsNeg = false;
2118 if (getLexer().is(AsmToken::Minus)) {
2119 Lex();
2120 IsNeg = true;
2121 } else if (getLexer().is(AsmToken::Plus))
2122 Lex();
2123
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002124 if (getLexer().isNot(AsmToken::Integer) &&
Kevin Enderby360d8d72011-03-29 21:11:52 +00002125 getLexer().isNot(AsmToken::Real) &&
2126 getLexer().isNot(AsmToken::Identifier))
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002127 return TokError("unexpected token in directive");
2128
2129 // Convert to an APFloat.
2130 APFloat Value(Semantics);
Kevin Enderby360d8d72011-03-29 21:11:52 +00002131 StringRef IDVal = getTok().getString();
2132 if (getLexer().is(AsmToken::Identifier)) {
2133 if (!IDVal.compare_lower("infinity") || !IDVal.compare_lower("inf"))
2134 Value = APFloat::getInf(Semantics);
2135 else if (!IDVal.compare_lower("nan"))
2136 Value = APFloat::getNaN(Semantics, false, ~0);
2137 else
2138 return TokError("invalid floating point literal");
2139 } else if (Value.convertFromString(IDVal, APFloat::rmNearestTiesToEven) ==
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002140 APFloat::opInvalidOp)
2141 return TokError("invalid floating point literal");
2142 if (IsNeg)
2143 Value.changeSign();
2144
2145 // Consume the numeric token.
2146 Lex();
2147
2148 // Emit the value as an integer.
2149 APInt AsInt = Value.bitcastToAPInt();
2150 getStreamer().EmitIntValue(AsInt.getLimitedValue(),
2151 AsInt.getBitWidth() / 8, DEFAULT_ADDRSPACE);
2152
2153 if (getLexer().is(AsmToken::EndOfStatement))
2154 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002155
Daniel Dunbarb95a0792010-09-24 01:59:56 +00002156 if (getLexer().isNot(AsmToken::Comma))
2157 return TokError("unexpected token in directive");
2158 Lex();
2159 }
2160 }
2161
2162 Lex();
2163 return false;
2164}
2165
Daniel Dunbara0d14262009-06-24 23:30:00 +00002166/// ParseDirectiveSpace
2167/// ::= .space expression [ , expression ]
2168bool AsmParser::ParseDirectiveSpace() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002169 CheckForValidSection();
2170
Daniel Dunbara0d14262009-06-24 23:30:00 +00002171 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00002172 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002173 return true;
2174
2175 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002176 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2177 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002178 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002179 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002180
Daniel Dunbar475839e2009-06-29 20:37:27 +00002181 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002182 return true;
2183
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002184 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002185 return TokError("unexpected token in '.space' directive");
2186 }
2187
Sean Callanan79ed1a82010-01-19 20:22:31 +00002188 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002189
2190 if (NumBytes <= 0)
2191 return TokError("invalid number of bytes in '.space' directive");
2192
2193 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002194 getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002195
2196 return false;
2197}
2198
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002199/// ParseDirectiveZero
2200/// ::= .zero expression
2201bool AsmParser::ParseDirectiveZero() {
2202 CheckForValidSection();
2203
2204 int64_t NumBytes;
2205 if (ParseAbsoluteExpression(NumBytes))
2206 return true;
2207
Rafael Espindolae452b172010-10-05 19:42:57 +00002208 int64_t Val = 0;
2209 if (getLexer().is(AsmToken::Comma)) {
2210 Lex();
2211 if (ParseAbsoluteExpression(Val))
2212 return true;
2213 }
2214
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002215 if (getLexer().isNot(AsmToken::EndOfStatement))
2216 return TokError("unexpected token in '.zero' directive");
2217
2218 Lex();
2219
Rafael Espindolae452b172010-10-05 19:42:57 +00002220 getStreamer().EmitFill(NumBytes, Val, DEFAULT_ADDRSPACE);
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00002221
2222 return false;
2223}
2224
Daniel Dunbara0d14262009-06-24 23:30:00 +00002225/// ParseDirectiveFill
2226/// ::= .fill expression , expression , expression
2227bool AsmParser::ParseDirectiveFill() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002228 CheckForValidSection();
2229
Daniel Dunbara0d14262009-06-24 23:30:00 +00002230 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00002231 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002232 return true;
2233
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002234 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002235 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002236 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002237
Daniel Dunbara0d14262009-06-24 23:30:00 +00002238 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00002239 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002240 return true;
2241
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002242 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002243 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002244 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002245
Daniel Dunbara0d14262009-06-24 23:30:00 +00002246 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00002247 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002248 return true;
2249
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002250 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002251 return TokError("unexpected token in '.fill' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002252
Sean Callanan79ed1a82010-01-19 20:22:31 +00002253 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002254
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00002255 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
2256 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00002257
2258 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002259 getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002260
2261 return false;
2262}
Daniel Dunbarc238b582009-06-25 22:44:51 +00002263
2264/// ParseDirectiveOrg
2265/// ::= .org expression [ , expression ]
2266bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002267 CheckForValidSection();
2268
Daniel Dunbar821e3332009-08-31 08:09:28 +00002269 const MCExpr *Offset;
Jim Grosbachebd4c052012-01-27 00:37:08 +00002270 SMLoc Loc = getTok().getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00002271 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002272 return true;
2273
2274 // Parse optional fill expression.
2275 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002276 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2277 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002278 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002279 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002280
Daniel Dunbar475839e2009-06-29 20:37:27 +00002281 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002282 return true;
2283
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002284 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002285 return TokError("unexpected token in '.org' directive");
2286 }
2287
Sean Callanan79ed1a82010-01-19 20:22:31 +00002288 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00002289
Jim Grosbachebd4c052012-01-27 00:37:08 +00002290 // Only limited forms of relocatable expressions are accepted here, it
2291 // has to be relative to the current section. The streamer will return
2292 // 'true' if the expression wasn't evaluatable.
2293 if (getStreamer().EmitValueToOffset(Offset, FillExpr))
2294 return Error(Loc, "expected assembly-time absolute expression");
Daniel Dunbarc238b582009-06-25 22:44:51 +00002295
2296 return false;
2297}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002298
2299/// ParseDirectiveAlign
2300/// ::= {.align, ...} expression [ , expression [ , expression ]]
2301bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002302 CheckForValidSection();
2303
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002304 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002305 int64_t Alignment;
2306 if (ParseAbsoluteExpression(Alignment))
2307 return true;
2308
2309 SMLoc MaxBytesLoc;
2310 bool HasFillExpr = false;
2311 int64_t FillExpr = 0;
2312 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002313 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2314 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002315 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002316 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002317
2318 // The fill expression can be omitted while specifying a maximum number of
2319 // alignment bytes, e.g:
2320 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002321 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002322 HasFillExpr = true;
2323 if (ParseAbsoluteExpression(FillExpr))
2324 return true;
2325 }
2326
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002327 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2328 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002329 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002330 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002331
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002332 MaxBytesLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002333 if (ParseAbsoluteExpression(MaxBytesToFill))
2334 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002335
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002336 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002337 return TokError("unexpected token in directive");
2338 }
2339 }
2340
Sean Callanan79ed1a82010-01-19 20:22:31 +00002341 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002342
Daniel Dunbar648ac512010-05-17 21:54:30 +00002343 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002344 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002345
2346 // Compute alignment in bytes.
2347 if (IsPow2) {
2348 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002349 if (Alignment >= 32) {
2350 Error(AlignmentLoc, "invalid alignment value");
2351 Alignment = 31;
2352 }
2353
Benjamin Kramer12fd7672009-09-06 09:35:10 +00002354 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002355 }
2356
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002357 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002358 if (MaxBytesLoc.isValid()) {
2359 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002360 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
2361 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00002362 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002363 }
2364
2365 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00002366 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
2367 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002368 MaxBytesToFill = 0;
2369 }
2370 }
2371
Daniel Dunbar648ac512010-05-17 21:54:30 +00002372 // Check whether we should use optimal code alignment for this .align
2373 // directive.
Jan Wen Voung083cf152010-10-04 17:32:41 +00002374 bool UseCodeAlign = getStreamer().getCurrentSection()->UseCodeAlign();
Daniel Dunbar648ac512010-05-17 21:54:30 +00002375 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
2376 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002377 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002378 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00002379 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00002380 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
2381 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002382 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002383
2384 return false;
2385}
2386
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002387/// ParseDirectiveSymbolAttribute
2388/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00002389bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002390 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002391 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002392 StringRef Name;
Jim Grosbach10ec6502011-09-15 17:56:49 +00002393 SMLoc Loc = getTok().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002394
2395 if (ParseIdentifier(Name))
Jim Grosbach10ec6502011-09-15 17:56:49 +00002396 return Error(Loc, "expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002397
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00002398 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002399
Jim Grosbach10ec6502011-09-15 17:56:49 +00002400 // Assembler local symbols don't make any sense here. Complain loudly.
2401 if (Sym->isTemporary())
2402 return Error(Loc, "non-local symbol required in directive");
2403
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002404 getStreamer().EmitSymbolAttribute(Sym, Attr);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002405
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002406 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002407 break;
2408
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002409 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002410 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002411 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002412 }
2413 }
2414
Sean Callanan79ed1a82010-01-19 20:22:31 +00002415 Lex();
Jan Wen Vounga854a4b2010-09-30 01:09:20 +00002416 return false;
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002417}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002418
2419/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00002420/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
2421bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002422 CheckForValidSection();
2423
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002424 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002425 StringRef Name;
2426 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002427 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002428
Daniel Dunbar76c4d762009-07-31 21:55:09 +00002429 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00002430 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002431
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002432 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002433 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002434 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002435
2436 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002437 SMLoc SizeLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002438 if (ParseAbsoluteExpression(Size))
2439 return true;
2440
2441 int64_t Pow2Alignment = 0;
2442 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002443 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00002444 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002445 Pow2AlignmentLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002446 if (ParseAbsoluteExpression(Pow2Alignment))
2447 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002448
Benjamin Kramera9e37c52012-09-07 21:08:01 +00002449 LCOMM::LCOMMType LCOMM = Lexer.getMAI().getLCOMMDirectiveAlignmentType();
2450 if (IsLocal && LCOMM == LCOMM::NoAlignment)
Benjamin Kramer39646d92012-09-07 17:25:13 +00002451 return Error(Pow2AlignmentLoc, "alignment not supported on this target");
2452
Chris Lattner258281d2010-01-19 06:22:22 +00002453 // If this target takes alignments in bytes (not log) validate and convert.
Benjamin Kramera9e37c52012-09-07 21:08:01 +00002454 if ((!IsLocal && Lexer.getMAI().getCOMMDirectiveAlignmentIsInBytes()) ||
2455 (IsLocal && LCOMM == LCOMM::ByteAlignment)) {
Chris Lattner258281d2010-01-19 06:22:22 +00002456 if (!isPowerOf2_64(Pow2Alignment))
2457 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
2458 Pow2Alignment = Log2_64(Pow2Alignment);
2459 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002460 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002461
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002462 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00002463 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002464
Sean Callanan79ed1a82010-01-19 20:22:31 +00002465 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002466
Chris Lattner1fc3d752009-07-09 17:25:12 +00002467 // NOTE: a size of zero for a .comm should create a undefined symbol
2468 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002469 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00002470 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
2471 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002472
Eric Christopherc260a3e2010-05-14 01:38:54 +00002473 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002474 // may internally end up wanting an alignment in bytes.
2475 // FIXME: Diagnose overflow.
2476 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00002477 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
2478 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002479
Daniel Dunbar8906ff12009-08-22 07:22:36 +00002480 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002481 return Error(IDLoc, "invalid symbol redefinition");
2482
Chris Lattner1fc3d752009-07-09 17:25:12 +00002483 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00002484 if (IsLocal) {
Benjamin Kramer39646d92012-09-07 17:25:13 +00002485 getStreamer().EmitLocalCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00002486 return false;
2487 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002488
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002489 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002490 return false;
2491}
Chris Lattner9be3fee2009-07-10 22:20:30 +00002492
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002493/// ParseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002494/// ::= .abort [... message ...]
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002495bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00002496 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002497 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00002498
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002499 StringRef Str = ParseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002500 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002501 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002502
Sean Callanan79ed1a82010-01-19 20:22:31 +00002503 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002504
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00002505 if (Str.empty())
2506 Error(Loc, ".abort detected. Assembly stopping.");
2507 else
2508 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002509 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002510
2511 return false;
2512}
Kevin Enderby71148242009-07-14 21:35:03 +00002513
Kevin Enderby1f049b22009-07-14 23:21:55 +00002514/// ParseDirectiveInclude
2515/// ::= .include "filename"
2516bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002517 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00002518 return TokError("expected string in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002519
Sean Callanan18b83232010-01-19 21:44:56 +00002520 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002521 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00002522 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00002523
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002524 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00002525 return TokError("unexpected token in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002526
Chris Lattner8e25e2d2009-07-16 06:14:39 +00002527 // Strip the quotes.
2528 Filename = Filename.substr(1, Filename.size()-2);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002529
Chris Lattner8e25e2d2009-07-16 06:14:39 +00002530 // Attempt to switch the lexer to the included file before consuming the end
2531 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00002532 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00002533 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00002534 return true;
2535 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00002536
2537 return false;
2538}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00002539
Kevin Enderbyc55acca2011-12-14 21:47:48 +00002540/// ParseDirectiveIncbin
2541/// ::= .incbin "filename"
2542bool AsmParser::ParseDirectiveIncbin() {
2543 if (getLexer().isNot(AsmToken::String))
2544 return TokError("expected string in '.incbin' directive");
2545
2546 std::string Filename = getTok().getString();
2547 SMLoc IncbinLoc = getLexer().getLoc();
2548 Lex();
2549
2550 if (getLexer().isNot(AsmToken::EndOfStatement))
2551 return TokError("unexpected token in '.incbin' directive");
2552
2553 // Strip the quotes.
2554 Filename = Filename.substr(1, Filename.size()-2);
2555
2556 // Attempt to process the included file.
2557 if (ProcessIncbinFile(Filename)) {
2558 Error(IncbinLoc, "Could not find incbin file '" + Filename + "'");
2559 return true;
2560 }
2561
2562 return false;
2563}
2564
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002565/// ParseDirectiveIf
2566/// ::= .if expression
2567bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002568 TheCondStack.push_back(TheCondState);
2569 TheCondState.TheCond = AsmCond::IfCond;
Benjamin Kramer29739e72012-05-12 16:52:21 +00002570 if (TheCondState.Ignore) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002571 EatToEndOfStatement();
Benjamin Kramer29739e72012-05-12 16:52:21 +00002572 } else {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002573 int64_t ExprValue;
2574 if (ParseAbsoluteExpression(ExprValue))
2575 return true;
2576
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002577 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002578 return TokError("unexpected token in '.if' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002579
Sean Callanan79ed1a82010-01-19 20:22:31 +00002580 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002581
2582 TheCondState.CondMet = ExprValue;
2583 TheCondState.Ignore = !TheCondState.CondMet;
2584 }
2585
2586 return false;
2587}
2588
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00002589/// ParseDirectiveIfb
2590/// ::= .ifb string
2591bool AsmParser::ParseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank) {
2592 TheCondStack.push_back(TheCondState);
2593 TheCondState.TheCond = AsmCond::IfCond;
2594
Benjamin Kramer29739e72012-05-12 16:52:21 +00002595 if (TheCondState.Ignore) {
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00002596 EatToEndOfStatement();
2597 } else {
2598 StringRef Str = ParseStringToEndOfStatement();
2599
2600 if (getLexer().isNot(AsmToken::EndOfStatement))
2601 return TokError("unexpected token in '.ifb' directive");
2602
2603 Lex();
2604
2605 TheCondState.CondMet = ExpectBlank == Str.empty();
2606 TheCondState.Ignore = !TheCondState.CondMet;
2607 }
2608
2609 return false;
2610}
2611
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00002612/// ParseDirectiveIfc
2613/// ::= .ifc string1, string2
2614bool AsmParser::ParseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual) {
2615 TheCondStack.push_back(TheCondState);
2616 TheCondState.TheCond = AsmCond::IfCond;
2617
Benjamin Kramer29739e72012-05-12 16:52:21 +00002618 if (TheCondState.Ignore) {
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00002619 EatToEndOfStatement();
2620 } else {
2621 StringRef Str1 = ParseStringToComma();
2622
2623 if (getLexer().isNot(AsmToken::Comma))
2624 return TokError("unexpected token in '.ifc' directive");
2625
2626 Lex();
2627
2628 StringRef Str2 = ParseStringToEndOfStatement();
2629
2630 if (getLexer().isNot(AsmToken::EndOfStatement))
2631 return TokError("unexpected token in '.ifc' directive");
2632
2633 Lex();
2634
2635 TheCondState.CondMet = ExpectEqual == (Str1 == Str2);
2636 TheCondState.Ignore = !TheCondState.CondMet;
2637 }
2638
2639 return false;
2640}
2641
2642/// ParseDirectiveIfdef
2643/// ::= .ifdef symbol
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00002644bool AsmParser::ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined) {
2645 StringRef Name;
2646 TheCondStack.push_back(TheCondState);
2647 TheCondState.TheCond = AsmCond::IfCond;
2648
2649 if (TheCondState.Ignore) {
2650 EatToEndOfStatement();
2651 } else {
2652 if (ParseIdentifier(Name))
2653 return TokError("expected identifier after '.ifdef'");
2654
2655 Lex();
2656
2657 MCSymbol *Sym = getContext().LookupSymbol(Name);
2658
2659 if (expect_defined)
2660 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
2661 else
2662 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
2663 TheCondState.Ignore = !TheCondState.CondMet;
2664 }
2665
2666 return false;
2667}
2668
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002669/// ParseDirectiveElseIf
2670/// ::= .elseif expression
2671bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
2672 if (TheCondState.TheCond != AsmCond::IfCond &&
2673 TheCondState.TheCond != AsmCond::ElseIfCond)
2674 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
2675 " an .elseif");
2676 TheCondState.TheCond = AsmCond::ElseIfCond;
2677
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002678 bool LastIgnoreState = false;
2679 if (!TheCondStack.empty())
2680 LastIgnoreState = TheCondStack.back().Ignore;
2681 if (LastIgnoreState || TheCondState.CondMet) {
2682 TheCondState.Ignore = true;
2683 EatToEndOfStatement();
2684 }
2685 else {
2686 int64_t ExprValue;
2687 if (ParseAbsoluteExpression(ExprValue))
2688 return true;
2689
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002690 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002691 return TokError("unexpected token in '.elseif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002692
Sean Callanan79ed1a82010-01-19 20:22:31 +00002693 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002694 TheCondState.CondMet = ExprValue;
2695 TheCondState.Ignore = !TheCondState.CondMet;
2696 }
2697
2698 return false;
2699}
2700
2701/// ParseDirectiveElse
2702/// ::= .else
2703bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002704 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002705 return TokError("unexpected token in '.else' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002706
Sean Callanan79ed1a82010-01-19 20:22:31 +00002707 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002708
2709 if (TheCondState.TheCond != AsmCond::IfCond &&
2710 TheCondState.TheCond != AsmCond::ElseIfCond)
2711 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
2712 ".elseif");
2713 TheCondState.TheCond = AsmCond::ElseCond;
2714 bool LastIgnoreState = false;
2715 if (!TheCondStack.empty())
2716 LastIgnoreState = TheCondStack.back().Ignore;
2717 if (LastIgnoreState || TheCondState.CondMet)
2718 TheCondState.Ignore = true;
2719 else
2720 TheCondState.Ignore = false;
2721
2722 return false;
2723}
2724
2725/// ParseDirectiveEndIf
2726/// ::= .endif
2727bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002728 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002729 return TokError("unexpected token in '.endif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002730
Sean Callanan79ed1a82010-01-19 20:22:31 +00002731 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002732
2733 if ((TheCondState.TheCond == AsmCond::NoCond) ||
2734 TheCondStack.empty())
2735 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
2736 ".else");
2737 if (!TheCondStack.empty()) {
2738 TheCondState = TheCondStack.back();
2739 TheCondStack.pop_back();
2740 }
2741
2742 return false;
2743}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002744
2745/// ParseDirectiveFile
Nick Lewycky44d798d2011-10-17 23:05:28 +00002746/// ::= .file [number] filename
2747/// ::= .file number directory filename
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002748bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002749 // FIXME: I'm not sure what this is.
2750 int64_t FileNumber = -1;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002751 SMLoc FileNumberLoc = getLexer().getLoc();
Daniel Dunbareceec052010-07-12 17:45:27 +00002752 if (getLexer().is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00002753 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00002754 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00002755
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002756 if (FileNumber < 1)
2757 return TokError("file number less than one");
2758 }
2759
Daniel Dunbareceec052010-07-12 17:45:27 +00002760 if (getLexer().isNot(AsmToken::String))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002761 return TokError("unexpected token in '.file' directive");
Daniel Dunbareceec052010-07-12 17:45:27 +00002762
Nick Lewycky44d798d2011-10-17 23:05:28 +00002763 // Usually the directory and filename together, otherwise just the directory.
2764 StringRef Path = getTok().getString();
2765 Path = Path.substr(1, Path.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00002766 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002767
Nick Lewycky44d798d2011-10-17 23:05:28 +00002768 StringRef Directory;
2769 StringRef Filename;
2770 if (getLexer().is(AsmToken::String)) {
2771 if (FileNumber == -1)
2772 return TokError("explicit path specified, but no file number");
2773 Filename = getTok().getString();
2774 Filename = Filename.substr(1, Filename.size()-2);
2775 Directory = Path;
2776 Lex();
2777 } else {
2778 Filename = Path;
2779 }
2780
Daniel Dunbareceec052010-07-12 17:45:27 +00002781 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002782 return TokError("unexpected token in '.file' directive");
2783
Chris Lattnerd32e8032010-01-25 19:02:58 +00002784 if (FileNumber == -1)
Daniel Dunbareceec052010-07-12 17:45:27 +00002785 getStreamer().EmitFileDirective(Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002786 else {
Kevin Enderby8704b782012-01-11 18:04:47 +00002787 if (getContext().getGenDwarfForAssembly() == true)
2788 Error(DirectiveLoc, "input can't have .file dwarf directives when -g is "
2789 "used to generate dwarf debug info for assembly code");
2790
Nick Lewycky44d798d2011-10-17 23:05:28 +00002791 if (getStreamer().EmitDwarfFileDirective(FileNumber, Directory, Filename))
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002792 Error(FileNumberLoc, "file number already allocated");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002793 }
Daniel Dunbareceec052010-07-12 17:45:27 +00002794
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002795 return false;
2796}
2797
2798/// ParseDirectiveLine
2799/// ::= .line [number]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002800bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00002801 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2802 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002803 return TokError("unexpected token in '.line' directive");
2804
Sean Callanan18b83232010-01-19 21:44:56 +00002805 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002806 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00002807 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002808
2809 // FIXME: Do something with the .line.
2810 }
2811
Daniel Dunbareceec052010-07-12 17:45:27 +00002812 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbar839348a2010-07-01 20:20:01 +00002813 return TokError("unexpected token in '.line' directive");
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002814
2815 return false;
2816}
2817
2818
2819/// ParseDirectiveLoc
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002820/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002821/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2822/// The first number is a file number, must have been previously assigned with
2823/// a .file directive, the second number is the line number and optionally the
2824/// third number is a column position (zero if not specified). The remaining
2825/// optional items are .loc sub-directives.
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002826bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002827
Daniel Dunbareceec052010-07-12 17:45:27 +00002828 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002829 return TokError("unexpected token in '.loc' directive");
Sean Callanan18b83232010-01-19 21:44:56 +00002830 int64_t FileNumber = getTok().getIntVal();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002831 if (FileNumber < 1)
2832 return TokError("file number less than one in '.loc' directive");
Kevin Enderby3f55c242010-10-04 20:17:24 +00002833 if (!getContext().isValidDwarfFileNumber(FileNumber))
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002834 return TokError("unassigned file number in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002835 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002836
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002837 int64_t LineNumber = 0;
2838 if (getLexer().is(AsmToken::Integer)) {
2839 LineNumber = getTok().getIntVal();
2840 if (LineNumber < 1)
2841 return TokError("line number less than one in '.loc' directive");
2842 Lex();
2843 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002844
2845 int64_t ColumnPos = 0;
2846 if (getLexer().is(AsmToken::Integer)) {
2847 ColumnPos = getTok().getIntVal();
2848 if (ColumnPos < 0)
2849 return TokError("column position less than zero in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002850 Lex();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002851 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002852
Kevin Enderbyc0957932010-09-30 16:52:03 +00002853 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002854 unsigned Isa = 0;
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002855 int64_t Discriminator = 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002856 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2857 for (;;) {
2858 if (getLexer().is(AsmToken::EndOfStatement))
2859 break;
2860
2861 StringRef Name;
2862 SMLoc Loc = getTok().getLoc();
2863 if (getParser().ParseIdentifier(Name))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002864 return TokError("unexpected token in '.loc' directive");
2865
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002866 if (Name == "basic_block")
2867 Flags |= DWARF2_FLAG_BASIC_BLOCK;
2868 else if (Name == "prologue_end")
2869 Flags |= DWARF2_FLAG_PROLOGUE_END;
2870 else if (Name == "epilogue_begin")
2871 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2872 else if (Name == "is_stmt") {
2873 SMLoc Loc = getTok().getLoc();
2874 const MCExpr *Value;
2875 if (getParser().ParseExpression(Value))
2876 return true;
2877 // The expression must be the constant 0 or 1.
2878 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2879 int Value = MCE->getValue();
2880 if (Value == 0)
2881 Flags &= ~DWARF2_FLAG_IS_STMT;
2882 else if (Value == 1)
2883 Flags |= DWARF2_FLAG_IS_STMT;
2884 else
2885 return Error(Loc, "is_stmt value not 0 or 1");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002886 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002887 else {
2888 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2889 }
2890 }
2891 else if (Name == "isa") {
2892 SMLoc Loc = getTok().getLoc();
2893 const MCExpr *Value;
2894 if (getParser().ParseExpression(Value))
2895 return true;
2896 // The expression must be a constant greater or equal to 0.
2897 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2898 int Value = MCE->getValue();
2899 if (Value < 0)
2900 return Error(Loc, "isa number less than zero");
2901 Isa = Value;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002902 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002903 else {
2904 return Error(Loc, "isa number not a constant value");
2905 }
2906 }
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002907 else if (Name == "discriminator") {
2908 if (getParser().ParseAbsoluteExpression(Discriminator))
2909 return true;
2910 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002911 else {
2912 return Error(Loc, "unknown sub-directive in '.loc' directive");
2913 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002914
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002915 if (getLexer().is(AsmToken::EndOfStatement))
2916 break;
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002917 }
2918 }
2919
Rafael Espindolaaf6b58082010-11-16 21:20:32 +00002920 getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +00002921 Isa, Discriminator, StringRef());
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002922
2923 return false;
2924}
2925
Daniel Dunbar138abae2010-10-16 04:56:42 +00002926/// ParseDirectiveStabs
2927/// ::= .stabs string, number, number, number
2928bool GenericAsmParser::ParseDirectiveStabs(StringRef Directive,
2929 SMLoc DirectiveLoc) {
2930 return TokError("unsupported directive '" + Directive + "'");
2931}
2932
Rafael Espindolaf9efd832011-05-10 01:10:18 +00002933/// ParseDirectiveCFISections
2934/// ::= .cfi_sections section [, section]
2935bool GenericAsmParser::ParseDirectiveCFISections(StringRef,
2936 SMLoc DirectiveLoc) {
2937 StringRef Name;
2938 bool EH = false;
2939 bool Debug = false;
2940
2941 if (getParser().ParseIdentifier(Name))
2942 return TokError("Expected an identifier");
2943
2944 if (Name == ".eh_frame")
2945 EH = true;
2946 else if (Name == ".debug_frame")
2947 Debug = true;
2948
2949 if (getLexer().is(AsmToken::Comma)) {
2950 Lex();
2951
2952 if (getParser().ParseIdentifier(Name))
2953 return TokError("Expected an identifier");
2954
2955 if (Name == ".eh_frame")
2956 EH = true;
2957 else if (Name == ".debug_frame")
2958 Debug = true;
2959 }
2960
2961 getStreamer().EmitCFISections(EH, Debug);
2962
2963 return false;
2964}
2965
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002966/// ParseDirectiveCFIStartProc
2967/// ::= .cfi_startproc
2968bool GenericAsmParser::ParseDirectiveCFIStartProc(StringRef,
2969 SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00002970 getStreamer().EmitCFIStartProc();
2971 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002972}
2973
2974/// ParseDirectiveCFIEndProc
2975/// ::= .cfi_endproc
2976bool GenericAsmParser::ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00002977 getStreamer().EmitCFIEndProc();
2978 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002979}
2980
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002981/// ParseRegisterOrRegisterNumber - parse register name or number.
2982bool GenericAsmParser::ParseRegisterOrRegisterNumber(int64_t &Register,
2983 SMLoc DirectiveLoc) {
2984 unsigned RegNo;
2985
Jim Grosbach6f888a82011-06-02 17:14:04 +00002986 if (getLexer().isNot(AsmToken::Integer)) {
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002987 if (getParser().getTargetParser().ParseRegister(RegNo, DirectiveLoc,
2988 DirectiveLoc))
2989 return true;
Evan Cheng0e6a0522011-07-18 20:57:22 +00002990 Register = getContext().getRegisterInfo().getDwarfRegNum(RegNo, true);
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002991 } else
2992 return getParser().ParseAbsoluteExpression(Register);
Jim Grosbachde2f5f42011-02-11 19:05:56 +00002993
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002994 return false;
2995}
2996
Rafael Espindolab40a71f2010-12-29 01:42:56 +00002997/// ParseDirectiveCFIDefCfa
2998/// ::= .cfi_def_cfa register, offset
2999bool GenericAsmParser::ParseDirectiveCFIDefCfa(StringRef,
3000 SMLoc DirectiveLoc) {
3001 int64_t Register = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00003002 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindolab40a71f2010-12-29 01:42:56 +00003003 return true;
3004
3005 if (getLexer().isNot(AsmToken::Comma))
3006 return TokError("unexpected token in directive");
3007 Lex();
3008
3009 int64_t Offset = 0;
3010 if (getParser().ParseAbsoluteExpression(Offset))
3011 return true;
3012
Rafael Espindola066c2f42011-04-12 23:59:07 +00003013 getStreamer().EmitCFIDefCfa(Register, Offset);
3014 return false;
Rafael Espindolab40a71f2010-12-29 01:42:56 +00003015}
3016
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003017/// ParseDirectiveCFIDefCfaOffset
3018/// ::= .cfi_def_cfa_offset offset
3019bool GenericAsmParser::ParseDirectiveCFIDefCfaOffset(StringRef,
3020 SMLoc DirectiveLoc) {
3021 int64_t Offset = 0;
3022 if (getParser().ParseAbsoluteExpression(Offset))
3023 return true;
3024
Rafael Espindola066c2f42011-04-12 23:59:07 +00003025 getStreamer().EmitCFIDefCfaOffset(Offset);
3026 return false;
Rafael Espindola53abbe52011-04-11 20:29:16 +00003027}
3028
3029/// ParseDirectiveCFIAdjustCfaOffset
3030/// ::= .cfi_adjust_cfa_offset adjustment
3031bool GenericAsmParser::ParseDirectiveCFIAdjustCfaOffset(StringRef,
3032 SMLoc DirectiveLoc) {
3033 int64_t Adjustment = 0;
3034 if (getParser().ParseAbsoluteExpression(Adjustment))
3035 return true;
3036
Rafael Espindola5d7dcd32011-04-12 18:53:30 +00003037 getStreamer().EmitCFIAdjustCfaOffset(Adjustment);
3038 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003039}
3040
3041/// ParseDirectiveCFIDefCfaRegister
3042/// ::= .cfi_def_cfa_register register
3043bool GenericAsmParser::ParseDirectiveCFIDefCfaRegister(StringRef,
3044 SMLoc DirectiveLoc) {
3045 int64_t Register = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00003046 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003047 return true;
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003048
Rafael Espindola066c2f42011-04-12 23:59:07 +00003049 getStreamer().EmitCFIDefCfaRegister(Register);
3050 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003051}
3052
3053/// ParseDirectiveCFIOffset
Rafael Espindolaa61842b2011-04-11 21:49:50 +00003054/// ::= .cfi_offset register, offset
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003055bool GenericAsmParser::ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc) {
3056 int64_t Register = 0;
3057 int64_t Offset = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00003058
3059 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003060 return true;
3061
3062 if (getLexer().isNot(AsmToken::Comma))
3063 return TokError("unexpected token in directive");
3064 Lex();
3065
3066 if (getParser().ParseAbsoluteExpression(Offset))
3067 return true;
3068
Rafael Espindola066c2f42011-04-12 23:59:07 +00003069 getStreamer().EmitCFIOffset(Register, Offset);
3070 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003071}
3072
Rafael Espindolaa61842b2011-04-11 21:49:50 +00003073/// ParseDirectiveCFIRelOffset
3074/// ::= .cfi_rel_offset register, offset
3075bool GenericAsmParser::ParseDirectiveCFIRelOffset(StringRef,
3076 SMLoc DirectiveLoc) {
3077 int64_t Register = 0;
3078
3079 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
3080 return true;
3081
3082 if (getLexer().isNot(AsmToken::Comma))
3083 return TokError("unexpected token in directive");
3084 Lex();
3085
3086 int64_t Offset = 0;
3087 if (getParser().ParseAbsoluteExpression(Offset))
3088 return true;
3089
Rafael Espindola25f492e2011-04-12 16:12:03 +00003090 getStreamer().EmitCFIRelOffset(Register, Offset);
3091 return false;
Rafael Espindolaa61842b2011-04-11 21:49:50 +00003092}
3093
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00003094static bool isValidEncoding(int64_t Encoding) {
3095 if (Encoding & ~0xff)
3096 return false;
3097
3098 if (Encoding == dwarf::DW_EH_PE_omit)
3099 return true;
3100
3101 const unsigned Format = Encoding & 0xf;
3102 if (Format != dwarf::DW_EH_PE_absptr && Format != dwarf::DW_EH_PE_udata2 &&
3103 Format != dwarf::DW_EH_PE_udata4 && Format != dwarf::DW_EH_PE_udata8 &&
3104 Format != dwarf::DW_EH_PE_sdata2 && Format != dwarf::DW_EH_PE_sdata4 &&
3105 Format != dwarf::DW_EH_PE_sdata8 && Format != dwarf::DW_EH_PE_signed)
3106 return false;
3107
Rafael Espindolacaf11582010-12-29 04:31:26 +00003108 const unsigned Application = Encoding & 0x70;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00003109 if (Application != dwarf::DW_EH_PE_absptr &&
Rafael Espindolacaf11582010-12-29 04:31:26 +00003110 Application != dwarf::DW_EH_PE_pcrel)
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00003111 return false;
3112
3113 return true;
3114}
3115
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003116/// ParseDirectiveCFIPersonalityOrLsda
3117/// ::= .cfi_personality encoding, [symbol_name]
3118/// ::= .cfi_lsda encoding, [symbol_name]
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003119bool GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda(StringRef IDVal,
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003120 SMLoc DirectiveLoc) {
3121 int64_t Encoding = 0;
3122 if (getParser().ParseAbsoluteExpression(Encoding))
3123 return true;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00003124 if (Encoding == dwarf::DW_EH_PE_omit)
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003125 return false;
3126
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00003127 if (!isValidEncoding(Encoding))
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003128 return TokError("unsupported encoding.");
3129
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003130 if (getLexer().isNot(AsmToken::Comma))
3131 return TokError("unexpected token in directive");
3132 Lex();
3133
3134 StringRef Name;
3135 if (getParser().ParseIdentifier(Name))
3136 return TokError("expected identifier in directive");
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003137
3138 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
3139
3140 if (IDVal == ".cfi_personality")
Rafael Espindola066c2f42011-04-12 23:59:07 +00003141 getStreamer().EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003142 else {
3143 assert(IDVal == ".cfi_lsda");
Rafael Espindola066c2f42011-04-12 23:59:07 +00003144 getStreamer().EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00003145 }
Rafael Espindola066c2f42011-04-12 23:59:07 +00003146 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00003147}
3148
Rafael Espindolafe024d02010-12-28 18:36:23 +00003149/// ParseDirectiveCFIRememberState
3150/// ::= .cfi_remember_state
3151bool GenericAsmParser::ParseDirectiveCFIRememberState(StringRef IDVal,
3152 SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00003153 getStreamer().EmitCFIRememberState();
3154 return false;
Rafael Espindolafe024d02010-12-28 18:36:23 +00003155}
3156
3157/// ParseDirectiveCFIRestoreState
3158/// ::= .cfi_remember_state
3159bool GenericAsmParser::ParseDirectiveCFIRestoreState(StringRef IDVal,
3160 SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00003161 getStreamer().EmitCFIRestoreState();
3162 return false;
Rafael Espindolafe024d02010-12-28 18:36:23 +00003163}
3164
Rafael Espindolac5754392011-04-12 15:31:05 +00003165/// ParseDirectiveCFISameValue
3166/// ::= .cfi_same_value register
3167bool GenericAsmParser::ParseDirectiveCFISameValue(StringRef IDVal,
3168 SMLoc DirectiveLoc) {
3169 int64_t Register = 0;
3170
3171 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
3172 return true;
3173
3174 getStreamer().EmitCFISameValue(Register);
3175
3176 return false;
3177}
3178
Rafael Espindolaed23bdb2011-12-29 21:43:03 +00003179/// ParseDirectiveCFIRestore
3180/// ::= .cfi_restore register
3181bool GenericAsmParser::ParseDirectiveCFIRestore(StringRef IDVal,
Bill Wendling96cb1122012-07-19 00:04:14 +00003182 SMLoc DirectiveLoc) {
Rafael Espindolaed23bdb2011-12-29 21:43:03 +00003183 int64_t Register = 0;
3184 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
3185 return true;
3186
3187 getStreamer().EmitCFIRestore(Register);
3188
3189 return false;
3190}
3191
Rafael Espindola6f0b1812011-12-29 20:24:47 +00003192/// ParseDirectiveCFIEscape
3193/// ::= .cfi_escape expression[,...]
3194bool GenericAsmParser::ParseDirectiveCFIEscape(StringRef IDVal,
Bill Wendling96cb1122012-07-19 00:04:14 +00003195 SMLoc DirectiveLoc) {
Rafael Espindola6f0b1812011-12-29 20:24:47 +00003196 std::string Values;
3197 int64_t CurrValue;
3198 if (getParser().ParseAbsoluteExpression(CurrValue))
3199 return true;
3200
3201 Values.push_back((uint8_t)CurrValue);
3202
3203 while (getLexer().is(AsmToken::Comma)) {
3204 Lex();
3205
3206 if (getParser().ParseAbsoluteExpression(CurrValue))
3207 return true;
3208
3209 Values.push_back((uint8_t)CurrValue);
3210 }
3211
3212 getStreamer().EmitCFIEscape(Values);
3213 return false;
3214}
3215
Rafael Espindola16d7d432012-01-23 21:51:52 +00003216/// ParseDirectiveCFISignalFrame
3217/// ::= .cfi_signal_frame
3218bool GenericAsmParser::ParseDirectiveCFISignalFrame(StringRef Directive,
3219 SMLoc DirectiveLoc) {
3220 if (getLexer().isNot(AsmToken::EndOfStatement))
3221 return Error(getLexer().getLoc(),
3222 "unexpected token in '" + Directive + "' directive");
3223
3224 getStreamer().EmitCFISignalFrame();
3225
3226 return false;
3227}
3228
Daniel Dunbar3c802de2010-07-18 18:38:02 +00003229/// ParseDirectiveMacrosOnOff
3230/// ::= .macros_on
3231/// ::= .macros_off
3232bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
3233 SMLoc DirectiveLoc) {
3234 if (getLexer().isNot(AsmToken::EndOfStatement))
3235 return Error(getLexer().getLoc(),
3236 "unexpected token in '" + Directive + "' directive");
3237
3238 getParser().MacrosEnabled = Directive == ".macros_on";
3239
3240 return false;
3241}
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003242
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003243/// ParseDirectiveMacro
Rafael Espindola65366442011-06-05 02:43:45 +00003244/// ::= .macro name [parameters]
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003245bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
3246 SMLoc DirectiveLoc) {
3247 StringRef Name;
3248 if (getParser().ParseIdentifier(Name))
Rafael Espindolad7ae0f12012-08-21 17:12:05 +00003249 return TokError("expected identifier in '.macro' directive");
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003250
Rafael Espindola8a403d32012-08-08 14:51:03 +00003251 MacroParameters Parameters;
Preston Gurd7b6f2032012-09-19 20:36:12 +00003252 // Argument delimiter is initially unknown. It will be set by
3253 // ParseMacroArgument()
3254 AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
Rafael Espindola65366442011-06-05 02:43:45 +00003255 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Rafael Espindola7996d042012-08-21 16:06:48 +00003256 for (;;) {
3257 MacroParameter Parameter;
Preston Gurd6c9176a2012-09-19 20:29:04 +00003258 if (getParser().ParseIdentifier(Parameter.first))
Rafael Espindolad7ae0f12012-08-21 17:12:05 +00003259 return TokError("expected identifier in '.macro' directive");
Preston Gurd6c9176a2012-09-19 20:29:04 +00003260
3261 if (getLexer().is(AsmToken::Equal)) {
3262 Lex();
Preston Gurd7b6f2032012-09-19 20:36:12 +00003263 if (getParser().ParseMacroArgument(Parameter.second, ArgumentDelimiter))
Preston Gurd6c9176a2012-09-19 20:29:04 +00003264 return true;
3265 }
3266
Rafael Espindola65366442011-06-05 02:43:45 +00003267 Parameters.push_back(Parameter);
3268
Preston Gurd7b6f2032012-09-19 20:36:12 +00003269 if (getLexer().is(AsmToken::Comma))
3270 Lex();
3271 else if (getLexer().is(AsmToken::EndOfStatement))
Rafael Espindola65366442011-06-05 02:43:45 +00003272 break;
Rafael Espindola65366442011-06-05 02:43:45 +00003273 }
3274 }
3275
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003276 // Eat the end of statement.
3277 Lex();
3278
3279 AsmToken EndToken, StartToken = getTok();
3280
3281 // Lex the macro definition.
3282 for (;;) {
3283 // Check whether we have reached the end of the file.
3284 if (getLexer().is(AsmToken::Eof))
3285 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
3286
3287 // Otherwise, check whether we have reach the .endmacro.
3288 if (getLexer().is(AsmToken::Identifier) &&
3289 (getTok().getIdentifier() == ".endm" ||
3290 getTok().getIdentifier() == ".endmacro")) {
3291 EndToken = getTok();
3292 Lex();
3293 if (getLexer().isNot(AsmToken::EndOfStatement))
3294 return TokError("unexpected token in '" + EndToken.getIdentifier() +
3295 "' directive");
3296 break;
3297 }
3298
3299 // Otherwise, scan til the end of the statement.
3300 getParser().EatToEndOfStatement();
3301 }
3302
3303 if (getParser().MacroMap.lookup(Name)) {
3304 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
3305 }
3306
3307 const char *BodyStart = StartToken.getLoc().getPointer();
3308 const char *BodyEnd = EndToken.getLoc().getPointer();
3309 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
Rafael Espindola65366442011-06-05 02:43:45 +00003310 getParser().MacroMap[Name] = new Macro(Name, Body, Parameters);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003311 return false;
3312}
3313
3314/// ParseDirectiveEndMacro
3315/// ::= .endm
3316/// ::= .endmacro
3317bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
Rafael Espindola8a403d32012-08-08 14:51:03 +00003318 SMLoc DirectiveLoc) {
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003319 if (getLexer().isNot(AsmToken::EndOfStatement))
3320 return TokError("unexpected token in '" + Directive + "' directive");
3321
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00003322 // If we are inside a macro instantiation, terminate the current
3323 // instantiation.
3324 if (!getParser().ActiveMacros.empty()) {
3325 getParser().HandleMacroExit();
3326 return false;
3327 }
3328
3329 // Otherwise, this .endmacro is a stray entry in the file; well formed
3330 // .endmacro directives are handled during the macro definition parsing.
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003331 return TokError("unexpected '" + Directive + "' in file, "
3332 "no current macro definition");
3333}
3334
Benjamin Kramerbc3b27c2012-05-12 11:21:46 +00003335/// ParseDirectivePurgeMacro
3336/// ::= .purgem
3337bool GenericAsmParser::ParseDirectivePurgeMacro(StringRef Directive,
3338 SMLoc DirectiveLoc) {
3339 StringRef Name;
3340 if (getParser().ParseIdentifier(Name))
3341 return TokError("expected identifier in '.purgem' directive");
3342
3343 if (getLexer().isNot(AsmToken::EndOfStatement))
3344 return TokError("unexpected token in '.purgem' directive");
3345
3346 StringMap<Macro*>::iterator I = getParser().MacroMap.find(Name);
3347 if (I == getParser().MacroMap.end())
3348 return Error(DirectiveLoc, "macro '" + Name + "' is not defined");
3349
3350 // Undefine the macro.
3351 delete I->getValue();
3352 getParser().MacroMap.erase(I);
3353 return false;
3354}
3355
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003356bool GenericAsmParser::ParseDirectiveLEB128(StringRef DirName, SMLoc) {
Rafael Espindola3ff57092010-11-02 17:22:24 +00003357 getParser().CheckForValidSection();
3358
3359 const MCExpr *Value;
3360
3361 if (getParser().ParseExpression(Value))
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003362 return true;
3363
3364 if (getLexer().isNot(AsmToken::EndOfStatement))
3365 return TokError("unexpected token in directive");
3366
3367 if (DirName[1] == 's')
Rafael Espindola3ff57092010-11-02 17:22:24 +00003368 getStreamer().EmitSLEB128Value(Value);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003369 else
Rafael Espindola3ff57092010-11-02 17:22:24 +00003370 getStreamer().EmitULEB128Value(Value);
3371
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003372 return false;
3373}
3374
Rafael Espindola761cb062012-06-03 23:57:14 +00003375Macro *AsmParser::ParseMacroLikeBody(SMLoc DirectiveLoc) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003376 AsmToken EndToken, StartToken = getTok();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003377
Rafael Espindola761cb062012-06-03 23:57:14 +00003378 unsigned NestLevel = 0;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003379 for (;;) {
3380 // Check whether we have reached the end of the file.
Rafael Espindola761cb062012-06-03 23:57:14 +00003381 if (getLexer().is(AsmToken::Eof)) {
3382 Error(DirectiveLoc, "no matching '.endr' in definition");
3383 return 0;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003384 }
3385
Rafael Espindola761cb062012-06-03 23:57:14 +00003386 if (Lexer.is(AsmToken::Identifier) &&
3387 (getTok().getIdentifier() == ".rept")) {
3388 ++NestLevel;
3389 }
3390
3391 // Otherwise, check whether we have reached the .endr.
3392 if (Lexer.is(AsmToken::Identifier) &&
3393 getTok().getIdentifier() == ".endr") {
3394 if (NestLevel == 0) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003395 EndToken = getTok();
3396 Lex();
Rafael Espindola761cb062012-06-03 23:57:14 +00003397 if (Lexer.isNot(AsmToken::EndOfStatement)) {
3398 TokError("unexpected token in '.endr' directive");
3399 return 0;
3400 }
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003401 break;
3402 }
Rafael Espindola761cb062012-06-03 23:57:14 +00003403 --NestLevel;
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003404 }
3405
Rafael Espindola761cb062012-06-03 23:57:14 +00003406 // Otherwise, scan till the end of the statement.
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003407 EatToEndOfStatement();
3408 }
3409
3410 const char *BodyStart = StartToken.getLoc().getPointer();
3411 const char *BodyEnd = EndToken.getLoc().getPointer();
3412 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
3413
Rafael Espindola761cb062012-06-03 23:57:14 +00003414 // We Are Anonymous.
3415 StringRef Name;
Rafael Espindola8a403d32012-08-08 14:51:03 +00003416 MacroParameters Parameters;
Rafael Espindola761cb062012-06-03 23:57:14 +00003417 return new Macro(Name, Body, Parameters);
3418}
3419
3420void AsmParser::InstantiateMacroLikeBody(Macro *M, SMLoc DirectiveLoc,
3421 raw_svector_ostream &OS) {
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003422 OS << ".endr\n";
3423
3424 MemoryBuffer *Instantiation =
3425 MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
3426
Rafael Espindola761cb062012-06-03 23:57:14 +00003427 // Create the macro instantiation object and add to the current macro
3428 // instantiation stack.
3429 MacroInstantiation *MI = new MacroInstantiation(M, DirectiveLoc,
3430 getTok().getLoc(),
3431 Instantiation);
3432 ActiveMacros.push_back(MI);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003433
Rafael Espindola761cb062012-06-03 23:57:14 +00003434 // Jump to the macro instantiation and prime the lexer.
3435 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
3436 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
3437 Lex();
3438}
3439
3440bool AsmParser::ParseDirectiveRept(SMLoc DirectiveLoc) {
3441 int64_t Count;
3442 if (ParseAbsoluteExpression(Count))
3443 return TokError("unexpected token in '.rept' directive");
3444
3445 if (Count < 0)
3446 return TokError("Count is negative");
3447
3448 if (Lexer.isNot(AsmToken::EndOfStatement))
3449 return TokError("unexpected token in '.rept' directive");
3450
3451 // Eat the end of statement.
3452 Lex();
3453
3454 // Lex the rept definition.
3455 Macro *M = ParseMacroLikeBody(DirectiveLoc);
3456 if (!M)
3457 return true;
3458
3459 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3460 // to hold the macro body with substitutions.
3461 SmallString<256> Buf;
Rafael Espindola8a403d32012-08-08 14:51:03 +00003462 MacroParameters Parameters;
3463 MacroArguments A;
Rafael Espindola761cb062012-06-03 23:57:14 +00003464 raw_svector_ostream OS(Buf);
3465 while (Count--) {
3466 if (expandMacro(OS, M->Body, Parameters, A, getTok().getLoc()))
3467 return true;
3468 }
3469 InstantiateMacroLikeBody(M, DirectiveLoc, OS);
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003470
3471 return false;
3472}
3473
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003474/// ParseDirectiveIrp
3475/// ::= .irp symbol,values
3476bool AsmParser::ParseDirectiveIrp(SMLoc DirectiveLoc) {
Rafael Espindola8a403d32012-08-08 14:51:03 +00003477 MacroParameters Parameters;
3478 MacroParameter Parameter;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003479
Preston Gurd6c9176a2012-09-19 20:29:04 +00003480 if (ParseIdentifier(Parameter.first))
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003481 return TokError("expected identifier in '.irp' directive");
3482
3483 Parameters.push_back(Parameter);
3484
3485 if (Lexer.isNot(AsmToken::Comma))
3486 return TokError("expected comma in '.irp' directive");
3487
3488 Lex();
3489
Rafael Espindola8a403d32012-08-08 14:51:03 +00003490 MacroArguments A;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003491 if (ParseMacroArguments(0, A))
3492 return true;
3493
3494 // Eat the end of statement.
3495 Lex();
3496
3497 // Lex the irp definition.
3498 Macro *M = ParseMacroLikeBody(DirectiveLoc);
3499 if (!M)
3500 return true;
3501
3502 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3503 // to hold the macro body with substitutions.
3504 SmallString<256> Buf;
3505 raw_svector_ostream OS(Buf);
3506
Rafael Espindola7996d042012-08-21 16:06:48 +00003507 for (MacroArguments::iterator i = A.begin(), e = A.end(); i != e; ++i) {
3508 MacroArguments Args;
Rafael Espindolaaa7a2f22012-06-15 14:02:34 +00003509 Args.push_back(*i);
3510
3511 if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
3512 return true;
3513 }
3514
3515 InstantiateMacroLikeBody(M, DirectiveLoc, OS);
3516
3517 return false;
3518}
3519
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003520/// ParseDirectiveIrpc
3521/// ::= .irpc symbol,values
3522bool AsmParser::ParseDirectiveIrpc(SMLoc DirectiveLoc) {
Rafael Espindola8a403d32012-08-08 14:51:03 +00003523 MacroParameters Parameters;
3524 MacroParameter Parameter;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003525
Preston Gurd6c9176a2012-09-19 20:29:04 +00003526 if (ParseIdentifier(Parameter.first))
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003527 return TokError("expected identifier in '.irpc' directive");
3528
3529 Parameters.push_back(Parameter);
3530
3531 if (Lexer.isNot(AsmToken::Comma))
3532 return TokError("expected comma in '.irpc' directive");
3533
3534 Lex();
3535
Rafael Espindola8a403d32012-08-08 14:51:03 +00003536 MacroArguments A;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003537 if (ParseMacroArguments(0, A))
3538 return true;
3539
3540 if (A.size() != 1 || A.front().size() != 1)
3541 return TokError("unexpected token in '.irpc' directive");
3542
3543 // Eat the end of statement.
3544 Lex();
3545
3546 // Lex the irpc definition.
3547 Macro *M = ParseMacroLikeBody(DirectiveLoc);
3548 if (!M)
3549 return true;
3550
3551 // Macro instantiation is lexical, unfortunately. We construct a new buffer
3552 // to hold the macro body with substitutions.
3553 SmallString<256> Buf;
3554 raw_svector_ostream OS(Buf);
3555
3556 StringRef Values = A.front().front().getString();
3557 std::size_t I, End = Values.size();
3558 for (I = 0; I < End; ++I) {
3559 MacroArgument Arg;
3560 Arg.push_back(AsmToken(AsmToken::Identifier, Values.slice(I, I+1)));
3561
Rafael Espindola8a403d32012-08-08 14:51:03 +00003562 MacroArguments Args;
Rafael Espindolafc9216e2012-06-16 18:03:25 +00003563 Args.push_back(Arg);
3564
3565 if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
3566 return true;
3567 }
3568
3569 InstantiateMacroLikeBody(M, DirectiveLoc, OS);
3570
3571 return false;
3572}
3573
Rafael Espindola761cb062012-06-03 23:57:14 +00003574bool AsmParser::ParseDirectiveEndr(SMLoc DirectiveLoc) {
3575 if (ActiveMacros.empty())
Preston Gurd6579eea2012-09-19 20:23:43 +00003576 return TokError("unmatched '.endr' directive");
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003577
3578 // The only .repl that should get here are the ones created by
Rafael Espindola761cb062012-06-03 23:57:14 +00003579 // InstantiateMacroLikeBody.
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003580 assert(getLexer().is(AsmToken::EndOfStatement));
3581
Rafael Espindola761cb062012-06-03 23:57:14 +00003582 HandleMacroExit();
Rafael Espindola2ec304c2012-05-12 16:31:10 +00003583 return false;
3584}
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003585
Chad Rosierb1f8c132012-10-18 15:49:34 +00003586namespace {
Chad Rosier4e472d22012-10-20 01:02:45 +00003587enum AsmRewriteKind {
Chad Rosierb1f8c132012-10-18 15:49:34 +00003588 AOK_Imm,
3589 AOK_Input,
Chad Rosier96d58e62012-10-19 20:57:14 +00003590 AOK_Output,
Eli Friedman2128aae2012-10-22 23:58:19 +00003591 AOK_SizeDirective,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003592 AOK_Emit,
3593 AOK_Skip
Chad Rosierb1f8c132012-10-18 15:49:34 +00003594};
3595
Chad Rosier4e472d22012-10-20 01:02:45 +00003596struct AsmRewrite {
3597 AsmRewriteKind Kind;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003598 SMLoc Loc;
3599 unsigned Len;
Chad Rosier96d58e62012-10-19 20:57:14 +00003600 unsigned Size;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003601public:
Chad Rosier4e472d22012-10-20 01:02:45 +00003602 AsmRewrite(AsmRewriteKind kind, SMLoc loc, unsigned len, unsigned size = 0)
Chad Rosier96d58e62012-10-19 20:57:14 +00003603 : Kind(kind), Loc(loc), Len(len), Size(size) { }
Chad Rosierb1f8c132012-10-18 15:49:34 +00003604};
3605}
3606
Eli Friedman2128aae2012-10-22 23:58:19 +00003607bool AsmParser::ParseDirectiveEmit(SMLoc IDLoc, ParseStatementInfo &Info) {
3608 const MCExpr *Value;
3609 SMLoc ExprLoc = getLexer().getLoc();
3610 if (ParseExpression(Value))
3611 return true;
3612 const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value);
3613 if (!MCE)
3614 return Error(ExprLoc, "unexpected expression in _emit");
3615 uint64_t IntValue = MCE->getValue();
3616 if (!isUIntN(8, IntValue) && !isIntN(8, IntValue))
3617 return Error(ExprLoc, "literal value out of range for directive");
3618
3619 Info.AsmRewrites->push_back(AsmRewrite(AOK_Emit, IDLoc, 5));
3620 return false;
3621}
3622
Chad Rosierb1f8c132012-10-18 15:49:34 +00003623bool AsmParser::ParseMSInlineAsm(void *AsmLoc, std::string &AsmString,
3624 unsigned &NumOutputs, unsigned &NumInputs,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003625 SmallVectorImpl<std::pair<void *, bool> > &OpDecls,
Chad Rosierb1f8c132012-10-18 15:49:34 +00003626 SmallVectorImpl<std::string> &Constraints,
Chad Rosierb1f8c132012-10-18 15:49:34 +00003627 SmallVectorImpl<std::string> &Clobbers,
3628 const MCInstrInfo *MII,
3629 const MCInstPrinter *IP,
3630 MCAsmParserSemaCallback &SI) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00003631 SmallVector<void *, 4> InputDecls;
3632 SmallVector<void *, 4> OutputDecls;
3633 SmallVector<bool, 4> InputDeclsOffsetOf;
3634 SmallVector<bool, 4> OutputDeclsOffsetOf;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003635 SmallVector<std::string, 4> InputConstraints;
3636 SmallVector<std::string, 4> OutputConstraints;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003637 std::set<std::string> ClobberRegs;
3638
Chad Rosier4e472d22012-10-20 01:02:45 +00003639 SmallVector<struct AsmRewrite, 4> AsmStrRewrites;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003640
3641 // Prime the lexer.
3642 Lex();
3643
3644 // While we have input, parse each statement.
3645 unsigned InputIdx = 0;
3646 unsigned OutputIdx = 0;
3647 while (getLexer().isNot(AsmToken::Eof)) {
Eli Friedman2128aae2012-10-22 23:58:19 +00003648 ParseStatementInfo Info(&AsmStrRewrites);
3649 if (ParseStatement(Info))
Chad Rosierab450e42012-10-19 22:57:33 +00003650 return true;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003651
Eli Friedman2128aae2012-10-22 23:58:19 +00003652 if (Info.Opcode != ~0U) {
3653 const MCInstrDesc &Desc = MII->get(Info.Opcode);
Chad Rosierb1f8c132012-10-18 15:49:34 +00003654
3655 // Build the list of clobbers, outputs and inputs.
Eli Friedman2128aae2012-10-22 23:58:19 +00003656 for (unsigned i = 1, e = Info.ParsedOperands.size(); i != e; ++i) {
3657 MCParsedAsmOperand *Operand = Info.ParsedOperands[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00003658
3659 // Immediate.
3660 if (Operand->isImm()) {
Chad Rosier4e472d22012-10-20 01:02:45 +00003661 AsmStrRewrites.push_back(AsmRewrite(AOK_Imm,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003662 Operand->getStartLoc(),
3663 Operand->getNameLen()));
Chad Rosierb1f8c132012-10-18 15:49:34 +00003664 continue;
3665 }
3666
3667 // Register operand.
3668 if (Operand->isReg()) {
3669 unsigned NumDefs = Desc.getNumDefs();
3670 // Clobber.
3671 if (NumDefs && Operand->getMCOperandNum() < NumDefs) {
3672 std::string Reg;
3673 raw_string_ostream OS(Reg);
3674 IP->printRegName(OS, Operand->getReg());
3675 ClobberRegs.insert(StringRef(OS.str()));
3676 }
3677 continue;
3678 }
3679
3680 // Expr/Input or Output.
Chad Rosier32989592012-10-18 20:27:15 +00003681 unsigned Size;
3682 void *OpDecl = SI.LookupInlineAsmIdentifier(Operand->getName(), AsmLoc,
3683 Size);
Chad Rosierc8dd27e2012-10-18 19:39:30 +00003684 if (OpDecl) {
Chad Rosierb1f8c132012-10-18 15:49:34 +00003685 bool isOutput = (i == 1) && Desc.mayStore();
Chad Rosier5a719fc2012-10-23 17:43:43 +00003686 if (Operand->needSizeDirective() && !Operand->isOffsetOf())
Chad Rosier4e472d22012-10-20 01:02:45 +00003687 AsmStrRewrites.push_back(AsmRewrite(AOK_SizeDirective,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003688 Operand->getStartLoc(), 0,
3689 Operand->getMemSize()));
3690
3691 // Don't emit the offset directive.
3692 if (Operand->isOffsetOf())
3693 AsmStrRewrites.push_back(AsmRewrite(AOK_Skip,
3694 Operand->getOffsetOfLoc(), 7));
3695
Chad Rosierb1f8c132012-10-18 15:49:34 +00003696 if (isOutput) {
3697 std::string Constraint = "=";
3698 ++InputIdx;
Chad Rosierc8dd27e2012-10-18 19:39:30 +00003699 OutputDecls.push_back(OpDecl);
Chad Rosier5a719fc2012-10-23 17:43:43 +00003700 OutputDeclsOffsetOf.push_back(Operand->isOffsetOf());
Chad Rosierb1f8c132012-10-18 15:49:34 +00003701 Constraint += Operand->getConstraint().str();
3702 OutputConstraints.push_back(Constraint);
Chad Rosier4e472d22012-10-20 01:02:45 +00003703 AsmStrRewrites.push_back(AsmRewrite(AOK_Output,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003704 Operand->getStartLoc(),
3705 Operand->getNameLen()));
Chad Rosierb1f8c132012-10-18 15:49:34 +00003706 } else {
Chad Rosierc8dd27e2012-10-18 19:39:30 +00003707 InputDecls.push_back(OpDecl);
Chad Rosier5a719fc2012-10-23 17:43:43 +00003708 InputDeclsOffsetOf.push_back(Operand->isOffsetOf());
Chad Rosierb1f8c132012-10-18 15:49:34 +00003709 InputConstraints.push_back(Operand->getConstraint().str());
Chad Rosier4e472d22012-10-20 01:02:45 +00003710 AsmStrRewrites.push_back(AsmRewrite(AOK_Input,
Chad Rosier5a719fc2012-10-23 17:43:43 +00003711 Operand->getStartLoc(),
3712 Operand->getNameLen()));
Chad Rosierb1f8c132012-10-18 15:49:34 +00003713 }
3714 }
3715 }
Chad Rosierb1f8c132012-10-18 15:49:34 +00003716 }
3717 }
3718
3719 // Set the number of Outputs and Inputs.
Chad Rosierc8dd27e2012-10-18 19:39:30 +00003720 NumOutputs = OutputDecls.size();
3721 NumInputs = InputDecls.size();
Chad Rosierb1f8c132012-10-18 15:49:34 +00003722
3723 // Set the unique clobbers.
3724 for (std::set<std::string>::iterator I = ClobberRegs.begin(),
3725 E = ClobberRegs.end(); I != E; ++I)
3726 Clobbers.push_back(*I);
3727
3728 // Merge the various outputs and inputs. Output are expected first.
3729 if (NumOutputs || NumInputs) {
3730 unsigned NumExprs = NumOutputs + NumInputs;
Chad Rosierc8dd27e2012-10-18 19:39:30 +00003731 OpDecls.resize(NumExprs);
Chad Rosierb1f8c132012-10-18 15:49:34 +00003732 Constraints.resize(NumExprs);
Chad Rosier5a719fc2012-10-23 17:43:43 +00003733 // FIXME: Constraints are hard coded to 'm', but we need an 'r'
3734 // constraint for offsetof. This needs to be cleaned up!
Chad Rosierb1f8c132012-10-18 15:49:34 +00003735 for (unsigned i = 0; i < NumOutputs; ++i) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00003736 OpDecls[i] = std::make_pair(OutputDecls[i], OutputDeclsOffsetOf[i]);
3737 Constraints[i] = OutputDeclsOffsetOf[i] ? "=r" : OutputConstraints[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00003738 }
3739 for (unsigned i = 0, j = NumOutputs; i < NumInputs; ++i, ++j) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00003740 OpDecls[j] = std::make_pair(InputDecls[i], InputDeclsOffsetOf[i]);
3741 Constraints[j] = InputDeclsOffsetOf[i] ? "r" : InputConstraints[i];
Chad Rosierb1f8c132012-10-18 15:49:34 +00003742 }
3743 }
3744
3745 // Build the IR assembly string.
3746 std::string AsmStringIR;
Chad Rosier4e472d22012-10-20 01:02:45 +00003747 AsmRewriteKind PrevKind = AOK_Imm;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003748 raw_string_ostream OS(AsmStringIR);
3749 const char *Start = SrcMgr.getMemoryBuffer(0)->getBufferStart();
Chad Rosier4e472d22012-10-20 01:02:45 +00003750 for (SmallVectorImpl<struct AsmRewrite>::iterator
Chad Rosierb1f8c132012-10-18 15:49:34 +00003751 I = AsmStrRewrites.begin(), E = AsmStrRewrites.end(); I != E; ++I) {
3752 const char *Loc = (*I).Loc.getPointer();
Chad Rosier96d58e62012-10-19 20:57:14 +00003753
Chad Rosier4e472d22012-10-20 01:02:45 +00003754 AsmRewriteKind Kind = (*I).Kind;
Chad Rosier96d58e62012-10-19 20:57:14 +00003755
3756 // Emit everything up to the immediate/expression. If the previous rewrite
3757 // was a size directive, then this has already been done.
3758 if (PrevKind != AOK_SizeDirective)
3759 OS << StringRef(Start, Loc - Start);
3760 PrevKind = Kind;
3761
Chad Rosier5a719fc2012-10-23 17:43:43 +00003762 // Skip the original expression.
3763 if (Kind == AOK_Skip) {
3764 Start = Loc + (*I).Len;
3765 continue;
3766 }
3767
Chad Rosierb1f8c132012-10-18 15:49:34 +00003768 // Rewrite expressions in $N notation.
Chad Rosier96d58e62012-10-19 20:57:14 +00003769 switch (Kind) {
Chad Rosier5a719fc2012-10-23 17:43:43 +00003770 default: break;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003771 case AOK_Imm:
3772 OS << Twine("$$") + StringRef(Loc, (*I).Len);
3773 break;
3774 case AOK_Input:
3775 OS << '$';
3776 OS << InputIdx++;
3777 break;
3778 case AOK_Output:
3779 OS << '$';
3780 OS << OutputIdx++;
3781 break;
Chad Rosier96d58e62012-10-19 20:57:14 +00003782 case AOK_SizeDirective:
3783 switch((*I).Size) {
3784 default: break;
3785 case 8: OS << "byte ptr "; break;
3786 case 16: OS << "word ptr "; break;
3787 case 32: OS << "dword ptr "; break;
3788 case 64: OS << "qword ptr "; break;
3789 case 80: OS << "xword ptr "; break;
3790 case 128: OS << "xmmword ptr "; break;
3791 case 256: OS << "ymmword ptr "; break;
3792 }
Eli Friedman2128aae2012-10-22 23:58:19 +00003793 break;
3794 case AOK_Emit:
3795 OS << ".byte";
3796 break;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003797 }
Chad Rosier96d58e62012-10-19 20:57:14 +00003798
Chad Rosierb1f8c132012-10-18 15:49:34 +00003799 // Skip the original expression.
Chad Rosier96d58e62012-10-19 20:57:14 +00003800 if (Kind != AOK_SizeDirective)
3801 Start = Loc + (*I).Len;
Chad Rosierb1f8c132012-10-18 15:49:34 +00003802 }
3803
3804 // Emit the remainder of the asm string.
3805 const char *AsmEnd = SrcMgr.getMemoryBuffer(0)->getBufferEnd();
3806 if (Start != AsmEnd)
3807 OS << StringRef(Start, AsmEnd - Start);
3808
3809 AsmString = OS.str();
3810 return false;
3811}
3812
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003813/// \brief Create an MCAsmParser instance.
Jim Grosbach1b84cce2011-08-16 18:33:49 +00003814MCAsmParser *llvm::createMCAsmParser(SourceMgr &SM,
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003815 MCContext &C, MCStreamer &Out,
3816 const MCAsmInfo &MAI) {
Jim Grosbach1b84cce2011-08-16 18:33:49 +00003817 return new AsmParser(SM, C, Out, MAI);
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003818}