blob: d6f9236077e91239cb38726ff1bfeb791ed72fb4 [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"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000022#include "llvm/MC/MCParser/AsmCond.h"
23#include "llvm/MC/MCParser/AsmLexer.h"
24#include "llvm/MC/MCParser/MCAsmParser.h"
25#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Evan Chenge76a33b2011-07-20 05:58:47 +000026#include "llvm/MC/MCRegisterInfo.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000027#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000028#include "llvm/MC/MCStreamer.h"
Daniel Dunbardce0f3c2009-06-29 23:43:14 +000029#include "llvm/MC/MCSymbol.h"
Evan Cheng94b95502011-07-26 00:24:13 +000030#include "llvm/MC/MCTargetAsmParser.h"
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +000031#include "llvm/Support/CommandLine.h"
Benjamin Kramer518ff562012-01-28 15:28:41 +000032#include "llvm/Support/ErrorHandling.h"
Jim Grosbach254cf032011-06-29 16:05:14 +000033#include "llvm/Support/MathExtras.h"
Kevin Enderbyf187ac52010-06-28 21:45:58 +000034#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbaraef87e32010-07-18 18:31:38 +000035#include "llvm/Support/SourceMgr.h"
Chris Lattnerb0789ed2009-06-21 20:54:55 +000036#include "llvm/Support/raw_ostream.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000037#include <cctype>
Daniel Dunbaraef87e32010-07-18 18:31:38 +000038#include <vector>
Chris Lattner27aa7d22009-06-21 20:16:42 +000039using namespace llvm;
40
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +000041static cl::opt<bool>
42FatalAssemblerWarnings("fatal-assembler-warnings",
43 cl::desc("Consider warnings as error"));
44
Daniel Dunbar81ea00f2010-07-12 17:54:38 +000045namespace {
46
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000047/// \brief Helper class for tracking macro definitions.
48struct Macro {
49 StringRef Name;
50 StringRef Body;
Rafael Espindola65366442011-06-05 02:43:45 +000051 std::vector<StringRef> Parameters;
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000052
53public:
Rafael Espindola65366442011-06-05 02:43:45 +000054 Macro(StringRef N, StringRef B, const std::vector<StringRef> &P) :
55 Name(N), Body(B), Parameters(P) {}
Daniel Dunbar6d8cf082010-07-18 18:47:21 +000056};
57
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000058/// \brief Helper class for storing information about an active macro
59/// instantiation.
60struct MacroInstantiation {
61 /// The macro being instantiated.
62 const Macro *TheMacro;
63
64 /// The macro instantiation with substitutions.
65 MemoryBuffer *Instantiation;
66
67 /// The location of the instantiation.
68 SMLoc InstantiationLoc;
69
70 /// The location where parsing should resume upon instantiation completion.
71 SMLoc ExitLoc;
72
73public:
Daniel Dunbar7a570d02010-07-18 19:00:10 +000074 MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
Rafael Espindola65366442011-06-05 02:43:45 +000075 MemoryBuffer *I);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +000076};
77
Daniel Dunbaraef87e32010-07-18 18:31:38 +000078/// \brief The concrete assembly parser instance.
79class AsmParser : public MCAsmParser {
Daniel Dunbar3c802de2010-07-18 18:38:02 +000080 friend class GenericAsmParser;
81
Daniel Dunbaraef87e32010-07-18 18:31:38 +000082 AsmParser(const AsmParser &); // DO NOT IMPLEMENT
83 void operator=(const AsmParser &); // DO NOT IMPLEMENT
84private:
85 AsmLexer Lexer;
86 MCContext &Ctx;
87 MCStreamer &Out;
Jim Grosbache82b8ee2011-06-15 18:33:28 +000088 const MCAsmInfo &MAI;
Daniel Dunbaraef87e32010-07-18 18:31:38 +000089 SourceMgr &SrcMgr;
Benjamin Kramer04a04262011-10-16 10:48:29 +000090 SourceMgr::DiagHandlerTy SavedDiagHandler;
91 void *SavedDiagContext;
Daniel Dunbaraef87e32010-07-18 18:31:38 +000092 MCAsmParserExtension *GenericParser;
93 MCAsmParserExtension *PlatformParser;
Rafael Espindolaa61842b2011-04-11 21:49:50 +000094
Daniel Dunbaraef87e32010-07-18 18:31:38 +000095 /// This is the current buffer index we're lexing from as managed by the
96 /// SourceMgr object.
97 int CurBuffer;
98
99 AsmCond TheCondState;
100 std::vector<AsmCond> TheCondStack;
101
102 /// DirectiveMap - This is a table handlers for directives. Each handler is
103 /// invoked after the directive identifier is read and is responsible for
104 /// parsing and validating the rest of the directive. The handler is passed
105 /// in the directive name and the location of the directive keyword.
106 StringMap<std::pair<MCAsmParserExtension*, DirectiveHandler> > DirectiveMap;
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000107
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000108 /// MacroMap - Map of currently defined macros.
109 StringMap<Macro*> MacroMap;
110
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000111 /// ActiveMacros - Stack of active macro instantiations.
112 std::vector<MacroInstantiation*> ActiveMacros;
113
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000114 /// Boolean tracking whether macro substitution is enabled.
115 unsigned MacrosEnabled : 1;
116
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000117 /// Flag tracking whether any errors have been encountered.
118 unsigned HadError : 1;
119
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000120 /// The values from the last parsed cpp hash file line comment if any.
121 StringRef CppHashFilename;
122 int64_t CppHashLineNumber;
123 SMLoc CppHashLoc;
124
Devang Patel0db58bf2012-01-31 18:14:05 +0000125 /// AssemblerDialect. ~OU means unset value and use value provided by MAI.
126 unsigned AssemblerDialect;
127
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000128public:
Jim Grosbach1b84cce2011-08-16 18:33:49 +0000129 AsmParser(SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000130 const MCAsmInfo &MAI);
131 ~AsmParser();
132
133 virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
134
135 void AddDirectiveHandler(MCAsmParserExtension *Object,
136 StringRef Directive,
137 DirectiveHandler Handler) {
138 DirectiveMap[Directive] = std::make_pair(Object, Handler);
139 }
140
141public:
142 /// @name MCAsmParser Interface
143 /// {
144
145 virtual SourceMgr &getSourceManager() { return SrcMgr; }
146 virtual MCAsmLexer &getLexer() { return Lexer; }
147 virtual MCContext &getContext() { return Ctx; }
148 virtual MCStreamer &getStreamer() { return Out; }
Devang Patel0db58bf2012-01-31 18:14:05 +0000149 virtual unsigned getAssemblerDialect() {
150 if (AssemblerDialect == ~0U)
151 return MAI.getAssemblerDialect();
152 else
153 return AssemblerDialect;
154 }
155 virtual void setAssemblerDialect(unsigned i) {
156 AssemblerDialect = i;
157 }
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000158
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000159 virtual bool Warning(SMLoc L, const Twine &Msg,
160 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>());
161 virtual bool Error(SMLoc L, const Twine &Msg,
162 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>());
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000163
164 const AsmToken &Lex();
165
166 bool ParseExpression(const MCExpr *&Res);
167 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
168 virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
169 virtual bool ParseAbsoluteExpression(int64_t &Res);
170
171 /// }
172
173private:
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000174 void CheckForValidSection();
175
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000176 bool ParseStatement();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000177 void EatToEndOfLine();
178 bool ParseCppHashLineFilenameComment(const SMLoc &L);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000179
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000180 bool HandleMacroEntry(StringRef Name, SMLoc NameLoc, const Macro *M);
Rafael Espindola65366442011-06-05 02:43:45 +0000181 bool expandMacro(SmallString<256> &Buf, StringRef Body,
182 const std::vector<StringRef> &Parameters,
183 const std::vector<std::vector<AsmToken> > &A,
184 const SMLoc &L);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000185 void HandleMacroExit();
186
187 void PrintMacroInstantiations();
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000188 void PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Msg,
Chris Lattner462b43c2011-10-16 05:47:55 +0000189 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) const {
190 SrcMgr.PrintMessage(Loc, Kind, Msg, Ranges);
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000191 }
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000192 static void DiagHandler(const SMDiagnostic &Diag, void *Context);
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000193
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000194 /// EnterIncludeFile - Enter the specified file. This returns true on failure.
195 bool EnterIncludeFile(const std::string &Filename);
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000196 /// ProcessIncbinFile - Process the specified file for the .incbin directive.
197 /// This returns true on failure.
198 bool ProcessIncbinFile(const std::string &Filename);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000199
200 /// \brief Reset the current lexer position to that given by \arg Loc. The
201 /// current token is not set; clients should ensure Lex() is called
202 /// subsequently.
203 void JumpToLoc(SMLoc Loc);
204
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000205 void EatToEndOfStatement();
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000206
207 /// \brief Parse up to the end of statement and a return the contents from the
208 /// current token until the end of the statement; the current token on exit
209 /// will be either the EndOfStatement or EOF.
210 StringRef ParseStringToEndOfStatement();
211
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000212 /// \brief Parse until the end of a statement or a comma is encountered,
213 /// return the contents from the current token up to the end or comma.
214 StringRef ParseStringToComma();
215
Nico Weber4c4c7322011-01-28 03:04:41 +0000216 bool ParseAssignment(StringRef Name, bool allow_redef);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000217
218 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
219 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
220 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000221 bool ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000222
223 /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
224 /// and set \arg Res to the identifier contents.
225 bool ParseIdentifier(StringRef &Res);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000226
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000227 // Directive Parsing.
Rafael Espindola787c3372010-10-28 20:02:27 +0000228
229 // ".ascii", ".asciiz", ".string"
230 bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000231 bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
Daniel Dunbarb95a0792010-09-24 01:59:56 +0000232 bool ParseDirectiveRealValue(const fltSemantics &); // ".single", ...
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000233 bool ParseDirectiveFill(); // ".fill"
234 bool ParseDirectiveSpace(); // ".space"
Rafael Espindola2ea2ac72010-09-16 15:03:59 +0000235 bool ParseDirectiveZero(); // ".zero"
Nico Weber4c4c7322011-01-28 03:04:41 +0000236 bool ParseDirectiveSet(StringRef IDVal, bool allow_redef); // ".set", ".equ", ".equiv"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000237 bool ParseDirectiveOrg(); // ".org"
238 // ".align{,32}", ".p2align{,w,l}"
239 bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
240
241 /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
242 /// accepts a single symbol (which should be a label or an external).
243 bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000244
245 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
246
247 bool ParseDirectiveAbort(); // ".abort"
248 bool ParseDirectiveInclude(); // ".include"
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000249 bool ParseDirectiveIncbin(); // ".incbin"
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000250
251 bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +0000252 // ".ifb" or ".ifnb", depending on ExpectBlank.
253 bool ParseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank);
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000254 // ".ifc" or ".ifnc", depending on ExpectEqual.
255 bool ParseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual);
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +0000256 // ".ifdef" or ".ifndef", depending on expect_defined
257 bool ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000258 bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
259 bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
260 bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
261
262 /// ParseEscapedString - Parse the current token as a string which may include
263 /// escaped characters and return the string contents.
264 bool ParseEscapedString(std::string &Data);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000265
266 const MCExpr *ApplyModifierToExpr(const MCExpr *E,
267 MCSymbolRefExpr::VariantKind Variant);
Daniel Dunbaraef87e32010-07-18 18:31:38 +0000268};
269
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000270/// \brief Generic implementations of directive handling, etc. which is shared
271/// (or the default, at least) for all assembler parser.
272class GenericAsmParser : public MCAsmParserExtension {
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000273 template<bool (GenericAsmParser::*Handler)(StringRef, SMLoc)>
274 void AddDirectiveHandler(StringRef Directive) {
275 getParser().AddDirectiveHandler(this, Directive,
276 HandleDirective<GenericAsmParser, Handler>);
277 }
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000278public:
279 GenericAsmParser() {}
280
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000281 AsmParser &getParser() {
282 return (AsmParser&) this->MCAsmParserExtension::getParser();
283 }
284
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000285 virtual void Initialize(MCAsmParser &Parser) {
286 // Call the base implementation.
287 this->MCAsmParserExtension::Initialize(Parser);
288
289 // Debugging directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000290 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveFile>(".file");
291 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLine>(".line");
292 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLoc>(".loc");
Daniel Dunbar138abae2010-10-16 04:56:42 +0000293 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveStabs>(".stabs");
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000294
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000295 // CFI directives.
Rafael Espindolaf9efd832011-05-10 01:10:18 +0000296 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFISections>(
297 ".cfi_sections");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000298 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIStartProc>(
299 ".cfi_startproc");
300 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIEndProc>(
301 ".cfi_endproc");
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000302 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfa>(
303 ".cfi_def_cfa");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000304 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaOffset>(
305 ".cfi_def_cfa_offset");
Rafael Espindola53abbe52011-04-11 20:29:16 +0000306 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIAdjustCfaOffset>(
307 ".cfi_adjust_cfa_offset");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000308 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaRegister>(
309 ".cfi_def_cfa_register");
310 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIOffset>(
311 ".cfi_offset");
Rafael Espindolaa61842b2011-04-11 21:49:50 +0000312 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIRelOffset>(
313 ".cfi_rel_offset");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000314 AddDirectiveHandler<
315 &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_personality");
316 AddDirectiveHandler<
317 &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_lsda");
Rafael Espindolafe024d02010-12-28 18:36:23 +0000318 AddDirectiveHandler<
319 &GenericAsmParser::ParseDirectiveCFIRememberState>(".cfi_remember_state");
320 AddDirectiveHandler<
321 &GenericAsmParser::ParseDirectiveCFIRestoreState>(".cfi_restore_state");
Rafael Espindolac5754392011-04-12 15:31:05 +0000322 AddDirectiveHandler<
323 &GenericAsmParser::ParseDirectiveCFISameValue>(".cfi_same_value");
Rafael Espindola6f0b1812011-12-29 20:24:47 +0000324 AddDirectiveHandler<
Rafael Espindolaed23bdb2011-12-29 21:43:03 +0000325 &GenericAsmParser::ParseDirectiveCFIRestore>(".cfi_restore");
326 AddDirectiveHandler<
Rafael Espindola6f0b1812011-12-29 20:24:47 +0000327 &GenericAsmParser::ParseDirectiveCFIEscape>(".cfi_escape");
Rafael Espindola16d7d432012-01-23 21:51:52 +0000328 AddDirectiveHandler<
329 &GenericAsmParser::ParseDirectiveCFISignalFrame>(".cfi_signal_frame");
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000330
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000331 // Macro directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000332 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
333 ".macros_on");
334 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
335 ".macros_off");
336 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacro>(".macro");
337 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endm");
338 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endmacro");
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000339
340 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".sleb128");
341 AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".uleb128");
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000342 }
343
Roman Divacky54b0f4f2011-01-27 17:16:37 +0000344 bool ParseRegisterOrRegisterNumber(int64_t &Register, SMLoc DirectiveLoc);
345
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000346 bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
347 bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
348 bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar138abae2010-10-16 04:56:42 +0000349 bool ParseDirectiveStabs(StringRef, SMLoc DirectiveLoc);
Rafael Espindolaf9efd832011-05-10 01:10:18 +0000350 bool ParseDirectiveCFISections(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000351 bool ParseDirectiveCFIStartProc(StringRef, SMLoc DirectiveLoc);
352 bool ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc);
Rafael Espindolab40a71f2010-12-29 01:42:56 +0000353 bool ParseDirectiveCFIDefCfa(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000354 bool ParseDirectiveCFIDefCfaOffset(StringRef, SMLoc DirectiveLoc);
Rafael Espindola53abbe52011-04-11 20:29:16 +0000355 bool ParseDirectiveCFIAdjustCfaOffset(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000356 bool ParseDirectiveCFIDefCfaRegister(StringRef, SMLoc DirectiveLoc);
357 bool ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc);
Rafael Espindolaa61842b2011-04-11 21:49:50 +0000358 bool ParseDirectiveCFIRelOffset(StringRef, SMLoc DirectiveLoc);
Rafael Espindola1fdfbc42010-11-16 18:34:07 +0000359 bool ParseDirectiveCFIPersonalityOrLsda(StringRef, SMLoc DirectiveLoc);
Rafael Espindolafe024d02010-12-28 18:36:23 +0000360 bool ParseDirectiveCFIRememberState(StringRef, SMLoc DirectiveLoc);
361 bool ParseDirectiveCFIRestoreState(StringRef, SMLoc DirectiveLoc);
Rafael Espindolac5754392011-04-12 15:31:05 +0000362 bool ParseDirectiveCFISameValue(StringRef, SMLoc DirectiveLoc);
Rafael Espindolaed23bdb2011-12-29 21:43:03 +0000363 bool ParseDirectiveCFIRestore(StringRef, SMLoc DirectiveLoc);
Rafael Espindola6f0b1812011-12-29 20:24:47 +0000364 bool ParseDirectiveCFIEscape(StringRef, SMLoc DirectiveLoc);
Rafael Espindola16d7d432012-01-23 21:51:52 +0000365 bool ParseDirectiveCFISignalFrame(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000366
Daniel Dunbar3c802de2010-07-18 18:38:02 +0000367 bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +0000368 bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
369 bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000370
Rafael Espindolab98ac2a2010-09-11 16:45:15 +0000371 bool ParseDirectiveLEB128(StringRef, SMLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000372};
373
374}
375
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000376namespace llvm {
377
378extern MCAsmParserExtension *createDarwinAsmParser();
Daniel Dunbar5146a092010-07-12 21:23:32 +0000379extern MCAsmParserExtension *createELFAsmParser();
Michael J. Spencer7d490042010-10-09 11:01:07 +0000380extern MCAsmParserExtension *createCOFFAsmParser();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000381
382}
383
Chris Lattneraaec2052010-01-19 19:46:13 +0000384enum { DEFAULT_ADDRSPACE = 0 };
385
Jim Grosbach1b84cce2011-08-16 18:33:49 +0000386AsmParser::AsmParser(SourceMgr &_SM, MCContext &_Ctx,
Daniel Dunbar9186fa62010-07-01 20:41:56 +0000387 MCStreamer &_Out, const MCAsmInfo &_MAI)
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000388 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), MAI(_MAI), SrcMgr(_SM),
Rafael Espindola5d7dcd32011-04-12 18:53:30 +0000389 GenericParser(new GenericAsmParser), PlatformParser(0),
Devang Patel0db58bf2012-01-31 18:14:05 +0000390 CurBuffer(0), MacrosEnabled(true), CppHashLineNumber(0),
391 AssemblerDialect(~0U) {
Benjamin Kramer04a04262011-10-16 10:48:29 +0000392 // Save the old handler.
393 SavedDiagHandler = SrcMgr.getDiagHandler();
394 SavedDiagContext = SrcMgr.getDiagContext();
395 // Set our own handler which calls the saved handler.
Kevin Enderbyacbaecd2011-10-12 21:38:39 +0000396 SrcMgr.setDiagHandler(DiagHandler, this);
Sean Callananfd0b0282010-01-21 00:19:58 +0000397 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000398
399 // Initialize the generic parser.
400 GenericParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000401
402 // Initialize the platform / file format parser.
403 //
404 // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
405 // created.
Michael J. Spencer7d490042010-10-09 11:01:07 +0000406 if (_MAI.hasMicrosoftFastStdCallMangling()) {
407 PlatformParser = createCOFFAsmParser();
408 PlatformParser->Initialize(*this);
409 } else if (_MAI.hasSubsectionsViaSymbols()) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000410 PlatformParser = createDarwinAsmParser();
Daniel Dunbare4749702010-07-12 18:12:02 +0000411 PlatformParser->Initialize(*this);
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000412 } else {
Daniel Dunbar5146a092010-07-12 21:23:32 +0000413 PlatformParser = createELFAsmParser();
Daniel Dunbar7a56fc22010-07-12 20:08:04 +0000414 PlatformParser->Initialize(*this);
Daniel Dunbare4749702010-07-12 18:12:02 +0000415 }
Chris Lattnerebb89b42009-09-27 21:16:52 +0000416}
417
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000418AsmParser::~AsmParser() {
Daniel Dunbar56491302010-07-29 01:51:55 +0000419 assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
420
421 // Destroy any macros.
422 for (StringMap<Macro*>::iterator it = MacroMap.begin(),
423 ie = MacroMap.end(); it != ie; ++it)
424 delete it->getValue();
425
Daniel Dunbare4749702010-07-12 18:12:02 +0000426 delete PlatformParser;
Daniel Dunbar81ea00f2010-07-12 17:54:38 +0000427 delete GenericParser;
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000428}
429
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000430void AsmParser::PrintMacroInstantiations() {
431 // Print the active macro instantiation stack.
432 for (std::vector<MacroInstantiation*>::const_reverse_iterator
433 it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000434 PrintMessage((*it)->InstantiationLoc, SourceMgr::DK_Note,
435 "while in macro instantiation");
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000436}
437
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000438bool AsmParser::Warning(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +0000439 if (FatalAssemblerWarnings)
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000440 return Error(L, Msg, Ranges);
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000441 PrintMessage(L, SourceMgr::DK_Warning, Msg, Ranges);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000442 PrintMacroInstantiations();
Joerg Sonnenbergerf8cd7082011-05-19 18:00:13 +0000443 return false;
Daniel Dunbar3fb76832009-06-30 00:49:23 +0000444}
445
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000446bool AsmParser::Error(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000447 HadError = true;
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000448 PrintMessage(L, SourceMgr::DK_Error, Msg, Ranges);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000449 PrintMacroInstantiations();
Chris Lattner14ee48a2009-06-21 21:22:11 +0000450 return true;
451}
452
Sean Callananfd0b0282010-01-21 00:19:58 +0000453bool AsmParser::EnterIncludeFile(const std::string &Filename) {
Joerg Sonnenbergerdd137902011-06-01 13:10:15 +0000454 std::string IncludedFile;
455 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
Sean Callananfd0b0282010-01-21 00:19:58 +0000456 if (NewBuf == -1)
457 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000458
Sean Callananfd0b0282010-01-21 00:19:58 +0000459 CurBuffer = NewBuf;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000460
Sean Callananfd0b0282010-01-21 00:19:58 +0000461 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000462
Sean Callananfd0b0282010-01-21 00:19:58 +0000463 return false;
464}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000465
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000466/// Process the specified .incbin file by seaching for it in the include paths
467/// then just emiting the byte contents of the file to the streamer. This
468/// returns true on failure.
469bool AsmParser::ProcessIncbinFile(const std::string &Filename) {
470 std::string IncludedFile;
471 int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
472 if (NewBuf == -1)
473 return true;
474
Kevin Enderbyc3fc3132011-12-14 22:34:45 +0000475 // Pick up the bytes from the file and emit them.
Kevin Enderbydac29532011-12-15 00:00:27 +0000476 getStreamer().EmitBytes(SrcMgr.getMemoryBuffer(NewBuf)->getBuffer(),
477 DEFAULT_ADDRSPACE);
Kevin Enderbyc55acca2011-12-14 21:47:48 +0000478 return false;
479}
480
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000481void AsmParser::JumpToLoc(SMLoc Loc) {
482 CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
483 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
484}
485
Sean Callananfd0b0282010-01-21 00:19:58 +0000486const AsmToken &AsmParser::Lex() {
487 const AsmToken *tok = &Lexer.Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000488
Sean Callananfd0b0282010-01-21 00:19:58 +0000489 if (tok->is(AsmToken::Eof)) {
490 // If this is the end of an included file, pop the parent file off the
491 // include stack.
492 SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
493 if (ParentIncludeLoc != SMLoc()) {
Daniel Dunbarc64a0d72010-07-18 18:54:11 +0000494 JumpToLoc(ParentIncludeLoc);
Sean Callananfd0b0282010-01-21 00:19:58 +0000495 tok = &Lexer.Lex();
496 }
497 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000498
Sean Callananfd0b0282010-01-21 00:19:58 +0000499 if (tok->is(AsmToken::Error))
Daniel Dunbar275ce392010-07-18 18:31:45 +0000500 Error(Lexer.getErrLoc(), Lexer.getErr());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000501
Sean Callananfd0b0282010-01-21 00:19:58 +0000502 return *tok;
Sean Callanan79ed1a82010-01-19 20:22:31 +0000503}
504
Chris Lattner79180e22010-04-05 23:15:42 +0000505bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000506 // Create the initial section, if requested.
Daniel Dunbar5e6a7a22010-03-13 02:20:57 +0000507 if (!NoInitialTextSection)
Rafael Espindolad80781b2010-09-15 21:48:40 +0000508 Out.InitSections();
Daniel Dunbar7c0a3342009-08-26 22:49:51 +0000509
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000510 // Prime the lexer.
Sean Callanan79ed1a82010-01-19 20:22:31 +0000511 Lex();
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000512
513 HadError = false;
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000514 AsmCond StartingCondState = TheCondState;
515
Kevin Enderby613b7572011-11-01 22:27:22 +0000516 // If we are generating dwarf for assembly source files save the initial text
517 // section and generate a .file directive.
518 if (getContext().getGenDwarfForAssembly()) {
519 getContext().setGenDwarfSection(getStreamer().getCurrentSection());
Kevin Enderby94c2e852011-12-09 18:09:40 +0000520 MCSymbol *SectionStartSym = getContext().CreateTempSymbol();
521 getStreamer().EmitLabel(SectionStartSym);
522 getContext().setGenDwarfSectionStartSym(SectionStartSym);
Kevin Enderby613b7572011-11-01 22:27:22 +0000523 getStreamer().EmitDwarfFileDirective(getContext().nextGenDwarfFileNumber(),
524 StringRef(), SrcMgr.getMemoryBuffer(CurBuffer)->getBufferIdentifier());
525 }
526
Chris Lattnerb717fb02009-07-02 21:53:43 +0000527 // While we have input, parse each statement.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000528 while (Lexer.isNot(AsmToken::Eof)) {
Chris Lattnerb717fb02009-07-02 21:53:43 +0000529 if (!ParseStatement()) continue;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000530
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000531 // We had an error, validate that one was emitted and recover by skipping to
532 // the next line.
533 assert(HadError && "Parse statement returned an error, but none emitted!");
Chris Lattnerb717fb02009-07-02 21:53:43 +0000534 EatToEndOfStatement();
535 }
Kevin Enderbyc114ed72009-08-07 22:46:00 +0000536
537 if (TheCondState.TheCond != StartingCondState.TheCond ||
538 TheCondState.Ignore != StartingCondState.Ignore)
539 return TokError("unmatched .ifs or .elses");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000540
541 // Check to see there are no empty DwarfFile slots.
542 const std::vector<MCDwarfFile *> &MCDwarfFiles =
543 getContext().getMCDwarfFiles();
544 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
Daniel Dunbar93bd4d12010-09-09 22:42:56 +0000545 if (!MCDwarfFiles[i])
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000546 TokError("unassigned file number: " + Twine(i) + " for .file directives");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000547 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000548
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000549 // Check to see that all assembler local symbols were actually defined.
550 // Targets that don't do subsections via symbols may not want this, though,
551 // so conservatively exclude them. Only do this if we're finalizing, though,
552 // as otherwise we won't necessarilly have seen everything yet.
553 if (!NoFinalize && MAI.hasSubsectionsViaSymbols()) {
554 const MCContext::SymbolTable &Symbols = getContext().getSymbols();
555 for (MCContext::SymbolTable::const_iterator i = Symbols.begin(),
556 e = Symbols.end();
557 i != e; ++i) {
558 MCSymbol *Sym = i->getValue();
559 // Variable symbols may not be marked as defined, so check those
560 // explicitly. If we know it's a variable, we have a definition for
561 // the purposes of this check.
562 if (Sym->isTemporary() && !Sym->isVariable() && !Sym->isDefined())
563 // FIXME: We would really like to refer back to where the symbol was
564 // first referenced for a source location. We need to add something
565 // to track that. Currently, we just point to the end of the file.
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000566 PrintMessage(getLexer().getLoc(), SourceMgr::DK_Error,
567 "assembler local symbol '" + Sym->getName() +
568 "' not defined");
Jim Grosbache82b8ee2011-06-15 18:33:28 +0000569 }
570 }
571
572
Chris Lattner79180e22010-04-05 23:15:42 +0000573 // Finalize the output stream if there are no errors and if the client wants
574 // us to.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000575 if (!HadError && !NoFinalize)
Daniel Dunbarb3f3c032009-08-21 08:34:18 +0000576 Out.Finish();
577
Chris Lattnerb717fb02009-07-02 21:53:43 +0000578 return HadError;
Chris Lattnerb0789ed2009-06-21 20:54:55 +0000579}
580
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +0000581void AsmParser::CheckForValidSection() {
582 if (!getStreamer().getCurrentSection()) {
583 TokError("expected section directive before assembly directive");
584 Out.SwitchSection(Ctx.getMachOSection(
585 "__TEXT", "__text",
586 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
587 0, SectionKind::getText()));
588 }
589}
590
Chris Lattner2cf5f142009-06-22 01:29:09 +0000591/// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
592void AsmParser::EatToEndOfStatement() {
Daniel Dunbar3f872332009-07-28 16:08:33 +0000593 while (Lexer.isNot(AsmToken::EndOfStatement) &&
594 Lexer.isNot(AsmToken::Eof))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000595 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000596
Chris Lattner2cf5f142009-06-22 01:29:09 +0000597 // Eat EOL.
Daniel Dunbar3f872332009-07-28 16:08:33 +0000598 if (Lexer.is(AsmToken::EndOfStatement))
Sean Callanan79ed1a82010-01-19 20:22:31 +0000599 Lex();
Chris Lattner2cf5f142009-06-22 01:29:09 +0000600}
601
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000602StringRef AsmParser::ParseStringToEndOfStatement() {
603 const char *Start = getTok().getLoc().getPointer();
604
605 while (Lexer.isNot(AsmToken::EndOfStatement) &&
606 Lexer.isNot(AsmToken::Eof))
607 Lex();
608
609 const char *End = getTok().getLoc().getPointer();
610 return StringRef(Start, End - Start);
611}
Chris Lattnerc4193832009-06-22 05:51:26 +0000612
Benjamin Kramerdec06ef2012-05-12 11:18:51 +0000613StringRef AsmParser::ParseStringToComma() {
614 const char *Start = getTok().getLoc().getPointer();
615
616 while (Lexer.isNot(AsmToken::EndOfStatement) &&
617 Lexer.isNot(AsmToken::Comma) &&
618 Lexer.isNot(AsmToken::Eof))
619 Lex();
620
621 const char *End = getTok().getLoc().getPointer();
622 return StringRef(Start, End - Start);
623}
624
Chris Lattner74ec1a32009-06-22 06:32:03 +0000625/// ParseParenExpr - Parse a paren expression and return it.
626/// NOTE: This assumes the leading '(' has already been consumed.
627///
628/// parenexpr ::= expr)
629///
Chris Lattnerb4307b32010-01-15 19:28:38 +0000630bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner74ec1a32009-06-22 06:32:03 +0000631 if (ParseExpression(Res)) return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000632 if (Lexer.isNot(AsmToken::RParen))
Chris Lattner74ec1a32009-06-22 06:32:03 +0000633 return TokError("expected ')' in parentheses expression");
Chris Lattnerb4307b32010-01-15 19:28:38 +0000634 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000635 Lex();
Chris Lattner74ec1a32009-06-22 06:32:03 +0000636 return false;
637}
Chris Lattnerc4193832009-06-22 05:51:26 +0000638
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000639/// ParseBracketExpr - Parse a bracket expression and return it.
640/// NOTE: This assumes the leading '[' has already been consumed.
641///
642/// bracketexpr ::= expr]
643///
644bool AsmParser::ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc) {
645 if (ParseExpression(Res)) return true;
646 if (Lexer.isNot(AsmToken::RBrac))
647 return TokError("expected ']' in brackets expression");
648 EndLoc = Lexer.getLoc();
649 Lex();
650 return false;
651}
652
Chris Lattner74ec1a32009-06-22 06:32:03 +0000653/// ParsePrimaryExpr - Parse a primary expression and return it.
654/// primaryexpr ::= (parenexpr
655/// primaryexpr ::= symbol
656/// primaryexpr ::= number
Chris Lattnerd3050352010-04-14 04:40:28 +0000657/// primaryexpr ::= '.'
Chris Lattner74ec1a32009-06-22 06:32:03 +0000658/// primaryexpr ::= ~,+,- primaryexpr
Chris Lattnerb4307b32010-01-15 19:28:38 +0000659bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattnerc4193832009-06-22 05:51:26 +0000660 switch (Lexer.getKind()) {
661 default:
662 return TokError("unknown token in expression");
Eric Christopherf3755b22011-04-12 00:03:13 +0000663 // If we have an error assume that we've already handled it.
664 case AsmToken::Error:
665 return true;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000666 case AsmToken::Exclaim:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000667 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000668 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000669 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000670 Res = MCUnaryExpr::CreateLNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000671 return false;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000672 case AsmToken::Dollar:
Daniel Dunbar76c4d762009-07-31 21:55:09 +0000673 case AsmToken::String:
Daniel Dunbarfffff912009-10-16 01:34:54 +0000674 case AsmToken::Identifier: {
Daniel Dunbare17edff2010-08-24 19:13:42 +0000675 EndLoc = Lexer.getLoc();
676
677 StringRef Identifier;
678 if (ParseIdentifier(Identifier))
Jim Grosbach95ae09a2011-05-23 20:36:04 +0000679 return true;
Daniel Dunbare17edff2010-08-24 19:13:42 +0000680
Daniel Dunbarfffff912009-10-16 01:34:54 +0000681 // This is a symbol reference.
Daniel Dunbare17edff2010-08-24 19:13:42 +0000682 std::pair<StringRef, StringRef> Split = Identifier.split('@');
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +0000683 MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000684
685 // Lookup the symbol variant if used.
686 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Daniel Dunbarcceba832010-09-17 02:47:07 +0000687 if (Split.first.size() != Identifier.size()) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000688 Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
Daniel Dunbarcceba832010-09-17 02:47:07 +0000689 if (Variant == MCSymbolRefExpr::VK_Invalid) {
690 Variant = MCSymbolRefExpr::VK_None;
Jim Grosbach4121e8a2011-01-19 23:06:07 +0000691 return TokError("invalid variant '" + Split.second + "'");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000692 }
693 }
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000694
Daniel Dunbarfffff912009-10-16 01:34:54 +0000695 // If this is an absolute variable reference, substitute it now to preserve
696 // semantics in the face of reassignment.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000697 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000698 if (Variant)
Daniel Dunbar603abd52010-11-08 17:53:02 +0000699 return Error(EndLoc, "unexpected modifier on variable reference");
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000700
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000701 Res = Sym->getVariableValue();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000702 return false;
703 }
704
705 // Otherwise create a symbol ref.
Daniel Dunbar4e815f82010-03-15 23:51:06 +0000706 Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
Chris Lattnerc4193832009-06-22 05:51:26 +0000707 return false;
Daniel Dunbarfffff912009-10-16 01:34:54 +0000708 }
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000709 case AsmToken::Integer: {
710 SMLoc Loc = getTok().getLoc();
711 int64_t IntVal = getTok().getIntVal();
712 Res = MCConstantExpr::Create(IntVal, getContext());
Chris Lattnerb4307b32010-01-15 19:28:38 +0000713 EndLoc = Lexer.getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +0000714 Lex(); // Eat token.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000715 // Look for 'b' or 'f' following an Integer as a directional label
716 if (Lexer.getKind() == AsmToken::Identifier) {
717 StringRef IDVal = getTok().getString();
718 if (IDVal == "f" || IDVal == "b"){
719 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
720 IDVal == "f" ? 1 : 0);
721 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
722 getContext());
723 if(IDVal == "b" && Sym->isUndefined())
724 return Error(Loc, "invalid reference to undefined symbol");
725 EndLoc = Lexer.getLoc();
726 Lex(); // Eat identifier.
727 }
728 }
Chris Lattnerc4193832009-06-22 05:51:26 +0000729 return false;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000730 }
Bill Wendling69c4ef32011-01-25 21:26:41 +0000731 case AsmToken::Real: {
732 APFloat RealVal(APFloat::IEEEdouble, getTok().getString());
Bob Wilson720b9182011-02-03 23:17:47 +0000733 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
Bill Wendling69c4ef32011-01-25 21:26:41 +0000734 Res = MCConstantExpr::Create(IntVal, getContext());
735 Lex(); // Eat token.
736 return false;
737 }
Chris Lattnerd3050352010-04-14 04:40:28 +0000738 case AsmToken::Dot: {
739 // This is a '.' reference, which references the current PC. Emit a
740 // temporary label to the streamer and refer to it.
741 MCSymbol *Sym = Ctx.CreateTempSymbol();
742 Out.EmitLabel(Sym);
743 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
744 EndLoc = Lexer.getLoc();
745 Lex(); // Eat identifier.
746 return false;
747 }
Daniel Dunbar3f872332009-07-28 16:08:33 +0000748 case AsmToken::LParen:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000749 Lex(); // Eat the '('.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000750 return ParseParenExpr(Res, EndLoc);
Joerg Sonnenberger93c65e62011-02-24 21:59:22 +0000751 case AsmToken::LBrac:
752 if (!PlatformParser->HasBracketExpressions())
753 return TokError("brackets expression not supported on this target");
754 Lex(); // Eat the '['.
755 return ParseBracketExpr(Res, EndLoc);
Daniel Dunbar3f872332009-07-28 16:08:33 +0000756 case AsmToken::Minus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000757 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000758 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000759 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000760 Res = MCUnaryExpr::CreateMinus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000761 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000762 case AsmToken::Plus:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000763 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000764 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000765 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000766 Res = MCUnaryExpr::CreatePlus(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000767 return false;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000768 case AsmToken::Tilde:
Sean Callanan79ed1a82010-01-19 20:22:31 +0000769 Lex(); // Eat the operator.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000770 if (ParsePrimaryExpr(Res, EndLoc))
Daniel Dunbar475839e2009-06-29 20:37:27 +0000771 return true;
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000772 Res = MCUnaryExpr::CreateNot(Res, getContext());
Daniel Dunbar475839e2009-06-29 20:37:27 +0000773 return false;
Chris Lattnerc4193832009-06-22 05:51:26 +0000774 }
775}
Chris Lattner74ec1a32009-06-22 06:32:03 +0000776
Chris Lattnerb4307b32010-01-15 19:28:38 +0000777bool AsmParser::ParseExpression(const MCExpr *&Res) {
Chris Lattner54482b42010-01-15 19:39:23 +0000778 SMLoc EndLoc;
779 return ParseExpression(Res, EndLoc);
Chris Lattnerb4307b32010-01-15 19:28:38 +0000780}
781
Daniel Dunbarcceba832010-09-17 02:47:07 +0000782const MCExpr *
783AsmParser::ApplyModifierToExpr(const MCExpr *E,
784 MCSymbolRefExpr::VariantKind Variant) {
785 // Recurse over the given expression, rebuilding it to apply the given variant
786 // if there is exactly one symbol.
787 switch (E->getKind()) {
788 case MCExpr::Target:
789 case MCExpr::Constant:
790 return 0;
791
792 case MCExpr::SymbolRef: {
793 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
794
795 if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
796 TokError("invalid variant on expression '" +
797 getTok().getIdentifier() + "' (already modified)");
798 return E;
799 }
800
801 return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
802 }
803
804 case MCExpr::Unary: {
805 const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
806 const MCExpr *Sub = ApplyModifierToExpr(UE->getSubExpr(), Variant);
807 if (!Sub)
808 return 0;
809 return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
810 }
811
812 case MCExpr::Binary: {
813 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
814 const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
815 const MCExpr *RHS = ApplyModifierToExpr(BE->getRHS(), Variant);
816
817 if (!LHS && !RHS)
818 return 0;
819
820 if (!LHS) LHS = BE->getLHS();
821 if (!RHS) RHS = BE->getRHS();
822
823 return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
824 }
825 }
Daniel Dunbarf3f95c92010-09-17 16:34:24 +0000826
Craig Topper85814382012-02-07 05:05:23 +0000827 llvm_unreachable("Invalid expression kind!");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000828}
829
Chris Lattner74ec1a32009-06-22 06:32:03 +0000830/// ParseExpression - Parse an expression and return it.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000831///
Jim Grosbachfbe16812011-08-20 16:24:13 +0000832/// expr ::= expr &&,|| expr -> lowest.
833/// expr ::= expr |,^,&,! expr
834/// expr ::= expr ==,!=,<>,<,<=,>,>= expr
835/// expr ::= expr <<,>> expr
836/// expr ::= expr +,- expr
837/// expr ::= expr *,/,% expr -> highest.
Chris Lattner74ec1a32009-06-22 06:32:03 +0000838/// expr ::= primaryexpr
839///
Chris Lattner54482b42010-01-15 19:39:23 +0000840bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000841 // Parse the expression.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000842 Res = 0;
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000843 if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
844 return true;
845
Daniel Dunbarcceba832010-09-17 02:47:07 +0000846 // As a special case, we support 'a op b @ modifier' by rewriting the
847 // expression to include the modifier. This is inefficient, but in general we
848 // expect users to use 'a@modifier op b'.
849 if (Lexer.getKind() == AsmToken::At) {
850 Lex();
851
852 if (Lexer.isNot(AsmToken::Identifier))
853 return TokError("unexpected symbol modifier following '@'");
854
855 MCSymbolRefExpr::VariantKind Variant =
856 MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
857 if (Variant == MCSymbolRefExpr::VK_Invalid)
858 return TokError("invalid variant '" + getTok().getIdentifier() + "'");
859
860 const MCExpr *ModifiedRes = ApplyModifierToExpr(Res, Variant);
861 if (!ModifiedRes) {
862 return TokError("invalid modifier '" + getTok().getIdentifier() +
863 "' (no symbols present)");
Daniel Dunbarcceba832010-09-17 02:47:07 +0000864 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000865
Daniel Dunbarcceba832010-09-17 02:47:07 +0000866 Res = ModifiedRes;
867 Lex();
868 }
869
Daniel Dunbare9a60eb2010-02-13 01:28:07 +0000870 // Try to constant fold it up front, if possible.
871 int64_t Value;
872 if (Res->EvaluateAsAbsolute(Value))
873 Res = MCConstantExpr::Create(Value, getContext());
874
875 return false;
Chris Lattner74ec1a32009-06-22 06:32:03 +0000876}
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000877
Chris Lattnerb4307b32010-01-15 19:28:38 +0000878bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
Chris Lattner75f265f2010-01-24 01:07:33 +0000879 Res = 0;
880 return ParseParenExpr(Res, EndLoc) ||
881 ParseBinOpRHS(1, Res, EndLoc);
Daniel Dunbarc18274b2009-08-31 08:08:17 +0000882}
883
Daniel Dunbar475839e2009-06-29 20:37:27 +0000884bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000885 const MCExpr *Expr;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000886
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000887 SMLoc StartLoc = Lexer.getLoc();
Daniel Dunbar475839e2009-06-29 20:37:27 +0000888 if (ParseExpression(Expr))
889 return true;
890
Daniel Dunbare00b0112009-10-16 01:57:52 +0000891 if (!Expr->EvaluateAsAbsolute(Res))
Daniel Dunbarf4b830f2009-06-30 02:10:03 +0000892 return Error(StartLoc, "expected absolute expression");
Daniel Dunbar475839e2009-06-29 20:37:27 +0000893
894 return false;
895}
896
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000897static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000898 MCBinaryExpr::Opcode &Kind) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000899 switch (K) {
Daniel Dunbar6ce004d2009-08-31 08:07:44 +0000900 default:
901 return 0; // not a binop.
Daniel Dunbar475839e2009-06-29 20:37:27 +0000902
Jim Grosbachfbe16812011-08-20 16:24:13 +0000903 // Lowest Precedence: &&, ||
Daniel Dunbar3f872332009-07-28 16:08:33 +0000904 case AsmToken::AmpAmp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000905 Kind = MCBinaryExpr::LAnd;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000906 return 1;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000907 case AsmToken::PipePipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000908 Kind = MCBinaryExpr::LOr;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000909 return 1;
910
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000911
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000912 // Low Precedence: |, &, ^
Daniel Dunbar475839e2009-06-29 20:37:27 +0000913 //
914 // FIXME: gas seems to support '!' as an infix operator?
Daniel Dunbar3f872332009-07-28 16:08:33 +0000915 case AsmToken::Pipe:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000916 Kind = MCBinaryExpr::Or;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000917 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000918 case AsmToken::Caret:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000919 Kind = MCBinaryExpr::Xor;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000920 return 2;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000921 case AsmToken::Amp:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000922 Kind = MCBinaryExpr::And;
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000923 return 2;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000924
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000925 // Low Intermediate Precedence: ==, !=, <>, <, <=, >, >=
Chris Lattnerf7d4da02010-09-22 05:05:16 +0000926 case AsmToken::EqualEqual:
927 Kind = MCBinaryExpr::EQ;
928 return 3;
929 case AsmToken::ExclaimEqual:
930 case AsmToken::LessGreater:
931 Kind = MCBinaryExpr::NE;
932 return 3;
933 case AsmToken::Less:
934 Kind = MCBinaryExpr::LT;
935 return 3;
936 case AsmToken::LessEqual:
937 Kind = MCBinaryExpr::LTE;
938 return 3;
939 case AsmToken::Greater:
940 Kind = MCBinaryExpr::GT;
941 return 3;
942 case AsmToken::GreaterEqual:
943 Kind = MCBinaryExpr::GTE;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000944 return 3;
945
Jim Grosbachfbe16812011-08-20 16:24:13 +0000946 // Intermediate Precedence: <<, >>
947 case AsmToken::LessLess:
948 Kind = MCBinaryExpr::Shl;
949 return 4;
950 case AsmToken::GreaterGreater:
951 Kind = MCBinaryExpr::Shr;
952 return 4;
953
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000954 // High Intermediate Precedence: +, -
955 case AsmToken::Plus:
956 Kind = MCBinaryExpr::Add;
Jim Grosbachfbe16812011-08-20 16:24:13 +0000957 return 5;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000958 case AsmToken::Minus:
959 Kind = MCBinaryExpr::Sub;
Jim Grosbachfbe16812011-08-20 16:24:13 +0000960 return 5;
Daniel Dunbarb1e0f762010-10-25 20:18:56 +0000961
Jim Grosbachfbe16812011-08-20 16:24:13 +0000962 // Highest Precedence: *, /, %
Daniel Dunbar3f872332009-07-28 16:08:33 +0000963 case AsmToken::Star:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000964 Kind = MCBinaryExpr::Mul;
Jim Grosbachfbe16812011-08-20 16:24:13 +0000965 return 6;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000966 case AsmToken::Slash:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000967 Kind = MCBinaryExpr::Div;
Jim Grosbachfbe16812011-08-20 16:24:13 +0000968 return 6;
Daniel Dunbar3f872332009-07-28 16:08:33 +0000969 case AsmToken::Percent:
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000970 Kind = MCBinaryExpr::Mod;
Jim Grosbachfbe16812011-08-20 16:24:13 +0000971 return 6;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000972 }
973}
974
975
976/// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
977/// Res contains the LHS of the expression on input.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000978bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
979 SMLoc &EndLoc) {
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000980 while (1) {
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000981 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000982 unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000983
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000984 // If the next token is lower precedence than we are allowed to eat, return
985 // successfully with what we ate already.
986 if (TokPrec < Precedence)
987 return false;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000988
Sean Callanan79ed1a82010-01-19 20:22:31 +0000989 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000990
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000991 // Eat the next primary expression.
Daniel Dunbar9643ac52009-08-31 08:07:22 +0000992 const MCExpr *RHS;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000993 if (ParsePrimaryExpr(RHS, EndLoc)) return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000994
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000995 // If BinOp binds less tightly with RHS than the operator after RHS, let
996 // the pending operator take RHS as its LHS.
Daniel Dunbar28c251b2009-08-31 08:06:59 +0000997 MCBinaryExpr::Opcode Dummy;
Daniel Dunbar475839e2009-06-29 20:37:27 +0000998 unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000999 if (TokPrec < NextTokPrec) {
Chris Lattnerb4307b32010-01-15 19:28:38 +00001000 if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001001 }
1002
Daniel Dunbar475839e2009-06-29 20:37:27 +00001003 // Merge LHS and RHS according to operator.
Daniel Dunbar6ce004d2009-08-31 08:07:44 +00001004 Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
Chris Lattner8dfbe6c2009-06-23 05:57:07 +00001005 }
1006}
1007
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001008
1009
1010
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001011/// ParseStatement:
1012/// ::= EndOfStatement
Chris Lattner2cf5f142009-06-22 01:29:09 +00001013/// ::= Label* Directive ...Operands... EndOfStatement
1014/// ::= Label* Identifier OperandList* EndOfStatement
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001015bool AsmParser::ParseStatement() {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001016 if (Lexer.is(AsmToken::EndOfStatement)) {
Daniel Dunbar01777ff2010-05-23 18:36:34 +00001017 Out.AddBlankLine();
Sean Callanan79ed1a82010-01-19 20:22:31 +00001018 Lex();
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001019 return false;
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001020 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001021
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001022 // Statements always start with an identifier or are a full line comment.
Sean Callanan18b83232010-01-19 21:44:56 +00001023 AsmToken ID = getTok();
Daniel Dunbar419aded2009-07-28 16:38:40 +00001024 SMLoc IDLoc = ID.getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001025 StringRef IDVal;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001026 int64_t LocalLabelVal = -1;
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001027 // A full line comment is a '#' as the first token.
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001028 if (Lexer.is(AsmToken::Hash))
1029 return ParseCppHashLineFilenameComment(IDLoc);
Daniel Dunbar0143ac12011-03-25 17:47:14 +00001030
Kevin Enderbyd82ed5b2010-12-24 00:12:02 +00001031 // Allow an integer followed by a ':' as a directional local label.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001032 if (Lexer.is(AsmToken::Integer)) {
1033 LocalLabelVal = getTok().getIntVal();
1034 if (LocalLabelVal < 0) {
1035 if (!TheCondState.Ignore)
1036 return TokError("unexpected token at start of statement");
1037 IDVal = "";
1038 }
1039 else {
1040 IDVal = getTok().getString();
1041 Lex(); // Consume the integer token to be used as an identifier token.
1042 if (Lexer.getKind() != AsmToken::Colon) {
Duncan Sands34727662010-07-12 08:16:59 +00001043 if (!TheCondState.Ignore)
1044 return TokError("unexpected token at start of statement");
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001045 }
1046 }
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001047
1048 } else if (Lexer.is(AsmToken::Dot)) {
1049 // Treat '.' as a valid identifier in this context.
1050 Lex();
1051 IDVal = ".";
1052
Daniel Dunbar0143ac12011-03-25 17:47:14 +00001053 } else if (ParseIdentifier(IDVal)) {
Chris Lattner7834fac2010-04-17 18:14:27 +00001054 if (!TheCondState.Ignore)
1055 return TokError("unexpected token at start of statement");
1056 IDVal = "";
1057 }
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001058
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001059
Chris Lattner7834fac2010-04-17 18:14:27 +00001060 // Handle conditional assembly here before checking for skipping. We
1061 // have to do this so that .endif isn't skipped in a ".if 0" block for
1062 // example.
1063 if (IDVal == ".if")
1064 return ParseDirectiveIf(IDLoc);
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00001065 if (IDVal == ".ifb")
1066 return ParseDirectiveIfb(IDLoc, true);
1067 if (IDVal == ".ifnb")
1068 return ParseDirectiveIfb(IDLoc, false);
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00001069 if (IDVal == ".ifc")
1070 return ParseDirectiveIfc(IDLoc, true);
1071 if (IDVal == ".ifnc")
1072 return ParseDirectiveIfc(IDLoc, false);
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00001073 if (IDVal == ".ifdef")
1074 return ParseDirectiveIfdef(IDLoc, true);
1075 if (IDVal == ".ifndef" || IDVal == ".ifnotdef")
1076 return ParseDirectiveIfdef(IDLoc, false);
Chris Lattner7834fac2010-04-17 18:14:27 +00001077 if (IDVal == ".elseif")
1078 return ParseDirectiveElseIf(IDLoc);
1079 if (IDVal == ".else")
1080 return ParseDirectiveElse(IDLoc);
1081 if (IDVal == ".endif")
1082 return ParseDirectiveEndIf(IDLoc);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001083
Chris Lattner7834fac2010-04-17 18:14:27 +00001084 // If we are in a ".if 0" block, ignore this statement.
1085 if (TheCondState.Ignore) {
1086 EatToEndOfStatement();
1087 return false;
1088 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001089
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001090 // FIXME: Recurse on local labels?
1091
1092 // See what kind of statement we have.
1093 switch (Lexer.getKind()) {
Daniel Dunbar3f872332009-07-28 16:08:33 +00001094 case AsmToken::Colon: {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001095 CheckForValidSection();
1096
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001097 // identifier ':' -> Label.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001098 Lex();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001099
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001100 // Diagnose attempt to use '.' as a label.
1101 if (IDVal == ".")
1102 return Error(IDLoc, "invalid use of pseudo-symbol '.' as a label");
1103
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001104 // Diagnose attempt to use a variable as a label.
1105 //
1106 // FIXME: Diagnostics. Note the location of the definition as a label.
1107 // FIXME: This doesn't diagnose assignment to a symbol which has been
1108 // implicitly marked as external.
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001109 MCSymbol *Sym;
1110 if (LocalLabelVal == -1)
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001111 Sym = getContext().GetOrCreateSymbol(IDVal);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +00001112 else
1113 Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
Daniel Dunbarc3047182010-05-05 19:01:00 +00001114 if (!Sym->isUndefined() || Sym->isVariable())
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001115 return Error(IDLoc, "invalid symbol redefinition");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001116
Daniel Dunbar959fd882009-08-26 22:13:22 +00001117 // Emit the label.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001118 Out.EmitLabel(Sym);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001119
Kevin Enderby94c2e852011-12-09 18:09:40 +00001120 // If we are generating dwarf for assembly source files then gather the
Kevin Enderby11c2def2012-01-10 21:12:34 +00001121 // info to make a dwarf label entry for this label if needed.
Kevin Enderby94c2e852011-12-09 18:09:40 +00001122 if (getContext().getGenDwarfForAssembly())
Kevin Enderby11c2def2012-01-10 21:12:34 +00001123 MCGenDwarfLabelEntry::Make(Sym, &getStreamer(), getSourceManager(),
1124 IDLoc);
Kevin Enderby94c2e852011-12-09 18:09:40 +00001125
Daniel Dunbar01777ff2010-05-23 18:36:34 +00001126 // Consume any end of statement token, if present, to avoid spurious
1127 // AddBlankLine calls().
1128 if (Lexer.is(AsmToken::EndOfStatement)) {
1129 Lex();
1130 if (Lexer.is(AsmToken::Eof))
1131 return false;
1132 }
1133
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001134 return ParseStatement();
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001135 }
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001136
Daniel Dunbar3f872332009-07-28 16:08:33 +00001137 case AsmToken::Equal:
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001138 // identifier '=' ... -> assignment statement
Sean Callanan79ed1a82010-01-19 20:22:31 +00001139 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001140
Nico Weber4c4c7322011-01-28 03:04:41 +00001141 return ParseAssignment(IDVal, true);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001142
1143 default: // Normal instruction or directive.
1144 break;
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001145 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001146
1147 // If macros are enabled, check to see if this is a macro instantiation.
1148 if (MacrosEnabled)
1149 if (const Macro *M = MacroMap.lookup(IDVal))
1150 return HandleMacroEntry(IDVal, IDLoc, M);
1151
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001152 // Otherwise, we have a normal instruction or directive.
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001153 if (IDVal[0] == '.' && IDVal != ".") {
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001154 // Assembler features
Roman Divacky50e7a782010-10-28 16:22:58 +00001155 if (IDVal == ".set" || IDVal == ".equ")
Nico Weber4c4c7322011-01-28 03:04:41 +00001156 return ParseDirectiveSet(IDVal, true);
1157 if (IDVal == ".equiv")
1158 return ParseDirectiveSet(IDVal, false);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001159
Daniel Dunbara0d14262009-06-24 23:30:00 +00001160 // Data directives
1161
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001162 if (IDVal == ".ascii")
Rafael Espindola787c3372010-10-28 20:02:27 +00001163 return ParseDirectiveAscii(IDVal, false);
1164 if (IDVal == ".asciz" || IDVal == ".string")
1165 return ParseDirectiveAscii(IDVal, true);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001166
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001167 if (IDVal == ".byte")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001168 return ParseDirectiveValue(1);
Kevin Enderby9c656452009-09-10 20:51:44 +00001169 if (IDVal == ".short")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001170 return ParseDirectiveValue(2);
Rafael Espindolacc3acee2010-11-01 15:29:07 +00001171 if (IDVal == ".value")
1172 return ParseDirectiveValue(2);
Rafael Espindola110f22a2010-11-17 16:15:42 +00001173 if (IDVal == ".2byte")
1174 return ParseDirectiveValue(2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001175 if (IDVal == ".long")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001176 return ParseDirectiveValue(4);
Rafael Espindola435279b2010-11-17 16:24:40 +00001177 if (IDVal == ".int")
1178 return ParseDirectiveValue(4);
Rafael Espindola110f22a2010-11-17 16:15:42 +00001179 if (IDVal == ".4byte")
1180 return ParseDirectiveValue(4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001181 if (IDVal == ".quad")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001182 return ParseDirectiveValue(8);
Rafael Espindola110f22a2010-11-17 16:15:42 +00001183 if (IDVal == ".8byte")
1184 return ParseDirectiveValue(8);
Roman Divacky14e66552011-01-28 14:20:32 +00001185 if (IDVal == ".single" || IDVal == ".float")
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001186 return ParseDirectiveRealValue(APFloat::IEEEsingle);
1187 if (IDVal == ".double")
1188 return ParseDirectiveRealValue(APFloat::IEEEdouble);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001189
Eli Friedman5d68ec22010-07-19 04:17:25 +00001190 if (IDVal == ".align") {
1191 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
1192 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
1193 }
1194 if (IDVal == ".align32") {
1195 bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
1196 return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
1197 }
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001198 if (IDVal == ".balign")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001199 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001200 if (IDVal == ".balignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001201 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001202 if (IDVal == ".balignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001203 return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001204 if (IDVal == ".p2align")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001205 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001206 if (IDVal == ".p2alignw")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001207 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001208 if (IDVal == ".p2alignl")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001209 return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
1210
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001211 if (IDVal == ".org")
Daniel Dunbarc238b582009-06-25 22:44:51 +00001212 return ParseDirectiveOrg();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001213
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001214 if (IDVal == ".fill")
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00001215 return ParseDirectiveFill();
Rafael Espindolace8463f2011-04-07 20:26:23 +00001216 if (IDVal == ".space" || IDVal == ".skip")
Daniel Dunbara0d14262009-06-24 23:30:00 +00001217 return ParseDirectiveSpace();
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001218 if (IDVal == ".zero")
1219 return ParseDirectiveZero();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001220
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001221 // Symbol attribute directives
Daniel Dunbard0c14d62009-08-11 04:24:50 +00001222
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001223 if (IDVal == ".globl" || IDVal == ".global")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001224 return ParseDirectiveSymbolAttribute(MCSA_Global);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001225 if (IDVal == ".indirect_symbol")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001226 return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001227 if (IDVal == ".lazy_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001228 return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001229 if (IDVal == ".no_dead_strip")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001230 return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
Kevin Enderbye8e98d72010-11-19 18:39:33 +00001231 if (IDVal == ".symbol_resolver")
1232 return ParseDirectiveSymbolAttribute(MCSA_SymbolResolver);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001233 if (IDVal == ".private_extern")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001234 return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001235 if (IDVal == ".reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001236 return ParseDirectiveSymbolAttribute(MCSA_Reference);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001237 if (IDVal == ".weak_definition")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001238 return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001239 if (IDVal == ".weak_reference")
Chris Lattnera5ad93a2010-01-23 06:39:22 +00001240 return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
Kevin Enderbyf59cac52010-07-08 17:22:42 +00001241 if (IDVal == ".weak_def_can_be_hidden")
1242 return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00001243
Hans Wennborg5cc64912011-06-18 13:51:54 +00001244 if (IDVal == ".comm" || IDVal == ".common")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001245 return ParseDirectiveComm(/*IsLocal=*/false);
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001246 if (IDVal == ".lcomm")
Chris Lattner1fc3d752009-07-09 17:25:12 +00001247 return ParseDirectiveComm(/*IsLocal=*/true);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00001248
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001249 if (IDVal == ".abort")
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00001250 return ParseDirectiveAbort();
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +00001251 if (IDVal == ".include")
Kevin Enderby1f049b22009-07-14 23:21:55 +00001252 return ParseDirectiveInclude();
Kevin Enderbyc55acca2011-12-14 21:47:48 +00001253 if (IDVal == ".incbin")
1254 return ParseDirectiveIncbin();
Kevin Enderbya5c78322009-07-13 21:03:15 +00001255
Evan Chengbd27f5a2011-07-27 00:38:12 +00001256 if (IDVal == ".code16")
Roman Divackyf6fbd842011-01-31 20:56:49 +00001257 return TokError(Twine(IDVal) + " not supported yet");
Roman Divackycb727802011-01-28 19:29:48 +00001258
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001259 // Look up the handler in the handler table.
1260 std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
1261 DirectiveMap.lookup(IDVal);
1262 if (Handler.first)
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +00001263 return (*Handler.second)(Handler.first, IDVal, IDLoc);
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00001264
Kevin Enderby9c656452009-09-10 20:51:44 +00001265 // Target hook for parsing target specific directives.
1266 if (!getTargetParser().ParseDirective(ID))
1267 return false;
1268
Jim Grosbach686c0182012-05-01 18:38:27 +00001269 return Error(IDLoc, "unknown directive");
Chris Lattner2cf5f142009-06-22 01:29:09 +00001270 }
Chris Lattnerb0789ed2009-06-21 20:54:55 +00001271
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001272 CheckForValidSection();
1273
Chris Lattnera7f13542010-05-19 23:34:33 +00001274 // Canonicalize the opcode to lower case.
1275 SmallString<128> Opcode;
1276 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
1277 Opcode.push_back(tolower(IDVal[i]));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001278
Chris Lattner98986712010-01-14 22:21:20 +00001279 SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
Chris Lattnera7f13542010-05-19 23:34:33 +00001280 bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc,
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001281 ParsedOperands);
Chris Lattner2cf5f142009-06-22 01:29:09 +00001282
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001283 // Dump the parsed representation, if requested.
1284 if (getShowParsedOperands()) {
1285 SmallString<256> Str;
1286 raw_svector_ostream OS(Str);
1287 OS << "parsed instruction: [";
1288 for (unsigned i = 0; i != ParsedOperands.size(); ++i) {
1289 if (i != 0)
1290 OS << ", ";
Jim Grosbachb7f689b2011-07-13 15:34:57 +00001291 ParsedOperands[i]->print(OS);
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001292 }
1293 OS << "]";
1294
Chris Lattner3f2d5f62011-10-16 05:43:57 +00001295 PrintMessage(IDLoc, SourceMgr::DK_Note, OS.str());
Daniel Dunbar3c14ca42010-08-11 06:37:09 +00001296 }
1297
Kevin Enderby613b7572011-11-01 22:27:22 +00001298 // If we are generating dwarf for assembly source files and the current
1299 // section is the initial text section then generate a .loc directive for
1300 // the instruction.
1301 if (!HadError && getContext().getGenDwarfForAssembly() &&
1302 getContext().getGenDwarfSection() == getStreamer().getCurrentSection() ) {
1303 getStreamer().EmitDwarfLocDirective(getContext().getGenDwarfFileNumber(),
1304 SrcMgr.FindLineNumber(IDLoc, CurBuffer),
1305 0, DWARF2_LINE_DEFAULT_IS_STMT ?
Kevin Enderbydba9a172011-11-02 17:56:38 +00001306 DWARF2_FLAG_IS_STMT : 0, 0, 0,
Kevin Enderby613b7572011-11-01 22:27:22 +00001307 StringRef());
1308 }
1309
Daniel Dunbar31e8e1d2010-05-04 00:33:07 +00001310 // If parsing succeeded, match the instruction.
Chris Lattner7036f8b2010-09-29 01:42:58 +00001311 if (!HadError)
1312 HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, ParsedOperands,
1313 Out);
Chris Lattner98986712010-01-14 22:21:20 +00001314
Chris Lattner98986712010-01-14 22:21:20 +00001315 // Free any parsed operands.
1316 for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
1317 delete ParsedOperands[i];
1318
Chris Lattnercbf8a982010-09-11 16:18:25 +00001319 // Don't skip the rest of the line, the instruction parser is responsible for
1320 // that.
1321 return false;
Chris Lattner27aa7d22009-06-21 20:16:42 +00001322}
Chris Lattner9a023f72009-06-24 04:43:34 +00001323
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001324/// EatToEndOfLine uses the Lexer to eat the characters to the end of the line
1325/// since they may not be able to be tokenized to get to the end of line token.
1326void AsmParser::EatToEndOfLine() {
Rafael Espindola12ae5272011-10-19 18:48:52 +00001327 if (!Lexer.is(AsmToken::EndOfStatement))
1328 Lexer.LexUntilEndOfLine();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001329 // Eat EOL.
1330 Lex();
1331}
1332
1333/// ParseCppHashLineFilenameComment as this:
1334/// ::= # number "filename"
1335/// or just as a full line comment if it doesn't have a number and a string.
1336bool AsmParser::ParseCppHashLineFilenameComment(const SMLoc &L) {
1337 Lex(); // Eat the hash token.
1338
1339 if (getLexer().isNot(AsmToken::Integer)) {
1340 // Consume the line since in cases it is not a well-formed line directive,
1341 // as if were simply a full line comment.
1342 EatToEndOfLine();
1343 return false;
1344 }
1345
1346 int64_t LineNumber = getTok().getIntVal();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001347 Lex();
1348
1349 if (getLexer().isNot(AsmToken::String)) {
1350 EatToEndOfLine();
1351 return false;
1352 }
1353
1354 StringRef Filename = getTok().getString();
1355 // Get rid of the enclosing quotes.
1356 Filename = Filename.substr(1, Filename.size()-2);
1357
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001358 // Save the SMLoc, Filename and LineNumber for later use by diagnostics.
1359 CppHashLoc = L;
1360 CppHashFilename = Filename;
1361 CppHashLineNumber = LineNumber;
Kevin Enderbyf1c21a82011-09-13 23:45:18 +00001362
1363 // Ignore any trailing characters, they're just comment.
1364 EatToEndOfLine();
1365 return false;
1366}
1367
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001368/// DiagHandler - will use the the last parsed cpp hash line filename comment
1369/// for the Filename and LineNo if any in the diagnostic.
1370void AsmParser::DiagHandler(const SMDiagnostic &Diag, void *Context) {
1371 const AsmParser *Parser = static_cast<const AsmParser*>(Context);
1372 raw_ostream &OS = errs();
1373
1374 const SourceMgr &DiagSrcMgr = *Diag.getSourceMgr();
1375 const SMLoc &DiagLoc = Diag.getLoc();
1376 int DiagBuf = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
1377 int CppHashBuf = Parser->SrcMgr.FindBufferContainingLoc(Parser->CppHashLoc);
1378
1379 // Like SourceMgr::PrintMessage() we need to print the include stack if any
1380 // before printing the message.
1381 int DiagCurBuffer = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
Benjamin Kramer04a04262011-10-16 10:48:29 +00001382 if (!Parser->SavedDiagHandler && DiagCurBuffer > 0) {
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001383 SMLoc ParentIncludeLoc = DiagSrcMgr.getParentIncludeLoc(DiagCurBuffer);
1384 DiagSrcMgr.PrintIncludeStack(ParentIncludeLoc, OS);
1385 }
1386
1387 // If we have not parsed a cpp hash line filename comment or the source
1388 // manager changed or buffer changed (like in a nested include) then just
1389 // print the normal diagnostic using its Filename and LineNo.
1390 if (!Parser->CppHashLineNumber ||
1391 &DiagSrcMgr != &Parser->SrcMgr ||
1392 DiagBuf != CppHashBuf) {
Benjamin Kramer04a04262011-10-16 10:48:29 +00001393 if (Parser->SavedDiagHandler)
1394 Parser->SavedDiagHandler(Diag, Parser->SavedDiagContext);
1395 else
1396 Diag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001397 return;
1398 }
1399
1400 // Use the CppHashFilename and calculate a line number based on the
1401 // CppHashLoc and CppHashLineNumber relative to this Diag's SMLoc for
1402 // the diagnostic.
1403 const std::string Filename = Parser->CppHashFilename;
1404
1405 int DiagLocLineNo = DiagSrcMgr.FindLineNumber(DiagLoc, DiagBuf);
1406 int CppHashLocLineNo =
1407 Parser->SrcMgr.FindLineNumber(Parser->CppHashLoc, CppHashBuf);
1408 int LineNo = Parser->CppHashLineNumber - 1 +
1409 (DiagLocLineNo - CppHashLocLineNo);
1410
Chris Lattnerd8b7aa22011-10-16 04:47:35 +00001411 SMDiagnostic NewDiag(*Diag.getSourceMgr(), Diag.getLoc(),
1412 Filename, LineNo, Diag.getColumnNo(),
Chris Lattner3f2d5f62011-10-16 05:43:57 +00001413 Diag.getKind(), Diag.getMessage(),
Chris Lattner462b43c2011-10-16 05:47:55 +00001414 Diag.getLineContents(), Diag.getRanges());
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001415
Benjamin Kramer04a04262011-10-16 10:48:29 +00001416 if (Parser->SavedDiagHandler)
1417 Parser->SavedDiagHandler(NewDiag, Parser->SavedDiagContext);
1418 else
1419 NewDiag.print(0, OS);
Kevin Enderbyacbaecd2011-10-12 21:38:39 +00001420}
1421
Rafael Espindola65366442011-06-05 02:43:45 +00001422bool AsmParser::expandMacro(SmallString<256> &Buf, StringRef Body,
1423 const std::vector<StringRef> &Parameters,
1424 const std::vector<std::vector<AsmToken> > &A,
1425 const SMLoc &L) {
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001426 raw_svector_ostream OS(Buf);
Rafael Espindola65366442011-06-05 02:43:45 +00001427 unsigned NParameters = Parameters.size();
1428 if (NParameters != 0 && NParameters != A.size())
1429 return Error(L, "Wrong number of arguments");
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001430
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001431 while (!Body.empty()) {
1432 // Scan for the next substitution.
1433 std::size_t End = Body.size(), Pos = 0;
1434 for (; Pos != End; ++Pos) {
1435 // Check for a substitution or escape.
Rafael Espindola65366442011-06-05 02:43:45 +00001436 if (!NParameters) {
1437 // This macro has no parameters, look for $0, $1, etc.
1438 if (Body[Pos] != '$' || Pos + 1 == End)
1439 continue;
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001440
Rafael Espindola65366442011-06-05 02:43:45 +00001441 char Next = Body[Pos + 1];
1442 if (Next == '$' || Next == 'n' || isdigit(Next))
1443 break;
1444 } else {
1445 // This macro has parameters, look for \foo, \bar, etc.
1446 if (Body[Pos] == '\\' && Pos + 1 != End)
1447 break;
1448 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001449 }
1450
1451 // Add the prefix.
1452 OS << Body.slice(0, Pos);
1453
1454 // Check if we reached the end.
1455 if (Pos == End)
1456 break;
1457
Rafael Espindola65366442011-06-05 02:43:45 +00001458 if (!NParameters) {
1459 switch (Body[Pos+1]) {
1460 // $$ => $
1461 case '$':
1462 OS << '$';
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001463 break;
1464
Rafael Espindola65366442011-06-05 02:43:45 +00001465 // $n => number of arguments
1466 case 'n':
1467 OS << A.size();
1468 break;
1469
1470 // $[0-9] => argument
1471 default: {
1472 // Missing arguments are ignored.
1473 unsigned Index = Body[Pos+1] - '0';
1474 if (Index >= A.size())
1475 break;
1476
1477 // Otherwise substitute with the token values, with spaces eliminated.
1478 for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
1479 ie = A[Index].end(); it != ie; ++it)
1480 OS << it->getString();
1481 break;
1482 }
1483 }
1484 Pos += 2;
1485 } else {
1486 unsigned I = Pos + 1;
1487 while (isalnum(Body[I]) && I + 1 != End)
1488 ++I;
1489
1490 const char *Begin = Body.data() + Pos +1;
1491 StringRef Argument(Begin, I - (Pos +1));
1492 unsigned Index = 0;
1493 for (; Index < NParameters; ++Index)
1494 if (Parameters[Index] == Argument)
1495 break;
1496
1497 // FIXME: We should error at the macro definition.
1498 if (Index == NParameters)
1499 return Error(L, "Parameter not found");
1500
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001501 for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
1502 ie = A[Index].end(); it != ie; ++it)
1503 OS << it->getString();
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001504
Rafael Espindola65366442011-06-05 02:43:45 +00001505 Pos += 1 + Argument.size();
1506 }
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001507 // Update the scan point.
Rafael Espindola65366442011-06-05 02:43:45 +00001508 Body = Body.substr(Pos);
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001509 }
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001510
1511 // We include the .endmacro in the buffer as our queue to exit the macro
1512 // instantiation.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001513 OS << ".endmacro\n";
Rafael Espindola65366442011-06-05 02:43:45 +00001514 return false;
1515}
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001516
Rafael Espindola65366442011-06-05 02:43:45 +00001517MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
1518 MemoryBuffer *I)
1519 : TheMacro(M), Instantiation(I), InstantiationLoc(IL), ExitLoc(EL)
1520{
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001521}
1522
1523bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
1524 const Macro *M) {
1525 // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1526 // this, although we should protect against infinite loops.
1527 if (ActiveMacros.size() == 20)
1528 return TokError("macros cannot be nested more than 20 levels deep");
1529
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001530 // Parse the macro instantiation arguments.
1531 std::vector<std::vector<AsmToken> > MacroArguments;
1532 MacroArguments.push_back(std::vector<AsmToken>());
1533 unsigned ParenLevel = 0;
1534 for (;;) {
1535 if (Lexer.is(AsmToken::Eof))
1536 return TokError("unexpected token in macro instantiation");
1537 if (Lexer.is(AsmToken::EndOfStatement))
1538 break;
1539
1540 // If we aren't inside parentheses and this is a comma, start a new token
1541 // list.
1542 if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1543 MacroArguments.push_back(std::vector<AsmToken>());
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001544 } else {
Daniel Dunbare25c6b92010-08-10 17:38:52 +00001545 // Adjust the current parentheses level.
1546 if (Lexer.is(AsmToken::LParen))
1547 ++ParenLevel;
1548 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1549 --ParenLevel;
1550
1551 // Append the token to the current argument list.
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001552 MacroArguments.back().push_back(getTok());
1553 }
1554 Lex();
1555 }
Jim Grosbach68f89a62012-04-16 21:18:49 +00001556 // If the last argument didn't end up with any tokens, it's not a real
1557 // argument and we should remove it from the list. This happens with either
1558 // a tailing comma or an empty argument list.
1559 if (MacroArguments.back().empty())
1560 MacroArguments.pop_back();
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001561
Rafael Espindola65366442011-06-05 02:43:45 +00001562 // Macro instantiation is lexical, unfortunately. We construct a new buffer
1563 // to hold the macro body with substitutions.
1564 SmallString<256> Buf;
1565 StringRef Body = M->Body;
1566
1567 if (expandMacro(Buf, Body, M->Parameters, MacroArguments, getTok().getLoc()))
1568 return true;
1569
1570 MemoryBuffer *Instantiation =
1571 MemoryBuffer::getMemBufferCopy(Buf.str(), "<instantiation>");
1572
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001573 // Create the macro instantiation object and add to the current macro
1574 // instantiation stack.
1575 MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
Daniel Dunbar7a570d02010-07-18 19:00:10 +00001576 getTok().getLoc(),
Rafael Espindola65366442011-06-05 02:43:45 +00001577 Instantiation);
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00001578 ActiveMacros.push_back(MI);
1579
1580 // Jump to the macro instantiation and prime the lexer.
1581 CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1582 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1583 Lex();
1584
1585 return false;
1586}
1587
1588void AsmParser::HandleMacroExit() {
1589 // Jump to the EndOfStatement we should return to, and consume it.
1590 JumpToLoc(ActiveMacros.back()->ExitLoc);
1591 Lex();
1592
1593 // Pop the instantiation entry.
1594 delete ActiveMacros.back();
1595 ActiveMacros.pop_back();
1596}
1597
Rafael Espindolae71cc862012-01-28 05:57:00 +00001598static bool IsUsedIn(const MCSymbol *Sym, const MCExpr *Value) {
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001599 switch (Value->getKind()) {
Rafael Espindolae71cc862012-01-28 05:57:00 +00001600 case MCExpr::Binary: {
1601 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr*>(Value);
1602 return IsUsedIn(Sym, BE->getLHS()) || IsUsedIn(Sym, BE->getRHS());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001603 break;
1604 }
Rafael Espindolae71cc862012-01-28 05:57:00 +00001605 case MCExpr::Target:
1606 case MCExpr::Constant:
1607 return false;
1608 case MCExpr::SymbolRef: {
1609 const MCSymbol &S = static_cast<const MCSymbolRefExpr*>(Value)->getSymbol();
Rafael Espindola8b01c822012-01-28 06:22:14 +00001610 if (S.isVariable())
1611 return IsUsedIn(Sym, S.getVariableValue());
1612 return &S == Sym;
Rafael Espindolae71cc862012-01-28 05:57:00 +00001613 }
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001614 case MCExpr::Unary:
Rafael Espindolae71cc862012-01-28 05:57:00 +00001615 return IsUsedIn(Sym, static_cast<const MCUnaryExpr*>(Value)->getSubExpr());
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001616 }
Benjamin Kramer518ff562012-01-28 15:28:41 +00001617
1618 llvm_unreachable("Unknown expr kind!");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001619}
1620
Nico Weber4c4c7322011-01-28 03:04:41 +00001621bool AsmParser::ParseAssignment(StringRef Name, bool allow_redef) {
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001622 // FIXME: Use better location, we should use proper tokens.
1623 SMLoc EqualLoc = Lexer.getLoc();
1624
Daniel Dunbar821e3332009-08-31 08:09:28 +00001625 const MCExpr *Value;
Daniel Dunbar821e3332009-08-31 08:09:28 +00001626 if (ParseExpression(Value))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001627 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001628
Rafael Espindolae71cc862012-01-28 05:57:00 +00001629 // Note: we don't count b as used in "a = b". This is to allow
1630 // a = b
1631 // b = c
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001632
Daniel Dunbar3f872332009-07-28 16:08:33 +00001633 if (Lexer.isNot(AsmToken::EndOfStatement))
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001634 return TokError("unexpected token in assignment");
1635
Daniel Dunbar8b2b43c2011-03-25 17:47:17 +00001636 // Error on assignment to '.'.
1637 if (Name == ".") {
1638 return Error(EqualLoc, ("assignment to pseudo-symbol '.' is unsupported "
1639 "(use '.space' or '.org').)"));
1640 }
1641
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001642 // Eat the end of statement marker.
Sean Callanan79ed1a82010-01-19 20:22:31 +00001643 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001644
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001645 // Validate that the LHS is allowed to be a variable (either it has not been
1646 // used as a symbol, or it is an absolute symbol).
1647 MCSymbol *Sym = getContext().LookupSymbol(Name);
1648 if (Sym) {
1649 // Diagnose assignment to a label.
1650 //
1651 // FIXME: Diagnostics. Note the location of the definition as a label.
1652 // FIXME: Diagnose assignment to protected identifier (e.g., register name).
Rafael Espindolae71cc862012-01-28 05:57:00 +00001653 if (IsUsedIn(Sym, Value))
1654 return Error(EqualLoc, "Recursive use of '" + Name + "'");
1655 else if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
Daniel Dunbar525a3a62010-05-17 17:46:23 +00001656 ; // Allow redefinitions of undefined symbols only used in directives.
Jim Grosbach48c95332012-03-20 21:33:21 +00001657 else if (Sym->isVariable() && !Sym->isUsed() && allow_redef)
1658 ; // Allow redefinitions of variables that haven't yet been used.
Daniel Dunbar6db7fe82011-04-29 17:53:11 +00001659 else if (!Sym->isUndefined() && (!Sym->isVariable() || !allow_redef))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001660 return Error(EqualLoc, "redefinition of '" + Name + "'");
1661 else if (!Sym->isVariable())
1662 return Error(EqualLoc, "invalid assignment to '" + Name + "'");
Daniel Dunbar08a408a2010-05-05 17:41:00 +00001663 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001664 return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1665 Name + "'");
Rafael Espindoladb9835d2010-11-15 14:40:36 +00001666
1667 // Don't count these checks as uses.
1668 Sym->setUsed(false);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001669 } else
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00001670 Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbar75773ff2009-10-16 01:57:39 +00001671
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001672 // FIXME: Handle '.'.
Daniel Dunbardce0f3c2009-06-29 23:43:14 +00001673
1674 // Do the assignment.
Daniel Dunbare2ace502009-08-31 08:09:09 +00001675 Out.EmitAssignment(Sym, Value);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001676
1677 return false;
1678}
1679
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001680/// ParseIdentifier:
1681/// ::= identifier
1682/// ::= string
1683bool AsmParser::ParseIdentifier(StringRef &Res) {
Daniel Dunbar1f1b8652010-08-24 18:12:12 +00001684 // The assembler has relaxed rules for accepting identifiers, in particular we
1685 // allow things like '.globl $foo', which would normally be separate
1686 // tokens. At this level, we have already lexed so we cannot (currently)
1687 // handle this as a context dependent token, instead we detect adjacent tokens
1688 // and return the combined identifier.
1689 if (Lexer.is(AsmToken::Dollar)) {
1690 SMLoc DollarLoc = getLexer().getLoc();
1691
1692 // Consume the dollar sign, and check for a following identifier.
1693 Lex();
1694 if (Lexer.isNot(AsmToken::Identifier))
1695 return true;
1696
1697 // We have a '$' followed by an identifier, make sure they are adjacent.
1698 if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
1699 return true;
1700
1701 // Construct the joined identifier and consume the token.
1702 Res = StringRef(DollarLoc.getPointer(),
1703 getTok().getIdentifier().size() + 1);
1704 Lex();
1705 return false;
1706 }
1707
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001708 if (Lexer.isNot(AsmToken::Identifier) &&
1709 Lexer.isNot(AsmToken::String))
1710 return true;
1711
Sean Callanan18b83232010-01-19 21:44:56 +00001712 Res = getTok().getIdentifier();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001713
Sean Callanan79ed1a82010-01-19 20:22:31 +00001714 Lex(); // Consume the identifier token.
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001715
1716 return false;
1717}
1718
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001719/// ParseDirectiveSet:
Nico Weber4c4c7322011-01-28 03:04:41 +00001720/// ::= .equ identifier ',' expression
1721/// ::= .equiv identifier ',' expression
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001722/// ::= .set identifier ',' expression
Nico Weber4c4c7322011-01-28 03:04:41 +00001723bool AsmParser::ParseDirectiveSet(StringRef IDVal, bool allow_redef) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001724 StringRef Name;
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001725
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00001726 if (ParseIdentifier(Name))
Roman Divackyf9d17522010-10-28 16:57:58 +00001727 return TokError("expected identifier after '" + Twine(IDVal) + "'");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001728
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001729 if (getLexer().isNot(AsmToken::Comma))
Roman Divackyf9d17522010-10-28 16:57:58 +00001730 return TokError("unexpected token in '" + Twine(IDVal) + "'");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001731 Lex();
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001732
Nico Weber4c4c7322011-01-28 03:04:41 +00001733 return ParseAssignment(Name, allow_redef);
Daniel Dunbar8f780cd2009-06-25 21:56:11 +00001734}
1735
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001736bool AsmParser::ParseEscapedString(std::string &Data) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001737 assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001738
1739 Data = "";
Sean Callanan18b83232010-01-19 21:44:56 +00001740 StringRef Str = getTok().getStringContents();
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001741 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1742 if (Str[i] != '\\') {
1743 Data += Str[i];
1744 continue;
1745 }
1746
1747 // Recognize escaped characters. Note that this escape semantics currently
1748 // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1749 ++i;
1750 if (i == e)
1751 return TokError("unexpected backslash at end of string");
1752
1753 // Recognize octal sequences.
1754 if ((unsigned) (Str[i] - '0') <= 7) {
1755 // Consume up to three octal characters.
1756 unsigned Value = Str[i] - '0';
1757
1758 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1759 ++i;
1760 Value = Value * 8 + (Str[i] - '0');
1761
1762 if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1763 ++i;
1764 Value = Value * 8 + (Str[i] - '0');
1765 }
1766 }
1767
1768 if (Value > 255)
1769 return TokError("invalid octal escape sequence (out of range)");
1770
1771 Data += (unsigned char) Value;
1772 continue;
1773 }
1774
1775 // Otherwise recognize individual escapes.
1776 switch (Str[i]) {
1777 default:
1778 // Just reject invalid escape sequences for now.
1779 return TokError("invalid escape sequence (unrecognized character)");
1780
1781 case 'b': Data += '\b'; break;
1782 case 'f': Data += '\f'; break;
1783 case 'n': Data += '\n'; break;
1784 case 'r': Data += '\r'; break;
1785 case 't': Data += '\t'; break;
1786 case '"': Data += '"'; break;
1787 case '\\': Data += '\\'; break;
1788 }
1789 }
1790
1791 return false;
1792}
1793
Daniel Dunbara0d14262009-06-24 23:30:00 +00001794/// ParseDirectiveAscii:
Rafael Espindola787c3372010-10-28 20:02:27 +00001795/// ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
1796bool AsmParser::ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001797 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001798 CheckForValidSection();
1799
Daniel Dunbara0d14262009-06-24 23:30:00 +00001800 for (;;) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001801 if (getLexer().isNot(AsmToken::String))
Rafael Espindola787c3372010-10-28 20:02:27 +00001802 return TokError("expected string in '" + Twine(IDVal) + "' directive");
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001803
Daniel Dunbar1ab75942009-08-14 18:19:52 +00001804 std::string Data;
1805 if (ParseEscapedString(Data))
1806 return true;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001807
1808 getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001809 if (ZeroTerminated)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001810 getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
1811
Sean Callanan79ed1a82010-01-19 20:22:31 +00001812 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001813
1814 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001815 break;
1816
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001817 if (getLexer().isNot(AsmToken::Comma))
Rafael Espindola787c3372010-10-28 20:02:27 +00001818 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001819 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001820 }
1821 }
1822
Sean Callanan79ed1a82010-01-19 20:22:31 +00001823 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001824 return false;
1825}
1826
1827/// ParseDirectiveValue
1828/// ::= (.byte | .short | ... ) [ expression (, expression)* ]
1829bool AsmParser::ParseDirectiveValue(unsigned Size) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001830 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001831 CheckForValidSection();
1832
Daniel Dunbara0d14262009-06-24 23:30:00 +00001833 for (;;) {
Daniel Dunbar821e3332009-08-31 08:09:28 +00001834 const MCExpr *Value;
Jim Grosbach254cf032011-06-29 16:05:14 +00001835 SMLoc ExprLoc = getLexer().getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00001836 if (ParseExpression(Value))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001837 return true;
1838
Daniel Dunbar414c0c42010-05-23 18:36:38 +00001839 // Special case constant expressions to match code generator.
Jim Grosbach254cf032011-06-29 16:05:14 +00001840 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
1841 assert(Size <= 8 && "Invalid size");
1842 uint64_t IntValue = MCE->getValue();
1843 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
1844 return Error(ExprLoc, "literal value out of range for directive");
1845 getStreamer().EmitIntValue(IntValue, Size, DEFAULT_ADDRSPACE);
1846 } else
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001847 getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001848
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001849 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001850 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001851
Daniel Dunbara0d14262009-06-24 23:30:00 +00001852 // FIXME: Improve diagnostic.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001853 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001854 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001855 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001856 }
1857 }
1858
Sean Callanan79ed1a82010-01-19 20:22:31 +00001859 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001860 return false;
1861}
1862
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001863/// ParseDirectiveRealValue
1864/// ::= (.single | .double) [ expression (, expression)* ]
1865bool AsmParser::ParseDirectiveRealValue(const fltSemantics &Semantics) {
1866 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1867 CheckForValidSection();
1868
1869 for (;;) {
1870 // We don't truly support arithmetic on floating point expressions, so we
1871 // have to manually parse unary prefixes.
1872 bool IsNeg = false;
1873 if (getLexer().is(AsmToken::Minus)) {
1874 Lex();
1875 IsNeg = true;
1876 } else if (getLexer().is(AsmToken::Plus))
1877 Lex();
1878
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001879 if (getLexer().isNot(AsmToken::Integer) &&
Kevin Enderby360d8d72011-03-29 21:11:52 +00001880 getLexer().isNot(AsmToken::Real) &&
1881 getLexer().isNot(AsmToken::Identifier))
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001882 return TokError("unexpected token in directive");
1883
1884 // Convert to an APFloat.
1885 APFloat Value(Semantics);
Kevin Enderby360d8d72011-03-29 21:11:52 +00001886 StringRef IDVal = getTok().getString();
1887 if (getLexer().is(AsmToken::Identifier)) {
1888 if (!IDVal.compare_lower("infinity") || !IDVal.compare_lower("inf"))
1889 Value = APFloat::getInf(Semantics);
1890 else if (!IDVal.compare_lower("nan"))
1891 Value = APFloat::getNaN(Semantics, false, ~0);
1892 else
1893 return TokError("invalid floating point literal");
1894 } else if (Value.convertFromString(IDVal, APFloat::rmNearestTiesToEven) ==
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001895 APFloat::opInvalidOp)
1896 return TokError("invalid floating point literal");
1897 if (IsNeg)
1898 Value.changeSign();
1899
1900 // Consume the numeric token.
1901 Lex();
1902
1903 // Emit the value as an integer.
1904 APInt AsInt = Value.bitcastToAPInt();
1905 getStreamer().EmitIntValue(AsInt.getLimitedValue(),
1906 AsInt.getBitWidth() / 8, DEFAULT_ADDRSPACE);
1907
1908 if (getLexer().is(AsmToken::EndOfStatement))
1909 break;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001910
Daniel Dunbarb95a0792010-09-24 01:59:56 +00001911 if (getLexer().isNot(AsmToken::Comma))
1912 return TokError("unexpected token in directive");
1913 Lex();
1914 }
1915 }
1916
1917 Lex();
1918 return false;
1919}
1920
Daniel Dunbara0d14262009-06-24 23:30:00 +00001921/// ParseDirectiveSpace
1922/// ::= .space expression [ , expression ]
1923bool AsmParser::ParseDirectiveSpace() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001924 CheckForValidSection();
1925
Daniel Dunbara0d14262009-06-24 23:30:00 +00001926 int64_t NumBytes;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001927 if (ParseAbsoluteExpression(NumBytes))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001928 return true;
1929
1930 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001931 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1932 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001933 return TokError("unexpected token in '.space' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001934 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001935
Daniel Dunbar475839e2009-06-29 20:37:27 +00001936 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001937 return true;
1938
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001939 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001940 return TokError("unexpected token in '.space' directive");
1941 }
1942
Sean Callanan79ed1a82010-01-19 20:22:31 +00001943 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00001944
1945 if (NumBytes <= 0)
1946 return TokError("invalid number of bytes in '.space' directive");
1947
1948 // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001949 getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00001950
1951 return false;
1952}
1953
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001954/// ParseDirectiveZero
1955/// ::= .zero expression
1956bool AsmParser::ParseDirectiveZero() {
1957 CheckForValidSection();
1958
1959 int64_t NumBytes;
1960 if (ParseAbsoluteExpression(NumBytes))
1961 return true;
1962
Rafael Espindolae452b172010-10-05 19:42:57 +00001963 int64_t Val = 0;
1964 if (getLexer().is(AsmToken::Comma)) {
1965 Lex();
1966 if (ParseAbsoluteExpression(Val))
1967 return true;
1968 }
1969
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001970 if (getLexer().isNot(AsmToken::EndOfStatement))
1971 return TokError("unexpected token in '.zero' directive");
1972
1973 Lex();
1974
Rafael Espindolae452b172010-10-05 19:42:57 +00001975 getStreamer().EmitFill(NumBytes, Val, DEFAULT_ADDRSPACE);
Rafael Espindola2ea2ac72010-09-16 15:03:59 +00001976
1977 return false;
1978}
1979
Daniel Dunbara0d14262009-06-24 23:30:00 +00001980/// ParseDirectiveFill
1981/// ::= .fill expression , expression , expression
1982bool AsmParser::ParseDirectiveFill() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00001983 CheckForValidSection();
1984
Daniel Dunbara0d14262009-06-24 23:30:00 +00001985 int64_t NumValues;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001986 if (ParseAbsoluteExpression(NumValues))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001987 return true;
1988
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001989 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001990 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001991 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001992
Daniel Dunbara0d14262009-06-24 23:30:00 +00001993 int64_t FillSize;
Daniel Dunbar475839e2009-06-29 20:37:27 +00001994 if (ParseAbsoluteExpression(FillSize))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001995 return true;
1996
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00001997 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbara0d14262009-06-24 23:30:00 +00001998 return TokError("unexpected token in '.fill' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00001999 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002000
Daniel Dunbara0d14262009-06-24 23:30:00 +00002001 int64_t FillExpr;
Daniel Dunbar475839e2009-06-29 20:37:27 +00002002 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002003 return true;
2004
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002005 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbara0d14262009-06-24 23:30:00 +00002006 return TokError("unexpected token in '.fill' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002007
Sean Callanan79ed1a82010-01-19 20:22:31 +00002008 Lex();
Daniel Dunbara0d14262009-06-24 23:30:00 +00002009
Daniel Dunbarbc38ca72009-08-21 15:43:35 +00002010 if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
2011 return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
Daniel Dunbara0d14262009-06-24 23:30:00 +00002012
2013 for (uint64_t i = 0, e = NumValues; i != e; ++i)
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002014 getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
Daniel Dunbara0d14262009-06-24 23:30:00 +00002015
2016 return false;
2017}
Daniel Dunbarc238b582009-06-25 22:44:51 +00002018
2019/// ParseDirectiveOrg
2020/// ::= .org expression [ , expression ]
2021bool AsmParser::ParseDirectiveOrg() {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002022 CheckForValidSection();
2023
Daniel Dunbar821e3332009-08-31 08:09:28 +00002024 const MCExpr *Offset;
Jim Grosbachebd4c052012-01-27 00:37:08 +00002025 SMLoc Loc = getTok().getLoc();
Daniel Dunbar821e3332009-08-31 08:09:28 +00002026 if (ParseExpression(Offset))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002027 return true;
2028
2029 // Parse optional fill expression.
2030 int64_t FillExpr = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002031 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2032 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002033 return TokError("unexpected token in '.org' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002034 Lex();
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002035
Daniel Dunbar475839e2009-06-29 20:37:27 +00002036 if (ParseAbsoluteExpression(FillExpr))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002037 return true;
2038
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002039 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc238b582009-06-25 22:44:51 +00002040 return TokError("unexpected token in '.org' directive");
2041 }
2042
Sean Callanan79ed1a82010-01-19 20:22:31 +00002043 Lex();
Daniel Dunbarf4b830f2009-06-30 02:10:03 +00002044
Jim Grosbachebd4c052012-01-27 00:37:08 +00002045 // Only limited forms of relocatable expressions are accepted here, it
2046 // has to be relative to the current section. The streamer will return
2047 // 'true' if the expression wasn't evaluatable.
2048 if (getStreamer().EmitValueToOffset(Offset, FillExpr))
2049 return Error(Loc, "expected assembly-time absolute expression");
Daniel Dunbarc238b582009-06-25 22:44:51 +00002050
2051 return false;
2052}
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002053
2054/// ParseDirectiveAlign
2055/// ::= {.align, ...} expression [ , expression [ , expression ]]
2056bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002057 CheckForValidSection();
2058
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002059 SMLoc AlignmentLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002060 int64_t Alignment;
2061 if (ParseAbsoluteExpression(Alignment))
2062 return true;
2063
2064 SMLoc MaxBytesLoc;
2065 bool HasFillExpr = false;
2066 int64_t FillExpr = 0;
2067 int64_t MaxBytesToFill = 0;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002068 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2069 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002070 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002071 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002072
2073 // The fill expression can be omitted while specifying a maximum number of
2074 // alignment bytes, e.g:
2075 // .align 3,,4
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002076 if (getLexer().isNot(AsmToken::Comma)) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002077 HasFillExpr = true;
2078 if (ParseAbsoluteExpression(FillExpr))
2079 return true;
2080 }
2081
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002082 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2083 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002084 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002085 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002086
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002087 MaxBytesLoc = getLexer().getLoc();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002088 if (ParseAbsoluteExpression(MaxBytesToFill))
2089 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002090
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002091 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002092 return TokError("unexpected token in directive");
2093 }
2094 }
2095
Sean Callanan79ed1a82010-01-19 20:22:31 +00002096 Lex();
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002097
Daniel Dunbar648ac512010-05-17 21:54:30 +00002098 if (!HasFillExpr)
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002099 FillExpr = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002100
2101 // Compute alignment in bytes.
2102 if (IsPow2) {
2103 // FIXME: Diagnose overflow.
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002104 if (Alignment >= 32) {
2105 Error(AlignmentLoc, "invalid alignment value");
2106 Alignment = 31;
2107 }
2108
Benjamin Kramer12fd7672009-09-06 09:35:10 +00002109 Alignment = 1ULL << Alignment;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002110 }
2111
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002112 // Diagnose non-sensical max bytes to align.
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002113 if (MaxBytesLoc.isValid()) {
2114 if (MaxBytesToFill < 1) {
Daniel Dunbarb58a8042009-08-26 09:16:34 +00002115 Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
2116 "many bytes, ignoring maximum bytes expression");
Daniel Dunbar0afb9f52009-08-21 23:01:53 +00002117 MaxBytesToFill = 0;
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002118 }
2119
2120 if (MaxBytesToFill >= Alignment) {
Daniel Dunbar3fb76832009-06-30 00:49:23 +00002121 Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
2122 "has no effect");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002123 MaxBytesToFill = 0;
2124 }
2125 }
2126
Daniel Dunbar648ac512010-05-17 21:54:30 +00002127 // Check whether we should use optimal code alignment for this .align
2128 // directive.
Jan Wen Voung083cf152010-10-04 17:32:41 +00002129 bool UseCodeAlign = getStreamer().getCurrentSection()->UseCodeAlign();
Daniel Dunbar648ac512010-05-17 21:54:30 +00002130 if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
2131 ValueSize == 1 && UseCodeAlign) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002132 getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002133 } else {
Kevin Enderbyd74acb02010-02-25 18:46:04 +00002134 // FIXME: Target specific behavior about how the "extra" bytes are filled.
Chris Lattnera9558532010-07-15 21:19:31 +00002135 getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
2136 MaxBytesToFill);
Daniel Dunbar648ac512010-05-17 21:54:30 +00002137 }
Daniel Dunbarc29dfa72009-06-29 23:46:59 +00002138
2139 return false;
2140}
2141
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002142/// ParseDirectiveSymbolAttribute
2143/// ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
Chris Lattnera5ad93a2010-01-23 06:39:22 +00002144bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002145 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002146 for (;;) {
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002147 StringRef Name;
Jim Grosbach10ec6502011-09-15 17:56:49 +00002148 SMLoc Loc = getTok().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002149
2150 if (ParseIdentifier(Name))
Jim Grosbach10ec6502011-09-15 17:56:49 +00002151 return Error(Loc, "expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002152
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00002153 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002154
Jim Grosbach10ec6502011-09-15 17:56:49 +00002155 // Assembler local symbols don't make any sense here. Complain loudly.
2156 if (Sym->isTemporary())
2157 return Error(Loc, "non-local symbol required in directive");
2158
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002159 getStreamer().EmitSymbolAttribute(Sym, Attr);
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002160
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002161 if (getLexer().is(AsmToken::EndOfStatement))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002162 break;
2163
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002164 if (getLexer().isNot(AsmToken::Comma))
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002165 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002166 Lex();
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002167 }
2168 }
2169
Sean Callanan79ed1a82010-01-19 20:22:31 +00002170 Lex();
Jan Wen Vounga854a4b2010-09-30 01:09:20 +00002171 return false;
Daniel Dunbard7b267b2009-06-30 00:33:19 +00002172}
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002173
2174/// ParseDirectiveComm
Chris Lattner1fc3d752009-07-09 17:25:12 +00002175/// ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
2176bool AsmParser::ParseDirectiveComm(bool IsLocal) {
Daniel Dunbar1ab6f2f2010-09-09 22:42:59 +00002177 CheckForValidSection();
2178
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002179 SMLoc IDLoc = getLexer().getLoc();
Daniel Dunbara6b3c5d2009-08-01 00:48:30 +00002180 StringRef Name;
2181 if (ParseIdentifier(Name))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002182 return TokError("expected identifier in directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002183
Daniel Dunbar76c4d762009-07-31 21:55:09 +00002184 // Handle the identifier as the key symbol.
Daniel Dunbar4c7c08b2010-07-12 19:52:10 +00002185 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002186
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002187 if (getLexer().isNot(AsmToken::Comma))
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002188 return TokError("unexpected token in directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002189 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002190
2191 int64_t Size;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002192 SMLoc SizeLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002193 if (ParseAbsoluteExpression(Size))
2194 return true;
2195
2196 int64_t Pow2Alignment = 0;
2197 SMLoc Pow2AlignmentLoc;
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002198 if (getLexer().is(AsmToken::Comma)) {
Sean Callanan79ed1a82010-01-19 20:22:31 +00002199 Lex();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002200 Pow2AlignmentLoc = getLexer().getLoc();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002201 if (ParseAbsoluteExpression(Pow2Alignment))
2202 return true;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002203
Chris Lattner258281d2010-01-19 06:22:22 +00002204 // If this target takes alignments in bytes (not log) validate and convert.
2205 if (Lexer.getMAI().getAlignmentIsInBytes()) {
2206 if (!isPowerOf2_64(Pow2Alignment))
2207 return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
2208 Pow2Alignment = Log2_64(Pow2Alignment);
2209 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002210 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002211
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002212 if (getLexer().isNot(AsmToken::EndOfStatement))
Chris Lattner1fc3d752009-07-09 17:25:12 +00002213 return TokError("unexpected token in '.comm' or '.lcomm' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002214
Sean Callanan79ed1a82010-01-19 20:22:31 +00002215 Lex();
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002216
Chris Lattner1fc3d752009-07-09 17:25:12 +00002217 // NOTE: a size of zero for a .comm should create a undefined symbol
2218 // but a size of .lcomm creates a bss symbol of size zero.
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002219 if (Size < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00002220 return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
2221 "be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002222
Eric Christopherc260a3e2010-05-14 01:38:54 +00002223 // NOTE: The alignment in the directive is a power of 2 value, the assembler
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002224 // may internally end up wanting an alignment in bytes.
2225 // FIXME: Diagnose overflow.
2226 if (Pow2Alignment < 0)
Chris Lattner1fc3d752009-07-09 17:25:12 +00002227 return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
2228 "alignment, can't be less than zero");
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002229
Daniel Dunbar8906ff12009-08-22 07:22:36 +00002230 if (!Sym->isUndefined())
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002231 return Error(IDLoc, "invalid symbol redefinition");
2232
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00002233 // '.lcomm' is equivalent to '.zerofill'.
Chris Lattner1fc3d752009-07-09 17:25:12 +00002234 // Create the Symbol as a common or local common with Size and Pow2Alignment
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00002235 if (IsLocal) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002236 getStreamer().EmitZerofill(Ctx.getMachOSection(
2237 "__DATA", "__bss", MCSectionMachO::S_ZEROFILL,
2238 0, SectionKind::getBSS()),
2239 Sym, Size, 1 << Pow2Alignment);
Daniel Dunbar7092c7e2009-08-30 06:17:16 +00002240 return false;
2241 }
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002242
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002243 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
Chris Lattner4e4db7a2009-07-07 20:30:46 +00002244 return false;
2245}
Chris Lattner9be3fee2009-07-10 22:20:30 +00002246
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002247/// ParseDirectiveAbort
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002248/// ::= .abort [... message ...]
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002249bool AsmParser::ParseDirectiveAbort() {
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00002250 // FIXME: Use loc from directive.
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002251 SMLoc Loc = getLexer().getLoc();
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00002252
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002253 StringRef Str = ParseStringToEndOfStatement();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002254 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002255 return TokError("unexpected token in '.abort' directive");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002256
Sean Callanan79ed1a82010-01-19 20:22:31 +00002257 Lex();
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002258
Daniel Dunbarf9507ff2009-07-27 23:20:52 +00002259 if (Str.empty())
2260 Error(Loc, ".abort detected. Assembly stopping.");
2261 else
2262 Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
Daniel Dunbar6a46d572010-07-18 20:15:59 +00002263 // FIXME: Actually abort assembly here.
Kevin Enderby5f1f0b82009-07-13 23:15:14 +00002264
2265 return false;
2266}
Kevin Enderby71148242009-07-14 21:35:03 +00002267
Kevin Enderby1f049b22009-07-14 23:21:55 +00002268/// ParseDirectiveInclude
2269/// ::= .include "filename"
2270bool AsmParser::ParseDirectiveInclude() {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002271 if (getLexer().isNot(AsmToken::String))
Kevin Enderby1f049b22009-07-14 23:21:55 +00002272 return TokError("expected string in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002273
Sean Callanan18b83232010-01-19 21:44:56 +00002274 std::string Filename = getTok().getString();
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002275 SMLoc IncludeLoc = getLexer().getLoc();
Sean Callanan79ed1a82010-01-19 20:22:31 +00002276 Lex();
Kevin Enderby1f049b22009-07-14 23:21:55 +00002277
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002278 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderby1f049b22009-07-14 23:21:55 +00002279 return TokError("unexpected token in '.include' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002280
Chris Lattner8e25e2d2009-07-16 06:14:39 +00002281 // Strip the quotes.
2282 Filename = Filename.substr(1, Filename.size()-2);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002283
Chris Lattner8e25e2d2009-07-16 06:14:39 +00002284 // Attempt to switch the lexer to the included file before consuming the end
2285 // of statement to avoid losing it when we switch.
Sean Callananfd0b0282010-01-21 00:19:58 +00002286 if (EnterIncludeFile(Filename)) {
Daniel Dunbar275ce392010-07-18 18:31:45 +00002287 Error(IncludeLoc, "Could not find include file '" + Filename + "'");
Chris Lattner8e25e2d2009-07-16 06:14:39 +00002288 return true;
2289 }
Kevin Enderby1f049b22009-07-14 23:21:55 +00002290
2291 return false;
2292}
Kevin Enderby6e68cd92009-07-15 15:30:11 +00002293
Kevin Enderbyc55acca2011-12-14 21:47:48 +00002294/// ParseDirectiveIncbin
2295/// ::= .incbin "filename"
2296bool AsmParser::ParseDirectiveIncbin() {
2297 if (getLexer().isNot(AsmToken::String))
2298 return TokError("expected string in '.incbin' directive");
2299
2300 std::string Filename = getTok().getString();
2301 SMLoc IncbinLoc = getLexer().getLoc();
2302 Lex();
2303
2304 if (getLexer().isNot(AsmToken::EndOfStatement))
2305 return TokError("unexpected token in '.incbin' directive");
2306
2307 // Strip the quotes.
2308 Filename = Filename.substr(1, Filename.size()-2);
2309
2310 // Attempt to process the included file.
2311 if (ProcessIncbinFile(Filename)) {
2312 Error(IncbinLoc, "Could not find incbin file '" + Filename + "'");
2313 return true;
2314 }
2315
2316 return false;
2317}
2318
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002319/// ParseDirectiveIf
2320/// ::= .if expression
2321bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002322 TheCondStack.push_back(TheCondState);
2323 TheCondState.TheCond = AsmCond::IfCond;
2324 if(TheCondState.Ignore) {
2325 EatToEndOfStatement();
2326 }
2327 else {
2328 int64_t ExprValue;
2329 if (ParseAbsoluteExpression(ExprValue))
2330 return true;
2331
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002332 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002333 return TokError("unexpected token in '.if' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002334
Sean Callanan79ed1a82010-01-19 20:22:31 +00002335 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002336
2337 TheCondState.CondMet = ExprValue;
2338 TheCondState.Ignore = !TheCondState.CondMet;
2339 }
2340
2341 return false;
2342}
2343
Benjamin Kramera3dd0eb2012-05-12 11:18:42 +00002344/// ParseDirectiveIfb
2345/// ::= .ifb string
2346bool AsmParser::ParseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank) {
2347 TheCondStack.push_back(TheCondState);
2348 TheCondState.TheCond = AsmCond::IfCond;
2349
2350 if(TheCondState.Ignore) {
2351 EatToEndOfStatement();
2352 } else {
2353 StringRef Str = ParseStringToEndOfStatement();
2354
2355 if (getLexer().isNot(AsmToken::EndOfStatement))
2356 return TokError("unexpected token in '.ifb' directive");
2357
2358 Lex();
2359
2360 TheCondState.CondMet = ExpectBlank == Str.empty();
2361 TheCondState.Ignore = !TheCondState.CondMet;
2362 }
2363
2364 return false;
2365}
2366
Benjamin Kramerdec06ef2012-05-12 11:18:51 +00002367/// ParseDirectiveIfc
2368/// ::= .ifc string1, string2
2369bool AsmParser::ParseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual) {
2370 TheCondStack.push_back(TheCondState);
2371 TheCondState.TheCond = AsmCond::IfCond;
2372
2373 if(TheCondState.Ignore) {
2374 EatToEndOfStatement();
2375 } else {
2376 StringRef Str1 = ParseStringToComma();
2377
2378 if (getLexer().isNot(AsmToken::Comma))
2379 return TokError("unexpected token in '.ifc' directive");
2380
2381 Lex();
2382
2383 StringRef Str2 = ParseStringToEndOfStatement();
2384
2385 if (getLexer().isNot(AsmToken::EndOfStatement))
2386 return TokError("unexpected token in '.ifc' directive");
2387
2388 Lex();
2389
2390 TheCondState.CondMet = ExpectEqual == (Str1 == Str2);
2391 TheCondState.Ignore = !TheCondState.CondMet;
2392 }
2393
2394 return false;
2395}
2396
2397/// ParseDirectiveIfdef
2398/// ::= .ifdef symbol
Benjamin Kramer0fd90bc2011-02-08 22:29:56 +00002399bool AsmParser::ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined) {
2400 StringRef Name;
2401 TheCondStack.push_back(TheCondState);
2402 TheCondState.TheCond = AsmCond::IfCond;
2403
2404 if (TheCondState.Ignore) {
2405 EatToEndOfStatement();
2406 } else {
2407 if (ParseIdentifier(Name))
2408 return TokError("expected identifier after '.ifdef'");
2409
2410 Lex();
2411
2412 MCSymbol *Sym = getContext().LookupSymbol(Name);
2413
2414 if (expect_defined)
2415 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
2416 else
2417 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
2418 TheCondState.Ignore = !TheCondState.CondMet;
2419 }
2420
2421 return false;
2422}
2423
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002424/// ParseDirectiveElseIf
2425/// ::= .elseif expression
2426bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
2427 if (TheCondState.TheCond != AsmCond::IfCond &&
2428 TheCondState.TheCond != AsmCond::ElseIfCond)
2429 Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
2430 " an .elseif");
2431 TheCondState.TheCond = AsmCond::ElseIfCond;
2432
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002433 bool LastIgnoreState = false;
2434 if (!TheCondStack.empty())
2435 LastIgnoreState = TheCondStack.back().Ignore;
2436 if (LastIgnoreState || TheCondState.CondMet) {
2437 TheCondState.Ignore = true;
2438 EatToEndOfStatement();
2439 }
2440 else {
2441 int64_t ExprValue;
2442 if (ParseAbsoluteExpression(ExprValue))
2443 return true;
2444
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002445 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002446 return TokError("unexpected token in '.elseif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002447
Sean Callanan79ed1a82010-01-19 20:22:31 +00002448 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002449 TheCondState.CondMet = ExprValue;
2450 TheCondState.Ignore = !TheCondState.CondMet;
2451 }
2452
2453 return false;
2454}
2455
2456/// ParseDirectiveElse
2457/// ::= .else
2458bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002459 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002460 return TokError("unexpected token in '.else' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002461
Sean Callanan79ed1a82010-01-19 20:22:31 +00002462 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002463
2464 if (TheCondState.TheCond != AsmCond::IfCond &&
2465 TheCondState.TheCond != AsmCond::ElseIfCond)
2466 Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
2467 ".elseif");
2468 TheCondState.TheCond = AsmCond::ElseCond;
2469 bool LastIgnoreState = false;
2470 if (!TheCondStack.empty())
2471 LastIgnoreState = TheCondStack.back().Ignore;
2472 if (LastIgnoreState || TheCondState.CondMet)
2473 TheCondState.Ignore = true;
2474 else
2475 TheCondState.Ignore = false;
2476
2477 return false;
2478}
2479
2480/// ParseDirectiveEndIf
2481/// ::= .endif
2482bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
Daniel Dunbar8f34bea2010-07-12 18:03:11 +00002483 if (getLexer().isNot(AsmToken::EndOfStatement))
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002484 return TokError("unexpected token in '.endif' directive");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002485
Sean Callanan79ed1a82010-01-19 20:22:31 +00002486 Lex();
Kevin Enderbyc114ed72009-08-07 22:46:00 +00002487
2488 if ((TheCondState.TheCond == AsmCond::NoCond) ||
2489 TheCondStack.empty())
2490 Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
2491 ".else");
2492 if (!TheCondStack.empty()) {
2493 TheCondState = TheCondStack.back();
2494 TheCondStack.pop_back();
2495 }
2496
2497 return false;
2498}
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002499
2500/// ParseDirectiveFile
Nick Lewycky44d798d2011-10-17 23:05:28 +00002501/// ::= .file [number] filename
2502/// ::= .file number directory filename
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002503bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002504 // FIXME: I'm not sure what this is.
2505 int64_t FileNumber = -1;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002506 SMLoc FileNumberLoc = getLexer().getLoc();
Daniel Dunbareceec052010-07-12 17:45:27 +00002507 if (getLexer().is(AsmToken::Integer)) {
Sean Callanan18b83232010-01-19 21:44:56 +00002508 FileNumber = getTok().getIntVal();
Sean Callanan79ed1a82010-01-19 20:22:31 +00002509 Lex();
Daniel Dunbareceec052010-07-12 17:45:27 +00002510
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002511 if (FileNumber < 1)
2512 return TokError("file number less than one");
2513 }
2514
Daniel Dunbareceec052010-07-12 17:45:27 +00002515 if (getLexer().isNot(AsmToken::String))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002516 return TokError("unexpected token in '.file' directive");
Daniel Dunbareceec052010-07-12 17:45:27 +00002517
Nick Lewycky44d798d2011-10-17 23:05:28 +00002518 // Usually the directory and filename together, otherwise just the directory.
2519 StringRef Path = getTok().getString();
2520 Path = Path.substr(1, Path.size()-2);
Sean Callanan79ed1a82010-01-19 20:22:31 +00002521 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002522
Nick Lewycky44d798d2011-10-17 23:05:28 +00002523 StringRef Directory;
2524 StringRef Filename;
2525 if (getLexer().is(AsmToken::String)) {
2526 if (FileNumber == -1)
2527 return TokError("explicit path specified, but no file number");
2528 Filename = getTok().getString();
2529 Filename = Filename.substr(1, Filename.size()-2);
2530 Directory = Path;
2531 Lex();
2532 } else {
2533 Filename = Path;
2534 }
2535
Daniel Dunbareceec052010-07-12 17:45:27 +00002536 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002537 return TokError("unexpected token in '.file' directive");
2538
Chris Lattnerd32e8032010-01-25 19:02:58 +00002539 if (FileNumber == -1)
Daniel Dunbareceec052010-07-12 17:45:27 +00002540 getStreamer().EmitFileDirective(Filename);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002541 else {
Kevin Enderby8704b782012-01-11 18:04:47 +00002542 if (getContext().getGenDwarfForAssembly() == true)
2543 Error(DirectiveLoc, "input can't have .file dwarf directives when -g is "
2544 "used to generate dwarf debug info for assembly code");
2545
Nick Lewycky44d798d2011-10-17 23:05:28 +00002546 if (getStreamer().EmitDwarfFileDirective(FileNumber, Directory, Filename))
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002547 Error(FileNumberLoc, "file number already allocated");
Kevin Enderby7cbf73a2010-07-28 20:55:35 +00002548 }
Daniel Dunbareceec052010-07-12 17:45:27 +00002549
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002550 return false;
2551}
2552
2553/// ParseDirectiveLine
2554/// ::= .line [number]
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002555bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
Daniel Dunbareceec052010-07-12 17:45:27 +00002556 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2557 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002558 return TokError("unexpected token in '.line' directive");
2559
Sean Callanan18b83232010-01-19 21:44:56 +00002560 int64_t LineNumber = getTok().getIntVal();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002561 (void) LineNumber;
Sean Callanan79ed1a82010-01-19 20:22:31 +00002562 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002563
2564 // FIXME: Do something with the .line.
2565 }
2566
Daniel Dunbareceec052010-07-12 17:45:27 +00002567 if (getLexer().isNot(AsmToken::EndOfStatement))
Daniel Dunbar839348a2010-07-01 20:20:01 +00002568 return TokError("unexpected token in '.line' directive");
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002569
2570 return false;
2571}
2572
2573
2574/// ParseDirectiveLoc
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002575/// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002576/// [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2577/// The first number is a file number, must have been previously assigned with
2578/// a .file directive, the second number is the line number and optionally the
2579/// third number is a column position (zero if not specified). The remaining
2580/// optional items are .loc sub-directives.
Daniel Dunbar81ea00f2010-07-12 17:54:38 +00002581bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002582
Daniel Dunbareceec052010-07-12 17:45:27 +00002583 if (getLexer().isNot(AsmToken::Integer))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002584 return TokError("unexpected token in '.loc' directive");
Sean Callanan18b83232010-01-19 21:44:56 +00002585 int64_t FileNumber = getTok().getIntVal();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002586 if (FileNumber < 1)
2587 return TokError("file number less than one in '.loc' directive");
Kevin Enderby3f55c242010-10-04 20:17:24 +00002588 if (!getContext().isValidDwarfFileNumber(FileNumber))
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002589 return TokError("unassigned file number in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002590 Lex();
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002591
Kevin Enderby6d8f1a92010-08-24 21:14:47 +00002592 int64_t LineNumber = 0;
2593 if (getLexer().is(AsmToken::Integer)) {
2594 LineNumber = getTok().getIntVal();
2595 if (LineNumber < 1)
2596 return TokError("line number less than one in '.loc' directive");
2597 Lex();
2598 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002599
2600 int64_t ColumnPos = 0;
2601 if (getLexer().is(AsmToken::Integer)) {
2602 ColumnPos = getTok().getIntVal();
2603 if (ColumnPos < 0)
2604 return TokError("column position less than zero in '.loc' directive");
Sean Callanan79ed1a82010-01-19 20:22:31 +00002605 Lex();
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002606 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002607
Kevin Enderbyc0957932010-09-30 16:52:03 +00002608 unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002609 unsigned Isa = 0;
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002610 int64_t Discriminator = 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002611 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2612 for (;;) {
2613 if (getLexer().is(AsmToken::EndOfStatement))
2614 break;
2615
2616 StringRef Name;
2617 SMLoc Loc = getTok().getLoc();
2618 if (getParser().ParseIdentifier(Name))
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002619 return TokError("unexpected token in '.loc' directive");
2620
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002621 if (Name == "basic_block")
2622 Flags |= DWARF2_FLAG_BASIC_BLOCK;
2623 else if (Name == "prologue_end")
2624 Flags |= DWARF2_FLAG_PROLOGUE_END;
2625 else if (Name == "epilogue_begin")
2626 Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2627 else if (Name == "is_stmt") {
2628 SMLoc Loc = getTok().getLoc();
2629 const MCExpr *Value;
2630 if (getParser().ParseExpression(Value))
2631 return true;
2632 // The expression must be the constant 0 or 1.
2633 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2634 int Value = MCE->getValue();
2635 if (Value == 0)
2636 Flags &= ~DWARF2_FLAG_IS_STMT;
2637 else if (Value == 1)
2638 Flags |= DWARF2_FLAG_IS_STMT;
2639 else
2640 return Error(Loc, "is_stmt value not 0 or 1");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002641 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002642 else {
2643 return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2644 }
2645 }
2646 else if (Name == "isa") {
2647 SMLoc Loc = getTok().getLoc();
2648 const MCExpr *Value;
2649 if (getParser().ParseExpression(Value))
2650 return true;
2651 // The expression must be a constant greater or equal to 0.
2652 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2653 int Value = MCE->getValue();
2654 if (Value < 0)
2655 return Error(Loc, "isa number less than zero");
2656 Isa = Value;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00002657 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002658 else {
2659 return Error(Loc, "isa number not a constant value");
2660 }
2661 }
Rafael Espindolac50a0fd2010-11-13 03:18:27 +00002662 else if (Name == "discriminator") {
2663 if (getParser().ParseAbsoluteExpression(Discriminator))
2664 return true;
2665 }
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002666 else {
2667 return Error(Loc, "unknown sub-directive in '.loc' directive");
2668 }
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002669
Kevin Enderbyc1840b32010-08-24 20:32:42 +00002670 if (getLexer().is(AsmToken::EndOfStatement))
2671 break;
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002672 }
2673 }
2674
Rafael Espindolaaf6b58082010-11-16 21:20:32 +00002675 getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +00002676 Isa, Discriminator, StringRef());
Daniel Dunbard0c14d62009-08-11 04:24:50 +00002677
2678 return false;
2679}
2680
Daniel Dunbar138abae2010-10-16 04:56:42 +00002681/// ParseDirectiveStabs
2682/// ::= .stabs string, number, number, number
2683bool GenericAsmParser::ParseDirectiveStabs(StringRef Directive,
2684 SMLoc DirectiveLoc) {
2685 return TokError("unsupported directive '" + Directive + "'");
2686}
2687
Rafael Espindolaf9efd832011-05-10 01:10:18 +00002688/// ParseDirectiveCFISections
2689/// ::= .cfi_sections section [, section]
2690bool GenericAsmParser::ParseDirectiveCFISections(StringRef,
2691 SMLoc DirectiveLoc) {
2692 StringRef Name;
2693 bool EH = false;
2694 bool Debug = false;
2695
2696 if (getParser().ParseIdentifier(Name))
2697 return TokError("Expected an identifier");
2698
2699 if (Name == ".eh_frame")
2700 EH = true;
2701 else if (Name == ".debug_frame")
2702 Debug = true;
2703
2704 if (getLexer().is(AsmToken::Comma)) {
2705 Lex();
2706
2707 if (getParser().ParseIdentifier(Name))
2708 return TokError("Expected an identifier");
2709
2710 if (Name == ".eh_frame")
2711 EH = true;
2712 else if (Name == ".debug_frame")
2713 Debug = true;
2714 }
2715
2716 getStreamer().EmitCFISections(EH, Debug);
2717
2718 return false;
2719}
2720
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002721/// ParseDirectiveCFIStartProc
2722/// ::= .cfi_startproc
2723bool GenericAsmParser::ParseDirectiveCFIStartProc(StringRef,
2724 SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00002725 getStreamer().EmitCFIStartProc();
2726 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002727}
2728
2729/// ParseDirectiveCFIEndProc
2730/// ::= .cfi_endproc
2731bool GenericAsmParser::ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00002732 getStreamer().EmitCFIEndProc();
2733 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002734}
2735
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002736/// ParseRegisterOrRegisterNumber - parse register name or number.
2737bool GenericAsmParser::ParseRegisterOrRegisterNumber(int64_t &Register,
2738 SMLoc DirectiveLoc) {
2739 unsigned RegNo;
2740
Jim Grosbach6f888a82011-06-02 17:14:04 +00002741 if (getLexer().isNot(AsmToken::Integer)) {
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002742 if (getParser().getTargetParser().ParseRegister(RegNo, DirectiveLoc,
2743 DirectiveLoc))
2744 return true;
Evan Cheng0e6a0522011-07-18 20:57:22 +00002745 Register = getContext().getRegisterInfo().getDwarfRegNum(RegNo, true);
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002746 } else
2747 return getParser().ParseAbsoluteExpression(Register);
Jim Grosbachde2f5f42011-02-11 19:05:56 +00002748
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002749 return false;
2750}
2751
Rafael Espindolab40a71f2010-12-29 01:42:56 +00002752/// ParseDirectiveCFIDefCfa
2753/// ::= .cfi_def_cfa register, offset
2754bool GenericAsmParser::ParseDirectiveCFIDefCfa(StringRef,
2755 SMLoc DirectiveLoc) {
2756 int64_t Register = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002757 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindolab40a71f2010-12-29 01:42:56 +00002758 return true;
2759
2760 if (getLexer().isNot(AsmToken::Comma))
2761 return TokError("unexpected token in directive");
2762 Lex();
2763
2764 int64_t Offset = 0;
2765 if (getParser().ParseAbsoluteExpression(Offset))
2766 return true;
2767
Rafael Espindola066c2f42011-04-12 23:59:07 +00002768 getStreamer().EmitCFIDefCfa(Register, Offset);
2769 return false;
Rafael Espindolab40a71f2010-12-29 01:42:56 +00002770}
2771
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002772/// ParseDirectiveCFIDefCfaOffset
2773/// ::= .cfi_def_cfa_offset offset
2774bool GenericAsmParser::ParseDirectiveCFIDefCfaOffset(StringRef,
2775 SMLoc DirectiveLoc) {
2776 int64_t Offset = 0;
2777 if (getParser().ParseAbsoluteExpression(Offset))
2778 return true;
2779
Rafael Espindola066c2f42011-04-12 23:59:07 +00002780 getStreamer().EmitCFIDefCfaOffset(Offset);
2781 return false;
Rafael Espindola53abbe52011-04-11 20:29:16 +00002782}
2783
2784/// ParseDirectiveCFIAdjustCfaOffset
2785/// ::= .cfi_adjust_cfa_offset adjustment
2786bool GenericAsmParser::ParseDirectiveCFIAdjustCfaOffset(StringRef,
2787 SMLoc DirectiveLoc) {
2788 int64_t Adjustment = 0;
2789 if (getParser().ParseAbsoluteExpression(Adjustment))
2790 return true;
2791
Rafael Espindola5d7dcd32011-04-12 18:53:30 +00002792 getStreamer().EmitCFIAdjustCfaOffset(Adjustment);
2793 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002794}
2795
2796/// ParseDirectiveCFIDefCfaRegister
2797/// ::= .cfi_def_cfa_register register
2798bool GenericAsmParser::ParseDirectiveCFIDefCfaRegister(StringRef,
2799 SMLoc DirectiveLoc) {
2800 int64_t Register = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002801 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002802 return true;
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002803
Rafael Espindola066c2f42011-04-12 23:59:07 +00002804 getStreamer().EmitCFIDefCfaRegister(Register);
2805 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002806}
2807
2808/// ParseDirectiveCFIOffset
Rafael Espindolaa61842b2011-04-11 21:49:50 +00002809/// ::= .cfi_offset register, offset
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002810bool GenericAsmParser::ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc) {
2811 int64_t Register = 0;
2812 int64_t Offset = 0;
Roman Divacky54b0f4f2011-01-27 17:16:37 +00002813
2814 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002815 return true;
2816
2817 if (getLexer().isNot(AsmToken::Comma))
2818 return TokError("unexpected token in directive");
2819 Lex();
2820
2821 if (getParser().ParseAbsoluteExpression(Offset))
2822 return true;
2823
Rafael Espindola066c2f42011-04-12 23:59:07 +00002824 getStreamer().EmitCFIOffset(Register, Offset);
2825 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002826}
2827
Rafael Espindolaa61842b2011-04-11 21:49:50 +00002828/// ParseDirectiveCFIRelOffset
2829/// ::= .cfi_rel_offset register, offset
2830bool GenericAsmParser::ParseDirectiveCFIRelOffset(StringRef,
2831 SMLoc DirectiveLoc) {
2832 int64_t Register = 0;
2833
2834 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2835 return true;
2836
2837 if (getLexer().isNot(AsmToken::Comma))
2838 return TokError("unexpected token in directive");
2839 Lex();
2840
2841 int64_t Offset = 0;
2842 if (getParser().ParseAbsoluteExpression(Offset))
2843 return true;
2844
Rafael Espindola25f492e2011-04-12 16:12:03 +00002845 getStreamer().EmitCFIRelOffset(Register, Offset);
2846 return false;
Rafael Espindolaa61842b2011-04-11 21:49:50 +00002847}
2848
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002849static bool isValidEncoding(int64_t Encoding) {
2850 if (Encoding & ~0xff)
2851 return false;
2852
2853 if (Encoding == dwarf::DW_EH_PE_omit)
2854 return true;
2855
2856 const unsigned Format = Encoding & 0xf;
2857 if (Format != dwarf::DW_EH_PE_absptr && Format != dwarf::DW_EH_PE_udata2 &&
2858 Format != dwarf::DW_EH_PE_udata4 && Format != dwarf::DW_EH_PE_udata8 &&
2859 Format != dwarf::DW_EH_PE_sdata2 && Format != dwarf::DW_EH_PE_sdata4 &&
2860 Format != dwarf::DW_EH_PE_sdata8 && Format != dwarf::DW_EH_PE_signed)
2861 return false;
2862
Rafael Espindolacaf11582010-12-29 04:31:26 +00002863 const unsigned Application = Encoding & 0x70;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002864 if (Application != dwarf::DW_EH_PE_absptr &&
Rafael Espindolacaf11582010-12-29 04:31:26 +00002865 Application != dwarf::DW_EH_PE_pcrel)
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002866 return false;
2867
2868 return true;
2869}
2870
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002871/// ParseDirectiveCFIPersonalityOrLsda
2872/// ::= .cfi_personality encoding, [symbol_name]
2873/// ::= .cfi_lsda encoding, [symbol_name]
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002874bool GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda(StringRef IDVal,
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002875 SMLoc DirectiveLoc) {
2876 int64_t Encoding = 0;
2877 if (getParser().ParseAbsoluteExpression(Encoding))
2878 return true;
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002879 if (Encoding == dwarf::DW_EH_PE_omit)
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002880 return false;
2881
Rafael Espindolad7c8cca2010-12-26 20:20:31 +00002882 if (!isValidEncoding(Encoding))
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002883 return TokError("unsupported encoding.");
2884
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002885 if (getLexer().isNot(AsmToken::Comma))
2886 return TokError("unexpected token in directive");
2887 Lex();
2888
2889 StringRef Name;
2890 if (getParser().ParseIdentifier(Name))
2891 return TokError("expected identifier in directive");
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002892
2893 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
2894
2895 if (IDVal == ".cfi_personality")
Rafael Espindola066c2f42011-04-12 23:59:07 +00002896 getStreamer().EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002897 else {
2898 assert(IDVal == ".cfi_lsda");
Rafael Espindola066c2f42011-04-12 23:59:07 +00002899 getStreamer().EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00002900 }
Rafael Espindola066c2f42011-04-12 23:59:07 +00002901 return false;
Rafael Espindola1fdfbc42010-11-16 18:34:07 +00002902}
2903
Rafael Espindolafe024d02010-12-28 18:36:23 +00002904/// ParseDirectiveCFIRememberState
2905/// ::= .cfi_remember_state
2906bool GenericAsmParser::ParseDirectiveCFIRememberState(StringRef IDVal,
2907 SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00002908 getStreamer().EmitCFIRememberState();
2909 return false;
Rafael Espindolafe024d02010-12-28 18:36:23 +00002910}
2911
2912/// ParseDirectiveCFIRestoreState
2913/// ::= .cfi_remember_state
2914bool GenericAsmParser::ParseDirectiveCFIRestoreState(StringRef IDVal,
2915 SMLoc DirectiveLoc) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00002916 getStreamer().EmitCFIRestoreState();
2917 return false;
Rafael Espindolafe024d02010-12-28 18:36:23 +00002918}
2919
Rafael Espindolac5754392011-04-12 15:31:05 +00002920/// ParseDirectiveCFISameValue
2921/// ::= .cfi_same_value register
2922bool GenericAsmParser::ParseDirectiveCFISameValue(StringRef IDVal,
2923 SMLoc DirectiveLoc) {
2924 int64_t Register = 0;
2925
2926 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2927 return true;
2928
2929 getStreamer().EmitCFISameValue(Register);
2930
2931 return false;
2932}
2933
Rafael Espindolaed23bdb2011-12-29 21:43:03 +00002934/// ParseDirectiveCFIRestore
2935/// ::= .cfi_restore register
2936bool GenericAsmParser::ParseDirectiveCFIRestore(StringRef IDVal,
2937 SMLoc DirectiveLoc) {
2938 int64_t Register = 0;
2939 if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2940 return true;
2941
2942 getStreamer().EmitCFIRestore(Register);
2943
2944 return false;
2945}
2946
Rafael Espindola6f0b1812011-12-29 20:24:47 +00002947/// ParseDirectiveCFIEscape
2948/// ::= .cfi_escape expression[,...]
2949bool GenericAsmParser::ParseDirectiveCFIEscape(StringRef IDVal,
2950 SMLoc DirectiveLoc) {
2951 std::string Values;
2952 int64_t CurrValue;
2953 if (getParser().ParseAbsoluteExpression(CurrValue))
2954 return true;
2955
2956 Values.push_back((uint8_t)CurrValue);
2957
2958 while (getLexer().is(AsmToken::Comma)) {
2959 Lex();
2960
2961 if (getParser().ParseAbsoluteExpression(CurrValue))
2962 return true;
2963
2964 Values.push_back((uint8_t)CurrValue);
2965 }
2966
2967 getStreamer().EmitCFIEscape(Values);
2968 return false;
2969}
2970
Rafael Espindola16d7d432012-01-23 21:51:52 +00002971/// ParseDirectiveCFISignalFrame
2972/// ::= .cfi_signal_frame
2973bool GenericAsmParser::ParseDirectiveCFISignalFrame(StringRef Directive,
2974 SMLoc DirectiveLoc) {
2975 if (getLexer().isNot(AsmToken::EndOfStatement))
2976 return Error(getLexer().getLoc(),
2977 "unexpected token in '" + Directive + "' directive");
2978
2979 getStreamer().EmitCFISignalFrame();
2980
2981 return false;
2982}
2983
Daniel Dunbar3c802de2010-07-18 18:38:02 +00002984/// ParseDirectiveMacrosOnOff
2985/// ::= .macros_on
2986/// ::= .macros_off
2987bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
2988 SMLoc DirectiveLoc) {
2989 if (getLexer().isNot(AsmToken::EndOfStatement))
2990 return Error(getLexer().getLoc(),
2991 "unexpected token in '" + Directive + "' directive");
2992
2993 getParser().MacrosEnabled = Directive == ".macros_on";
2994
2995 return false;
2996}
Daniel Dunbard1e3b442010-07-17 02:26:10 +00002997
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00002998/// ParseDirectiveMacro
Rafael Espindola65366442011-06-05 02:43:45 +00002999/// ::= .macro name [parameters]
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003000bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
3001 SMLoc DirectiveLoc) {
3002 StringRef Name;
3003 if (getParser().ParseIdentifier(Name))
3004 return TokError("expected identifier in directive");
3005
Rafael Espindola65366442011-06-05 02:43:45 +00003006 std::vector<StringRef> Parameters;
3007 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3008 for(;;) {
3009 StringRef Parameter;
3010 if (getParser().ParseIdentifier(Parameter))
3011 return TokError("expected identifier in directive");
3012 Parameters.push_back(Parameter);
3013
3014 if (getLexer().isNot(AsmToken::Comma))
3015 break;
3016 Lex();
3017 }
3018 }
3019
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003020 if (getLexer().isNot(AsmToken::EndOfStatement))
3021 return TokError("unexpected token in '.macro' directive");
3022
3023 // Eat the end of statement.
3024 Lex();
3025
3026 AsmToken EndToken, StartToken = getTok();
3027
3028 // Lex the macro definition.
3029 for (;;) {
3030 // Check whether we have reached the end of the file.
3031 if (getLexer().is(AsmToken::Eof))
3032 return Error(DirectiveLoc, "no matching '.endmacro' in definition");
3033
3034 // Otherwise, check whether we have reach the .endmacro.
3035 if (getLexer().is(AsmToken::Identifier) &&
3036 (getTok().getIdentifier() == ".endm" ||
3037 getTok().getIdentifier() == ".endmacro")) {
3038 EndToken = getTok();
3039 Lex();
3040 if (getLexer().isNot(AsmToken::EndOfStatement))
3041 return TokError("unexpected token in '" + EndToken.getIdentifier() +
3042 "' directive");
3043 break;
3044 }
3045
3046 // Otherwise, scan til the end of the statement.
3047 getParser().EatToEndOfStatement();
3048 }
3049
3050 if (getParser().MacroMap.lookup(Name)) {
3051 return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
3052 }
3053
3054 const char *BodyStart = StartToken.getLoc().getPointer();
3055 const char *BodyEnd = EndToken.getLoc().getPointer();
3056 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
Rafael Espindola65366442011-06-05 02:43:45 +00003057 getParser().MacroMap[Name] = new Macro(Name, Body, Parameters);
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003058 return false;
3059}
3060
3061/// ParseDirectiveEndMacro
3062/// ::= .endm
3063/// ::= .endmacro
3064bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
3065 SMLoc DirectiveLoc) {
3066 if (getLexer().isNot(AsmToken::EndOfStatement))
3067 return TokError("unexpected token in '" + Directive + "' directive");
3068
Daniel Dunbarc64a0d72010-07-18 18:54:11 +00003069 // If we are inside a macro instantiation, terminate the current
3070 // instantiation.
3071 if (!getParser().ActiveMacros.empty()) {
3072 getParser().HandleMacroExit();
3073 return false;
3074 }
3075
3076 // Otherwise, this .endmacro is a stray entry in the file; well formed
3077 // .endmacro directives are handled during the macro definition parsing.
Daniel Dunbar6d8cf082010-07-18 18:47:21 +00003078 return TokError("unexpected '" + Directive + "' in file, "
3079 "no current macro definition");
3080}
3081
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003082bool GenericAsmParser::ParseDirectiveLEB128(StringRef DirName, SMLoc) {
Rafael Espindola3ff57092010-11-02 17:22:24 +00003083 getParser().CheckForValidSection();
3084
3085 const MCExpr *Value;
3086
3087 if (getParser().ParseExpression(Value))
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003088 return true;
3089
3090 if (getLexer().isNot(AsmToken::EndOfStatement))
3091 return TokError("unexpected token in directive");
3092
3093 if (DirName[1] == 's')
Rafael Espindola3ff57092010-11-02 17:22:24 +00003094 getStreamer().EmitSLEB128Value(Value);
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003095 else
Rafael Espindola3ff57092010-11-02 17:22:24 +00003096 getStreamer().EmitULEB128Value(Value);
3097
Rafael Espindolab98ac2a2010-09-11 16:45:15 +00003098 return false;
3099}
3100
3101
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003102/// \brief Create an MCAsmParser instance.
Jim Grosbach1b84cce2011-08-16 18:33:49 +00003103MCAsmParser *llvm::createMCAsmParser(SourceMgr &SM,
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003104 MCContext &C, MCStreamer &Out,
3105 const MCAsmInfo &MAI) {
Jim Grosbach1b84cce2011-08-16 18:33:49 +00003106 return new AsmParser(SM, C, Out, MAI);
Daniel Dunbard1e3b442010-07-17 02:26:10 +00003107}