31a09a967c60769ba3126e734ab79abb393d73c9
[oota-llvm.git] / lib / MC / MCParser / AsmParser.cpp
1 //===- 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
14 #include "llvm/ADT/APFloat.h"
15 #include "llvm/ADT/SmallString.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/ADT/StringMap.h"
18 #include "llvm/ADT/Twine.h"
19 #include "llvm/MC/MCAsmInfo.h"
20 #include "llvm/MC/MCContext.h"
21 #include "llvm/MC/MCDwarf.h"
22 #include "llvm/MC/MCExpr.h"
23 #include "llvm/MC/MCInstPrinter.h"
24 #include "llvm/MC/MCInstrInfo.h"
25 #include "llvm/MC/MCParser/AsmCond.h"
26 #include "llvm/MC/MCParser/AsmLexer.h"
27 #include "llvm/MC/MCParser/MCAsmParser.h"
28 #include "llvm/MC/MCParser/MCParsedAsmOperand.h"
29 #include "llvm/MC/MCRegisterInfo.h"
30 #include "llvm/MC/MCSectionMachO.h"
31 #include "llvm/MC/MCStreamer.h"
32 #include "llvm/MC/MCSymbol.h"
33 #include "llvm/MC/MCTargetAsmParser.h"
34 #include "llvm/Support/CommandLine.h"
35 #include "llvm/Support/ErrorHandling.h"
36 #include "llvm/Support/MathExtras.h"
37 #include "llvm/Support/MemoryBuffer.h"
38 #include "llvm/Support/SourceMgr.h"
39 #include "llvm/Support/raw_ostream.h"
40 #include <cctype>
41 #include <set>
42 #include <string>
43 #include <vector>
44 using namespace llvm;
45
46 static cl::opt<bool>
47 FatalAssemblerWarnings("fatal-assembler-warnings",
48                        cl::desc("Consider warnings as error"));
49
50 MCAsmParserSemaCallback::~MCAsmParserSemaCallback() {}
51
52 namespace {
53
54 /// \brief Helper types for tracking macro definitions.
55 typedef std::vector<AsmToken> MCAsmMacroArgument;
56 typedef std::vector<MCAsmMacroArgument> MCAsmMacroArguments;
57 typedef std::pair<StringRef, MCAsmMacroArgument> MCAsmMacroParameter;
58 typedef std::vector<MCAsmMacroParameter> MCAsmMacroParameters;
59
60 struct MCAsmMacro {
61   StringRef Name;
62   StringRef Body;
63   MCAsmMacroParameters Parameters;
64
65 public:
66   MCAsmMacro(StringRef N, StringRef B, const MCAsmMacroParameters &P) :
67     Name(N), Body(B), Parameters(P) {}
68
69   MCAsmMacro(const MCAsmMacro& Other)
70     : Name(Other.Name), Body(Other.Body), Parameters(Other.Parameters) {}
71 };
72
73 /// \brief Helper class for storing information about an active macro
74 /// instantiation.
75 struct MacroInstantiation {
76   /// The macro being instantiated.
77   const MCAsmMacro *TheMacro;
78
79   /// The macro instantiation with substitutions.
80   MemoryBuffer *Instantiation;
81
82   /// The location of the instantiation.
83   SMLoc InstantiationLoc;
84
85   /// The buffer where parsing should resume upon instantiation completion.
86   int ExitBuffer;
87
88   /// The location where parsing should resume upon instantiation completion.
89   SMLoc ExitLoc;
90
91 public:
92   MacroInstantiation(const MCAsmMacro *M, SMLoc IL, int EB, SMLoc EL,
93                      MemoryBuffer *I);
94 };
95
96 struct ParseStatementInfo {
97   /// ParsedOperands - The parsed operands from the last parsed statement.
98   SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
99
100   /// Opcode - The opcode from the last parsed instruction.
101   unsigned Opcode;
102
103   /// Error - Was there an error parsing the inline assembly?
104   bool ParseError;
105
106   SmallVectorImpl<AsmRewrite> *AsmRewrites;
107
108   ParseStatementInfo() : Opcode(~0U), ParseError(false), AsmRewrites(0) {}
109   ParseStatementInfo(SmallVectorImpl<AsmRewrite> *rewrites)
110     : Opcode(~0), ParseError(false), AsmRewrites(rewrites) {}
111
112   ~ParseStatementInfo() {
113     // Free any parsed operands.
114     for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
115       delete ParsedOperands[i];
116     ParsedOperands.clear();
117   }
118 };
119
120 /// \brief The concrete assembly parser instance.
121 class AsmParser : public MCAsmParser {
122   AsmParser(const AsmParser &) LLVM_DELETED_FUNCTION;
123   void operator=(const AsmParser &) LLVM_DELETED_FUNCTION;
124 private:
125   AsmLexer Lexer;
126   MCContext &Ctx;
127   MCStreamer &Out;
128   const MCAsmInfo &MAI;
129   SourceMgr &SrcMgr;
130   SourceMgr::DiagHandlerTy SavedDiagHandler;
131   void *SavedDiagContext;
132   MCAsmParserExtension *PlatformParser;
133
134   /// This is the current buffer index we're lexing from as managed by the
135   /// SourceMgr object.
136   int CurBuffer;
137
138   AsmCond TheCondState;
139   std::vector<AsmCond> TheCondStack;
140
141   /// ExtensionDirectiveMap - maps directive names to handler methods in parser
142   /// extensions. Extensions register themselves in this map by calling
143   /// addDirectiveHandler.
144   StringMap<ExtensionDirectiveHandler> ExtensionDirectiveMap;
145
146   /// MacroMap - Map of currently defined macros.
147   StringMap<MCAsmMacro*> MacroMap;
148
149   /// ActiveMacros - Stack of active macro instantiations.
150   std::vector<MacroInstantiation*> ActiveMacros;
151
152   /// MacroLikeBodies - List of bodies of anonymous macros.
153   std::deque<MCAsmMacro> MacroLikeBodies;
154
155   /// Boolean tracking whether macro substitution is enabled.
156   unsigned MacrosEnabledFlag : 1;
157
158   /// Flag tracking whether any errors have been encountered.
159   unsigned HadError : 1;
160
161   /// The values from the last parsed cpp hash file line comment if any.
162   StringRef CppHashFilename;
163   int64_t CppHashLineNumber;
164   SMLoc CppHashLoc;
165   int CppHashBuf;
166   /// When generating dwarf for assembly source files we need to calculate the
167   /// logical line number based on the last parsed cpp hash file line comment
168   /// and current line. Since this is slow and messes up the SourceMgr's
169   /// cache we save the last info we queried with SrcMgr.FindLineNumber().
170   SMLoc LastQueryIDLoc;
171   int LastQueryBuffer;
172   unsigned LastQueryLine;
173
174   /// AssemblerDialect. ~OU means unset value and use value provided by MAI.
175   unsigned AssemblerDialect;
176
177   /// IsDarwin - is Darwin compatibility enabled?
178   bool IsDarwin;
179
180   /// ParsingInlineAsm - Are we parsing ms-style inline assembly?
181   bool ParsingInlineAsm;
182
183 public:
184   AsmParser(SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
185             const MCAsmInfo &MAI);
186   virtual ~AsmParser();
187
188   virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
189
190   virtual void addDirectiveHandler(StringRef Directive,
191                                    ExtensionDirectiveHandler Handler) {
192     ExtensionDirectiveMap[Directive] = Handler;
193   }
194
195 public:
196   /// @name MCAsmParser Interface
197   /// {
198
199   virtual SourceMgr &getSourceManager() { return SrcMgr; }
200   virtual MCAsmLexer &getLexer() { return Lexer; }
201   virtual MCContext &getContext() { return Ctx; }
202   virtual MCStreamer &getStreamer() { return Out; }
203   virtual unsigned getAssemblerDialect() {
204     if (AssemblerDialect == ~0U)
205       return MAI.getAssemblerDialect();
206     else
207       return AssemblerDialect;
208   }
209   virtual void setAssemblerDialect(unsigned i) {
210     AssemblerDialect = i;
211   }
212
213   virtual bool Warning(SMLoc L, const Twine &Msg,
214                        ArrayRef<SMRange> Ranges = None);
215   virtual bool Error(SMLoc L, const Twine &Msg,
216                      ArrayRef<SMRange> Ranges = None);
217
218   virtual const AsmToken &Lex();
219
220   void setParsingInlineAsm(bool V) { ParsingInlineAsm = V; }
221   bool isParsingInlineAsm() { return ParsingInlineAsm; }
222
223   bool parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
224                         unsigned &NumOutputs, unsigned &NumInputs,
225                         SmallVectorImpl<std::pair<void *,bool> > &OpDecls,
226                         SmallVectorImpl<std::string> &Constraints,
227                         SmallVectorImpl<std::string> &Clobbers,
228                         const MCInstrInfo *MII,
229                         const MCInstPrinter *IP,
230                         MCAsmParserSemaCallback &SI);
231
232   bool parseExpression(const MCExpr *&Res);
233   virtual bool parseExpression(const MCExpr *&Res, SMLoc &EndLoc);
234   virtual bool parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
235   virtual bool parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
236   virtual bool parseAbsoluteExpression(int64_t &Res);
237
238   /// parseIdentifier - Parse an identifier or string (as a quoted identifier)
239   /// and set \p Res to the identifier contents.
240   virtual bool parseIdentifier(StringRef &Res);
241   virtual void eatToEndOfStatement();
242
243   virtual void checkForValidSection();
244   /// }
245
246 private:
247
248   bool ParseStatement(ParseStatementInfo &Info);
249   void EatToEndOfLine();
250   bool ParseCppHashLineFilenameComment(const SMLoc &L);
251
252   void CheckForBadMacro(SMLoc DirectiveLoc, StringRef Name, StringRef Body,
253                         MCAsmMacroParameters Parameters);
254   bool expandMacro(raw_svector_ostream &OS, StringRef Body,
255                    const MCAsmMacroParameters &Parameters,
256                    const MCAsmMacroArguments &A,
257                    const SMLoc &L);
258
259   /// \brief Are macros enabled in the parser?
260   bool MacrosEnabled() {return MacrosEnabledFlag;}
261
262   /// \brief Control a flag in the parser that enables or disables macros.
263   void SetMacrosEnabled(bool Flag) {MacrosEnabledFlag = Flag;}
264
265   /// \brief Lookup a previously defined macro.
266   /// \param Name Macro name.
267   /// \returns Pointer to macro. NULL if no such macro was defined.
268   const MCAsmMacro* LookupMacro(StringRef Name);
269
270   /// \brief Define a new macro with the given name and information.
271   void DefineMacro(StringRef Name, const MCAsmMacro& Macro);
272
273   /// \brief Undefine a macro. If no such macro was defined, it's a no-op.
274   void UndefineMacro(StringRef Name);
275
276   /// \brief Are we inside a macro instantiation?
277   bool InsideMacroInstantiation() {return !ActiveMacros.empty();}
278
279   /// \brief Handle entry to macro instantiation.
280   ///
281   /// \param M The macro.
282   /// \param NameLoc Instantiation location.
283   bool HandleMacroEntry(const MCAsmMacro *M, SMLoc NameLoc);
284
285   /// \brief Handle exit from macro instantiation.
286   void HandleMacroExit();
287
288   /// \brief Extract AsmTokens for a macro argument. If the argument delimiter
289   /// is initially unknown, set it to AsmToken::Eof. It will be set to the
290   /// correct delimiter by the method.
291   bool ParseMacroArgument(MCAsmMacroArgument &MA,
292                           AsmToken::TokenKind &ArgumentDelimiter);
293
294   /// \brief Parse all macro arguments for a given macro.
295   bool ParseMacroArguments(const MCAsmMacro *M, MCAsmMacroArguments &A);
296
297   void PrintMacroInstantiations();
298   void PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Msg,
299                     ArrayRef<SMRange> Ranges = None) const {
300     SrcMgr.PrintMessage(Loc, Kind, Msg, Ranges);
301   }
302   static void DiagHandler(const SMDiagnostic &Diag, void *Context);
303
304   /// EnterIncludeFile - Enter the specified file. This returns true on failure.
305   bool EnterIncludeFile(const std::string &Filename);
306   /// ProcessIncbinFile - Process the specified file for the .incbin directive.
307   /// This returns true on failure.
308   bool ProcessIncbinFile(const std::string &Filename);
309
310   /// \brief Reset the current lexer position to that given by \p Loc. The
311   /// current token is not set; clients should ensure Lex() is called
312   /// subsequently.
313   ///
314   /// \param InBuffer If not -1, should be the known buffer id that contains the
315   /// location.
316   void JumpToLoc(SMLoc Loc, int InBuffer=-1);
317
318   /// \brief Parse up to the end of statement and a return the contents from the
319   /// current token until the end of the statement; the current token on exit
320   /// will be either the EndOfStatement or EOF.
321   virtual StringRef parseStringToEndOfStatement();
322
323   /// \brief Parse until the end of a statement or a comma is encountered,
324   /// return the contents from the current token up to the end or comma.
325   StringRef ParseStringToComma();
326
327   bool ParseAssignment(StringRef Name, bool allow_redef,
328                        bool NoDeadStrip = false);
329
330   bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
331   bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
332   bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
333   bool ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc);
334
335   bool ParseRegisterOrRegisterNumber(int64_t &Register, SMLoc DirectiveLoc);
336
337   // Generic (target and platform independent) directive parsing.
338   enum DirectiveKind {
339     DK_NO_DIRECTIVE, // Placeholder
340     DK_SET, DK_EQU, DK_EQUIV, DK_ASCII, DK_ASCIZ, DK_STRING, DK_BYTE, DK_SHORT,
341     DK_VALUE, DK_2BYTE, DK_LONG, DK_INT, DK_4BYTE, DK_QUAD, DK_8BYTE, DK_SINGLE,
342     DK_FLOAT, DK_DOUBLE, DK_ALIGN, DK_ALIGN32, DK_BALIGN, DK_BALIGNW,
343     DK_BALIGNL, DK_P2ALIGN, DK_P2ALIGNW, DK_P2ALIGNL, DK_ORG, DK_FILL, DK_ENDR,
344     DK_BUNDLE_ALIGN_MODE, DK_BUNDLE_LOCK, DK_BUNDLE_UNLOCK,
345     DK_ZERO, DK_EXTERN, DK_GLOBL, DK_GLOBAL,
346     DK_LAZY_REFERENCE, DK_NO_DEAD_STRIP, DK_SYMBOL_RESOLVER, DK_PRIVATE_EXTERN,
347     DK_REFERENCE, DK_WEAK_DEFINITION, DK_WEAK_REFERENCE,
348     DK_WEAK_DEF_CAN_BE_HIDDEN, DK_COMM, DK_COMMON, DK_LCOMM, DK_ABORT,
349     DK_INCLUDE, DK_INCBIN, DK_CODE16, DK_CODE16GCC, DK_REPT, DK_IRP, DK_IRPC,
350     DK_IF, DK_IFB, DK_IFNB, DK_IFC, DK_IFNC, DK_IFDEF, DK_IFNDEF, DK_IFNOTDEF,
351     DK_ELSEIF, DK_ELSE, DK_ENDIF,
352     DK_SPACE, DK_SKIP, DK_FILE, DK_LINE, DK_LOC, DK_STABS,
353     DK_CFI_SECTIONS, DK_CFI_STARTPROC, DK_CFI_ENDPROC, DK_CFI_DEF_CFA,
354     DK_CFI_DEF_CFA_OFFSET, DK_CFI_ADJUST_CFA_OFFSET, DK_CFI_DEF_CFA_REGISTER,
355     DK_CFI_OFFSET, DK_CFI_REL_OFFSET, DK_CFI_PERSONALITY, DK_CFI_LSDA,
356     DK_CFI_REMEMBER_STATE, DK_CFI_RESTORE_STATE, DK_CFI_SAME_VALUE,
357     DK_CFI_RESTORE, DK_CFI_ESCAPE, DK_CFI_SIGNAL_FRAME, DK_CFI_UNDEFINED,
358     DK_CFI_REGISTER,
359     DK_MACROS_ON, DK_MACROS_OFF, DK_MACRO, DK_ENDM, DK_ENDMACRO, DK_PURGEM,
360     DK_SLEB128, DK_ULEB128
361   };
362
363   /// DirectiveKindMap - Maps directive name --> DirectiveKind enum, for
364   /// directives parsed by this class.
365   StringMap<DirectiveKind> DirectiveKindMap;
366
367   // ".ascii", ".asciz", ".string"
368   bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
369   bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
370   bool ParseDirectiveRealValue(const fltSemantics &); // ".single", ...
371   bool ParseDirectiveFill(); // ".fill"
372   bool ParseDirectiveZero(); // ".zero"
373   // ".set", ".equ", ".equiv"
374   bool ParseDirectiveSet(StringRef IDVal, bool allow_redef);
375   bool ParseDirectiveOrg(); // ".org"
376   // ".align{,32}", ".p2align{,w,l}"
377   bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
378
379   // ".file", ".line", ".loc", ".stabs"
380   bool ParseDirectiveFile(SMLoc DirectiveLoc);
381   bool ParseDirectiveLine();
382   bool ParseDirectiveLoc();
383   bool ParseDirectiveStabs();
384
385   // .cfi directives
386   bool ParseDirectiveCFIRegister(SMLoc DirectiveLoc);
387   bool ParseDirectiveCFISections();
388   bool ParseDirectiveCFIStartProc();
389   bool ParseDirectiveCFIEndProc();
390   bool ParseDirectiveCFIDefCfaOffset();
391   bool ParseDirectiveCFIDefCfa(SMLoc DirectiveLoc);
392   bool ParseDirectiveCFIAdjustCfaOffset();
393   bool ParseDirectiveCFIDefCfaRegister(SMLoc DirectiveLoc);
394   bool ParseDirectiveCFIOffset(SMLoc DirectiveLoc);
395   bool ParseDirectiveCFIRelOffset(SMLoc DirectiveLoc);
396   bool ParseDirectiveCFIPersonalityOrLsda(bool IsPersonality);
397   bool ParseDirectiveCFIRememberState();
398   bool ParseDirectiveCFIRestoreState();
399   bool ParseDirectiveCFISameValue(SMLoc DirectiveLoc);
400   bool ParseDirectiveCFIRestore(SMLoc DirectiveLoc);
401   bool ParseDirectiveCFIEscape();
402   bool ParseDirectiveCFISignalFrame();
403   bool ParseDirectiveCFIUndefined(SMLoc DirectiveLoc);
404
405   // macro directives
406   bool ParseDirectivePurgeMacro(SMLoc DirectiveLoc);
407   bool ParseDirectiveEndMacro(StringRef Directive);
408   bool ParseDirectiveMacro(SMLoc DirectiveLoc);
409   bool ParseDirectiveMacrosOnOff(StringRef Directive);
410
411   // ".bundle_align_mode"
412   bool ParseDirectiveBundleAlignMode();
413   // ".bundle_lock"
414   bool ParseDirectiveBundleLock();
415   // ".bundle_unlock"
416   bool ParseDirectiveBundleUnlock();
417
418   // ".space", ".skip"
419   bool ParseDirectiveSpace(StringRef IDVal);
420
421   // .sleb128 (Signed=true) and .uleb128 (Signed=false)
422   bool ParseDirectiveLEB128(bool Signed);
423
424   /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
425   /// accepts a single symbol (which should be a label or an external).
426   bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
427
428   bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
429
430   bool ParseDirectiveAbort(); // ".abort"
431   bool ParseDirectiveInclude(); // ".include"
432   bool ParseDirectiveIncbin(); // ".incbin"
433
434   bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
435   // ".ifb" or ".ifnb", depending on ExpectBlank.
436   bool ParseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank);
437   // ".ifc" or ".ifnc", depending on ExpectEqual.
438   bool ParseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual);
439   // ".ifdef" or ".ifndef", depending on expect_defined
440   bool ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined);
441   bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
442   bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
443   bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
444   virtual bool parseEscapedString(std::string &Data);
445
446   const MCExpr *ApplyModifierToExpr(const MCExpr *E,
447                                     MCSymbolRefExpr::VariantKind Variant);
448
449   // Macro-like directives
450   MCAsmMacro *ParseMacroLikeBody(SMLoc DirectiveLoc);
451   void InstantiateMacroLikeBody(MCAsmMacro *M, SMLoc DirectiveLoc,
452                                 raw_svector_ostream &OS);
453   bool ParseDirectiveRept(SMLoc DirectiveLoc); // ".rept"
454   bool ParseDirectiveIrp(SMLoc DirectiveLoc);  // ".irp"
455   bool ParseDirectiveIrpc(SMLoc DirectiveLoc); // ".irpc"
456   bool ParseDirectiveEndr(SMLoc DirectiveLoc); // ".endr"
457
458   // "_emit" or "__emit"
459   bool ParseDirectiveMSEmit(SMLoc DirectiveLoc, ParseStatementInfo &Info,
460                             size_t Len);
461
462   // "align"
463   bool ParseDirectiveMSAlign(SMLoc DirectiveLoc, ParseStatementInfo &Info);
464
465   void initializeDirectiveKindMap();
466 };
467 }
468
469 namespace llvm {
470
471 extern MCAsmParserExtension *createDarwinAsmParser();
472 extern MCAsmParserExtension *createELFAsmParser();
473 extern MCAsmParserExtension *createCOFFAsmParser();
474
475 }
476
477 enum { DEFAULT_ADDRSPACE = 0 };
478
479 AsmParser::AsmParser(SourceMgr &_SM, MCContext &_Ctx,
480                      MCStreamer &_Out, const MCAsmInfo &_MAI)
481   : Lexer(_MAI), Ctx(_Ctx), Out(_Out), MAI(_MAI), SrcMgr(_SM),
482     PlatformParser(0),
483     CurBuffer(0), MacrosEnabledFlag(true), CppHashLineNumber(0),
484     AssemblerDialect(~0U), IsDarwin(false), ParsingInlineAsm(false) {
485   // Save the old handler.
486   SavedDiagHandler = SrcMgr.getDiagHandler();
487   SavedDiagContext = SrcMgr.getDiagContext();
488   // Set our own handler which calls the saved handler.
489   SrcMgr.setDiagHandler(DiagHandler, this);
490   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
491
492   // Initialize the platform / file format parser.
493   //
494   // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
495   // created.
496   if (_MAI.hasMicrosoftFastStdCallMangling()) {
497     PlatformParser = createCOFFAsmParser();
498     PlatformParser->Initialize(*this);
499   } else if (_MAI.hasSubsectionsViaSymbols()) {
500     PlatformParser = createDarwinAsmParser();
501     PlatformParser->Initialize(*this);
502     IsDarwin = true;
503   } else {
504     PlatformParser = createELFAsmParser();
505     PlatformParser->Initialize(*this);
506   }
507
508   initializeDirectiveKindMap();
509 }
510
511 AsmParser::~AsmParser() {
512   assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
513
514   // Destroy any macros.
515   for (StringMap<MCAsmMacro*>::iterator it = MacroMap.begin(),
516          ie = MacroMap.end(); it != ie; ++it)
517     delete it->getValue();
518
519   delete PlatformParser;
520 }
521
522 void AsmParser::PrintMacroInstantiations() {
523   // Print the active macro instantiation stack.
524   for (std::vector<MacroInstantiation*>::const_reverse_iterator
525          it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
526     PrintMessage((*it)->InstantiationLoc, SourceMgr::DK_Note,
527                  "while in macro instantiation");
528 }
529
530 bool AsmParser::Warning(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
531   if (FatalAssemblerWarnings)
532     return Error(L, Msg, Ranges);
533   PrintMessage(L, SourceMgr::DK_Warning, Msg, Ranges);
534   PrintMacroInstantiations();
535   return false;
536 }
537
538 bool AsmParser::Error(SMLoc L, const Twine &Msg, ArrayRef<SMRange> Ranges) {
539   HadError = true;
540   PrintMessage(L, SourceMgr::DK_Error, Msg, Ranges);
541   PrintMacroInstantiations();
542   return true;
543 }
544
545 bool AsmParser::EnterIncludeFile(const std::string &Filename) {
546   std::string IncludedFile;
547   int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
548   if (NewBuf == -1)
549     return true;
550
551   CurBuffer = NewBuf;
552
553   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
554
555   return false;
556 }
557
558 /// Process the specified .incbin file by searching for it in the include paths
559 /// then just emitting the byte contents of the file to the streamer. This
560 /// returns true on failure.
561 bool AsmParser::ProcessIncbinFile(const std::string &Filename) {
562   std::string IncludedFile;
563   int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
564   if (NewBuf == -1)
565     return true;
566
567   // Pick up the bytes from the file and emit them.
568   getStreamer().EmitBytes(SrcMgr.getMemoryBuffer(NewBuf)->getBuffer());
569   return false;
570 }
571
572 void AsmParser::JumpToLoc(SMLoc Loc, int InBuffer) {
573   if (InBuffer != -1) {
574     CurBuffer = InBuffer;
575   } else {
576     CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
577   }
578   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
579 }
580
581 const AsmToken &AsmParser::Lex() {
582   const AsmToken *tok = &Lexer.Lex();
583
584   if (tok->is(AsmToken::Eof)) {
585     // If this is the end of an included file, pop the parent file off the
586     // include stack.
587     SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
588     if (ParentIncludeLoc != SMLoc()) {
589       JumpToLoc(ParentIncludeLoc);
590       tok = &Lexer.Lex();
591     }
592   }
593
594   if (tok->is(AsmToken::Error))
595     Error(Lexer.getErrLoc(), Lexer.getErr());
596
597   return *tok;
598 }
599
600 bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
601   // Create the initial section, if requested.
602   if (!NoInitialTextSection)
603     Out.InitSections();
604
605   // Prime the lexer.
606   Lex();
607
608   HadError = false;
609   AsmCond StartingCondState = TheCondState;
610
611   // If we are generating dwarf for assembly source files save the initial text
612   // section and generate a .file directive.
613   if (getContext().getGenDwarfForAssembly()) {
614     getContext().setGenDwarfSection(getStreamer().getCurrentSection().first);
615     MCSymbol *SectionStartSym = getContext().CreateTempSymbol();
616     getStreamer().EmitLabel(SectionStartSym);
617     getContext().setGenDwarfSectionStartSym(SectionStartSym);
618     getStreamer().EmitDwarfFileDirective(getContext().nextGenDwarfFileNumber(),
619                                          StringRef(),
620                                          getContext().getMainFileName());
621   }
622
623   // While we have input, parse each statement.
624   while (Lexer.isNot(AsmToken::Eof)) {
625     ParseStatementInfo Info;
626     if (!ParseStatement(Info)) continue;
627
628     // We had an error, validate that one was emitted and recover by skipping to
629     // the next line.
630     assert(HadError && "Parse statement returned an error, but none emitted!");
631     eatToEndOfStatement();
632   }
633
634   if (TheCondState.TheCond != StartingCondState.TheCond ||
635       TheCondState.Ignore != StartingCondState.Ignore)
636     return TokError("unmatched .ifs or .elses");
637
638   // Check to see there are no empty DwarfFile slots.
639   const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles =
640     getContext().getMCDwarfFiles();
641   for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
642     if (!MCDwarfFiles[i])
643       TokError("unassigned file number: " + Twine(i) + " for .file directives");
644   }
645
646   // Check to see that all assembler local symbols were actually defined.
647   // Targets that don't do subsections via symbols may not want this, though,
648   // so conservatively exclude them. Only do this if we're finalizing, though,
649   // as otherwise we won't necessarilly have seen everything yet.
650   if (!NoFinalize && MAI.hasSubsectionsViaSymbols()) {
651     const MCContext::SymbolTable &Symbols = getContext().getSymbols();
652     for (MCContext::SymbolTable::const_iterator i = Symbols.begin(),
653          e = Symbols.end();
654          i != e; ++i) {
655       MCSymbol *Sym = i->getValue();
656       // Variable symbols may not be marked as defined, so check those
657       // explicitly. If we know it's a variable, we have a definition for
658       // the purposes of this check.
659       if (Sym->isTemporary() && !Sym->isVariable() && !Sym->isDefined())
660         // FIXME: We would really like to refer back to where the symbol was
661         // first referenced for a source location. We need to add something
662         // to track that. Currently, we just point to the end of the file.
663         PrintMessage(getLexer().getLoc(), SourceMgr::DK_Error,
664                      "assembler local symbol '" + Sym->getName() +
665                      "' not defined");
666     }
667   }
668
669
670   // Finalize the output stream if there are no errors and if the client wants
671   // us to.
672   if (!HadError && !NoFinalize)
673     Out.Finish();
674
675   return HadError;
676 }
677
678 void AsmParser::checkForValidSection() {
679   if (!ParsingInlineAsm && !getStreamer().getCurrentSection().first) {
680     TokError("expected section directive before assembly directive");
681     Out.InitToTextSection();
682   }
683 }
684
685 /// eatToEndOfStatement - Throw away the rest of the line for testing purposes.
686 void AsmParser::eatToEndOfStatement() {
687   while (Lexer.isNot(AsmToken::EndOfStatement) &&
688          Lexer.isNot(AsmToken::Eof))
689     Lex();
690
691   // Eat EOL.
692   if (Lexer.is(AsmToken::EndOfStatement))
693     Lex();
694 }
695
696 StringRef AsmParser::parseStringToEndOfStatement() {
697   const char *Start = getTok().getLoc().getPointer();
698
699   while (Lexer.isNot(AsmToken::EndOfStatement) &&
700          Lexer.isNot(AsmToken::Eof))
701     Lex();
702
703   const char *End = getTok().getLoc().getPointer();
704   return StringRef(Start, End - Start);
705 }
706
707 StringRef AsmParser::ParseStringToComma() {
708   const char *Start = getTok().getLoc().getPointer();
709
710   while (Lexer.isNot(AsmToken::EndOfStatement) &&
711          Lexer.isNot(AsmToken::Comma) &&
712          Lexer.isNot(AsmToken::Eof))
713     Lex();
714
715   const char *End = getTok().getLoc().getPointer();
716   return StringRef(Start, End - Start);
717 }
718
719 /// ParseParenExpr - Parse a paren expression and return it.
720 /// NOTE: This assumes the leading '(' has already been consumed.
721 ///
722 /// parenexpr ::= expr)
723 ///
724 bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
725   if (parseExpression(Res)) return true;
726   if (Lexer.isNot(AsmToken::RParen))
727     return TokError("expected ')' in parentheses expression");
728   EndLoc = Lexer.getTok().getEndLoc();
729   Lex();
730   return false;
731 }
732
733 /// ParseBracketExpr - Parse a bracket expression and return it.
734 /// NOTE: This assumes the leading '[' has already been consumed.
735 ///
736 /// bracketexpr ::= expr]
737 ///
738 bool AsmParser::ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc) {
739   if (parseExpression(Res)) return true;
740   if (Lexer.isNot(AsmToken::RBrac))
741     return TokError("expected ']' in brackets expression");
742   EndLoc = Lexer.getTok().getEndLoc();
743   Lex();
744   return false;
745 }
746
747 /// ParsePrimaryExpr - Parse a primary expression and return it.
748 ///  primaryexpr ::= (parenexpr
749 ///  primaryexpr ::= symbol
750 ///  primaryexpr ::= number
751 ///  primaryexpr ::= '.'
752 ///  primaryexpr ::= ~,+,- primaryexpr
753 bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
754   SMLoc FirstTokenLoc = getLexer().getLoc();
755   AsmToken::TokenKind FirstTokenKind = Lexer.getKind();
756   switch (FirstTokenKind) {
757   default:
758     return TokError("unknown token in expression");
759   // If we have an error assume that we've already handled it.
760   case AsmToken::Error:
761     return true;
762   case AsmToken::Exclaim:
763     Lex(); // Eat the operator.
764     if (ParsePrimaryExpr(Res, EndLoc))
765       return true;
766     Res = MCUnaryExpr::CreateLNot(Res, getContext());
767     return false;
768   case AsmToken::Dollar:
769   case AsmToken::String:
770   case AsmToken::Identifier: {
771     StringRef Identifier;
772     if (parseIdentifier(Identifier)) {
773       if (FirstTokenKind == AsmToken::Dollar)
774         return Error(FirstTokenLoc, "invalid token in expression");
775       return true;
776     }
777
778     EndLoc = SMLoc::getFromPointer(Identifier.end());
779
780     // This is a symbol reference.
781     std::pair<StringRef, StringRef> Split = Identifier.split('@');
782     MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
783
784     // Lookup the symbol variant if used.
785     MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
786     if (Split.first.size() != Identifier.size()) {
787       Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
788       if (Variant == MCSymbolRefExpr::VK_Invalid) {
789         Variant = MCSymbolRefExpr::VK_None;
790         return TokError("invalid variant '" + Split.second + "'");
791       }
792     }
793
794     // If this is an absolute variable reference, substitute it now to preserve
795     // semantics in the face of reassignment.
796     if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
797       if (Variant)
798         return Error(EndLoc, "unexpected modifier on variable reference");
799
800       Res = Sym->getVariableValue();
801       return false;
802     }
803
804     // Otherwise create a symbol ref.
805     Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
806     return false;
807   }
808   case AsmToken::Integer: {
809     SMLoc Loc = getTok().getLoc();
810     int64_t IntVal = getTok().getIntVal();
811     Res = MCConstantExpr::Create(IntVal, getContext());
812     EndLoc = Lexer.getTok().getEndLoc();
813     Lex(); // Eat token.
814     // Look for 'b' or 'f' following an Integer as a directional label
815     if (Lexer.getKind() == AsmToken::Identifier) {
816       StringRef IDVal = getTok().getString();
817       // Lookup the symbol variant if used.
818       std::pair<StringRef, StringRef> Split = IDVal.split('@');
819       MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
820       if (Split.first.size() != IDVal.size()) {
821         Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
822         if (Variant == MCSymbolRefExpr::VK_Invalid) {
823           Variant = MCSymbolRefExpr::VK_None;
824           return TokError("invalid variant '" + Split.second + "'");
825         }
826         IDVal = Split.first;
827       }
828       if (IDVal == "f" || IDVal == "b"){
829         MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
830                                                       IDVal == "f" ? 1 : 0);
831         Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
832         if (IDVal == "b" && Sym->isUndefined())
833           return Error(Loc, "invalid reference to undefined symbol");
834         EndLoc = Lexer.getTok().getEndLoc();
835         Lex(); // Eat identifier.
836       }
837     }
838     return false;
839   }
840   case AsmToken::Real: {
841     APFloat RealVal(APFloat::IEEEdouble, getTok().getString());
842     uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
843     Res = MCConstantExpr::Create(IntVal, getContext());
844     EndLoc = Lexer.getTok().getEndLoc();
845     Lex(); // Eat token.
846     return false;
847   }
848   case AsmToken::Dot: {
849     // This is a '.' reference, which references the current PC.  Emit a
850     // temporary label to the streamer and refer to it.
851     MCSymbol *Sym = Ctx.CreateTempSymbol();
852     Out.EmitLabel(Sym);
853     Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
854     EndLoc = Lexer.getTok().getEndLoc();
855     Lex(); // Eat identifier.
856     return false;
857   }
858   case AsmToken::LParen:
859     Lex(); // Eat the '('.
860     return ParseParenExpr(Res, EndLoc);
861   case AsmToken::LBrac:
862     if (!PlatformParser->HasBracketExpressions())
863       return TokError("brackets expression not supported on this target");
864     Lex(); // Eat the '['.
865     return ParseBracketExpr(Res, EndLoc);
866   case AsmToken::Minus:
867     Lex(); // Eat the operator.
868     if (ParsePrimaryExpr(Res, EndLoc))
869       return true;
870     Res = MCUnaryExpr::CreateMinus(Res, getContext());
871     return false;
872   case AsmToken::Plus:
873     Lex(); // Eat the operator.
874     if (ParsePrimaryExpr(Res, EndLoc))
875       return true;
876     Res = MCUnaryExpr::CreatePlus(Res, getContext());
877     return false;
878   case AsmToken::Tilde:
879     Lex(); // Eat the operator.
880     if (ParsePrimaryExpr(Res, EndLoc))
881       return true;
882     Res = MCUnaryExpr::CreateNot(Res, getContext());
883     return false;
884   }
885 }
886
887 bool AsmParser::parseExpression(const MCExpr *&Res) {
888   SMLoc EndLoc;
889   return parseExpression(Res, EndLoc);
890 }
891
892 bool AsmParser::parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
893   return ParsePrimaryExpr(Res, EndLoc);
894 }
895
896 const MCExpr *
897 AsmParser::ApplyModifierToExpr(const MCExpr *E,
898                                MCSymbolRefExpr::VariantKind Variant) {
899   // Ask the target implementation about this expression first.
900   const MCExpr *NewE = getTargetParser().applyModifierToExpr(E, Variant, Ctx);
901   if (NewE)
902     return NewE;
903   // Recurse over the given expression, rebuilding it to apply the given variant
904   // if there is exactly one symbol.
905   switch (E->getKind()) {
906   case MCExpr::Target:
907   case MCExpr::Constant:
908     return 0;
909
910   case MCExpr::SymbolRef: {
911     const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
912
913     if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
914       TokError("invalid variant on expression '" +
915                getTok().getIdentifier() + "' (already modified)");
916       return E;
917     }
918
919     return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
920   }
921
922   case MCExpr::Unary: {
923     const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
924     const MCExpr *Sub = ApplyModifierToExpr(UE->getSubExpr(), Variant);
925     if (!Sub)
926       return 0;
927     return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
928   }
929
930   case MCExpr::Binary: {
931     const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
932     const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
933     const MCExpr *RHS = ApplyModifierToExpr(BE->getRHS(), Variant);
934
935     if (!LHS && !RHS)
936       return 0;
937
938     if (!LHS) LHS = BE->getLHS();
939     if (!RHS) RHS = BE->getRHS();
940
941     return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
942   }
943   }
944
945   llvm_unreachable("Invalid expression kind!");
946 }
947
948 /// parseExpression - Parse an expression and return it.
949 ///
950 ///  expr ::= expr &&,|| expr               -> lowest.
951 ///  expr ::= expr |,^,&,! expr
952 ///  expr ::= expr ==,!=,<>,<,<=,>,>= expr
953 ///  expr ::= expr <<,>> expr
954 ///  expr ::= expr +,- expr
955 ///  expr ::= expr *,/,% expr               -> highest.
956 ///  expr ::= primaryexpr
957 ///
958 bool AsmParser::parseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
959   // Parse the expression.
960   Res = 0;
961   if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
962     return true;
963
964   // As a special case, we support 'a op b @ modifier' by rewriting the
965   // expression to include the modifier. This is inefficient, but in general we
966   // expect users to use 'a@modifier op b'.
967   if (Lexer.getKind() == AsmToken::At) {
968     Lex();
969
970     if (Lexer.isNot(AsmToken::Identifier))
971       return TokError("unexpected symbol modifier following '@'");
972
973     MCSymbolRefExpr::VariantKind Variant =
974       MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
975     if (Variant == MCSymbolRefExpr::VK_Invalid)
976       return TokError("invalid variant '" + getTok().getIdentifier() + "'");
977
978     const MCExpr *ModifiedRes = ApplyModifierToExpr(Res, Variant);
979     if (!ModifiedRes) {
980       return TokError("invalid modifier '" + getTok().getIdentifier() +
981                       "' (no symbols present)");
982     }
983
984     Res = ModifiedRes;
985     Lex();
986   }
987
988   // Try to constant fold it up front, if possible.
989   int64_t Value;
990   if (Res->EvaluateAsAbsolute(Value))
991     Res = MCConstantExpr::Create(Value, getContext());
992
993   return false;
994 }
995
996 bool AsmParser::parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
997   Res = 0;
998   return ParseParenExpr(Res, EndLoc) ||
999          ParseBinOpRHS(1, Res, EndLoc);
1000 }
1001
1002 bool AsmParser::parseAbsoluteExpression(int64_t &Res) {
1003   const MCExpr *Expr;
1004
1005   SMLoc StartLoc = Lexer.getLoc();
1006   if (parseExpression(Expr))
1007     return true;
1008
1009   if (!Expr->EvaluateAsAbsolute(Res))
1010     return Error(StartLoc, "expected absolute expression");
1011
1012   return false;
1013 }
1014
1015 static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
1016                                    MCBinaryExpr::Opcode &Kind) {
1017   switch (K) {
1018   default:
1019     return 0;    // not a binop.
1020
1021     // Lowest Precedence: &&, ||
1022   case AsmToken::AmpAmp:
1023     Kind = MCBinaryExpr::LAnd;
1024     return 1;
1025   case AsmToken::PipePipe:
1026     Kind = MCBinaryExpr::LOr;
1027     return 1;
1028
1029
1030     // Low Precedence: |, &, ^
1031     //
1032     // FIXME: gas seems to support '!' as an infix operator?
1033   case AsmToken::Pipe:
1034     Kind = MCBinaryExpr::Or;
1035     return 2;
1036   case AsmToken::Caret:
1037     Kind = MCBinaryExpr::Xor;
1038     return 2;
1039   case AsmToken::Amp:
1040     Kind = MCBinaryExpr::And;
1041     return 2;
1042
1043     // Low Intermediate Precedence: ==, !=, <>, <, <=, >, >=
1044   case AsmToken::EqualEqual:
1045     Kind = MCBinaryExpr::EQ;
1046     return 3;
1047   case AsmToken::ExclaimEqual:
1048   case AsmToken::LessGreater:
1049     Kind = MCBinaryExpr::NE;
1050     return 3;
1051   case AsmToken::Less:
1052     Kind = MCBinaryExpr::LT;
1053     return 3;
1054   case AsmToken::LessEqual:
1055     Kind = MCBinaryExpr::LTE;
1056     return 3;
1057   case AsmToken::Greater:
1058     Kind = MCBinaryExpr::GT;
1059     return 3;
1060   case AsmToken::GreaterEqual:
1061     Kind = MCBinaryExpr::GTE;
1062     return 3;
1063
1064     // Intermediate Precedence: <<, >>
1065   case AsmToken::LessLess:
1066     Kind = MCBinaryExpr::Shl;
1067     return 4;
1068   case AsmToken::GreaterGreater:
1069     Kind = MCBinaryExpr::Shr;
1070     return 4;
1071
1072     // High Intermediate Precedence: +, -
1073   case AsmToken::Plus:
1074     Kind = MCBinaryExpr::Add;
1075     return 5;
1076   case AsmToken::Minus:
1077     Kind = MCBinaryExpr::Sub;
1078     return 5;
1079
1080     // Highest Precedence: *, /, %
1081   case AsmToken::Star:
1082     Kind = MCBinaryExpr::Mul;
1083     return 6;
1084   case AsmToken::Slash:
1085     Kind = MCBinaryExpr::Div;
1086     return 6;
1087   case AsmToken::Percent:
1088     Kind = MCBinaryExpr::Mod;
1089     return 6;
1090   }
1091 }
1092
1093
1094 /// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
1095 /// Res contains the LHS of the expression on input.
1096 bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
1097                               SMLoc &EndLoc) {
1098   while (1) {
1099     MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
1100     unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
1101
1102     // If the next token is lower precedence than we are allowed to eat, return
1103     // successfully with what we ate already.
1104     if (TokPrec < Precedence)
1105       return false;
1106
1107     Lex();
1108
1109     // Eat the next primary expression.
1110     const MCExpr *RHS;
1111     if (ParsePrimaryExpr(RHS, EndLoc)) return true;
1112
1113     // If BinOp binds less tightly with RHS than the operator after RHS, let
1114     // the pending operator take RHS as its LHS.
1115     MCBinaryExpr::Opcode Dummy;
1116     unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
1117     if (TokPrec < NextTokPrec) {
1118       if (ParseBinOpRHS(TokPrec+1, RHS, EndLoc)) return true;
1119     }
1120
1121     // Merge LHS and RHS according to operator.
1122     Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
1123   }
1124 }
1125
1126 /// ParseStatement:
1127 ///   ::= EndOfStatement
1128 ///   ::= Label* Directive ...Operands... EndOfStatement
1129 ///   ::= Label* Identifier OperandList* EndOfStatement
1130 bool AsmParser::ParseStatement(ParseStatementInfo &Info) {
1131   if (Lexer.is(AsmToken::EndOfStatement)) {
1132     Out.AddBlankLine();
1133     Lex();
1134     return false;
1135   }
1136
1137   // Statements always start with an identifier or are a full line comment.
1138   AsmToken ID = getTok();
1139   SMLoc IDLoc = ID.getLoc();
1140   StringRef IDVal;
1141   int64_t LocalLabelVal = -1;
1142   // A full line comment is a '#' as the first token.
1143   if (Lexer.is(AsmToken::Hash))
1144     return ParseCppHashLineFilenameComment(IDLoc);
1145
1146   // Allow an integer followed by a ':' as a directional local label.
1147   if (Lexer.is(AsmToken::Integer)) {
1148     LocalLabelVal = getTok().getIntVal();
1149     if (LocalLabelVal < 0) {
1150       if (!TheCondState.Ignore)
1151         return TokError("unexpected token at start of statement");
1152       IDVal = "";
1153     } else {
1154       IDVal = getTok().getString();
1155       Lex(); // Consume the integer token to be used as an identifier token.
1156       if (Lexer.getKind() != AsmToken::Colon) {
1157         if (!TheCondState.Ignore)
1158           return TokError("unexpected token at start of statement");
1159       }
1160     }
1161   } else if (Lexer.is(AsmToken::Dot)) {
1162     // Treat '.' as a valid identifier in this context.
1163     Lex();
1164     IDVal = ".";
1165   } else if (parseIdentifier(IDVal)) {
1166     if (!TheCondState.Ignore)
1167       return TokError("unexpected token at start of statement");
1168     IDVal = "";
1169   }
1170
1171   // Handle conditional assembly here before checking for skipping.  We
1172   // have to do this so that .endif isn't skipped in a ".if 0" block for
1173   // example.
1174   StringMap<DirectiveKind>::const_iterator DirKindIt =
1175     DirectiveKindMap.find(IDVal);
1176   DirectiveKind DirKind =
1177     (DirKindIt == DirectiveKindMap.end()) ? DK_NO_DIRECTIVE :
1178                                             DirKindIt->getValue();
1179   switch (DirKind) {
1180     default:
1181       break;
1182     case DK_IF:
1183       return ParseDirectiveIf(IDLoc);
1184     case DK_IFB:
1185       return ParseDirectiveIfb(IDLoc, true);
1186     case DK_IFNB:
1187       return ParseDirectiveIfb(IDLoc, false);
1188     case DK_IFC:
1189       return ParseDirectiveIfc(IDLoc, true);
1190     case DK_IFNC:
1191       return ParseDirectiveIfc(IDLoc, false);
1192     case DK_IFDEF:
1193       return ParseDirectiveIfdef(IDLoc, true);
1194     case DK_IFNDEF:
1195     case DK_IFNOTDEF:
1196       return ParseDirectiveIfdef(IDLoc, false);
1197     case DK_ELSEIF:
1198       return ParseDirectiveElseIf(IDLoc);
1199     case DK_ELSE:
1200       return ParseDirectiveElse(IDLoc);
1201     case DK_ENDIF:
1202       return ParseDirectiveEndIf(IDLoc);
1203   }
1204
1205   // Ignore the statement if in the middle of inactive conditional
1206   // (e.g. ".if 0").
1207   if (TheCondState.Ignore) {
1208     eatToEndOfStatement();
1209     return false;
1210   }
1211
1212   // FIXME: Recurse on local labels?
1213
1214   // See what kind of statement we have.
1215   switch (Lexer.getKind()) {
1216   case AsmToken::Colon: {
1217     checkForValidSection();
1218
1219     // identifier ':'   -> Label.
1220     Lex();
1221
1222     // Diagnose attempt to use '.' as a label.
1223     if (IDVal == ".")
1224       return Error(IDLoc, "invalid use of pseudo-symbol '.' as a label");
1225
1226     // Diagnose attempt to use a variable as a label.
1227     //
1228     // FIXME: Diagnostics. Note the location of the definition as a label.
1229     // FIXME: This doesn't diagnose assignment to a symbol which has been
1230     // implicitly marked as external.
1231     MCSymbol *Sym;
1232     if (LocalLabelVal == -1)
1233       Sym = getContext().GetOrCreateSymbol(IDVal);
1234     else
1235       Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
1236     if (!Sym->isUndefined() || Sym->isVariable())
1237       return Error(IDLoc, "invalid symbol redefinition");
1238
1239     // Emit the label.
1240     if (!ParsingInlineAsm)
1241       Out.EmitLabel(Sym);
1242
1243     // If we are generating dwarf for assembly source files then gather the
1244     // info to make a dwarf label entry for this label if needed.
1245     if (getContext().getGenDwarfForAssembly())
1246       MCGenDwarfLabelEntry::Make(Sym, &getStreamer(), getSourceManager(),
1247                                  IDLoc);
1248
1249     // Consume any end of statement token, if present, to avoid spurious
1250     // AddBlankLine calls().
1251     if (Lexer.is(AsmToken::EndOfStatement)) {
1252       Lex();
1253       if (Lexer.is(AsmToken::Eof))
1254         return false;
1255     }
1256
1257     return false;
1258   }
1259
1260   case AsmToken::Equal:
1261     // identifier '=' ... -> assignment statement
1262     Lex();
1263
1264     return ParseAssignment(IDVal, true);
1265
1266   default: // Normal instruction or directive.
1267     break;
1268   }
1269
1270   // If macros are enabled, check to see if this is a macro instantiation.
1271   if (MacrosEnabled())
1272     if (const MCAsmMacro *M = LookupMacro(IDVal)) {
1273       return HandleMacroEntry(M, IDLoc);
1274     }
1275
1276   // Otherwise, we have a normal instruction or directive.
1277
1278   // Directives start with "."
1279   if (IDVal[0] == '.' && IDVal != ".") {
1280     // There are several entities interested in parsing directives:
1281     //
1282     // 1. The target-specific assembly parser. Some directives are target
1283     //    specific or may potentially behave differently on certain targets.
1284     // 2. Asm parser extensions. For example, platform-specific parsers
1285     //    (like the ELF parser) register themselves as extensions.
1286     // 3. The generic directive parser implemented by this class. These are
1287     //    all the directives that behave in a target and platform independent
1288     //    manner, or at least have a default behavior that's shared between
1289     //    all targets and platforms.
1290
1291     // First query the target-specific parser. It will return 'true' if it
1292     // isn't interested in this directive.
1293     if (!getTargetParser().ParseDirective(ID))
1294       return false;
1295
1296     // Next, check the extention directive map to see if any extension has
1297     // registered itself to parse this directive.
1298     std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
1299       ExtensionDirectiveMap.lookup(IDVal);
1300     if (Handler.first)
1301       return (*Handler.second)(Handler.first, IDVal, IDLoc);
1302
1303     // Finally, if no one else is interested in this directive, it must be
1304     // generic and familiar to this class.
1305     switch (DirKind) {
1306       default:
1307         break;
1308       case DK_SET:
1309       case DK_EQU:
1310         return ParseDirectiveSet(IDVal, true);
1311       case DK_EQUIV:
1312         return ParseDirectiveSet(IDVal, false);
1313       case DK_ASCII:
1314         return ParseDirectiveAscii(IDVal, false);
1315       case DK_ASCIZ:
1316       case DK_STRING:
1317         return ParseDirectiveAscii(IDVal, true);
1318       case DK_BYTE:
1319         return ParseDirectiveValue(1);
1320       case DK_SHORT:
1321       case DK_VALUE:
1322       case DK_2BYTE:
1323         return ParseDirectiveValue(2);
1324       case DK_LONG:
1325       case DK_INT:
1326       case DK_4BYTE:
1327         return ParseDirectiveValue(4);
1328       case DK_QUAD:
1329       case DK_8BYTE:
1330         return ParseDirectiveValue(8);
1331       case DK_SINGLE:
1332       case DK_FLOAT:
1333         return ParseDirectiveRealValue(APFloat::IEEEsingle);
1334       case DK_DOUBLE:
1335         return ParseDirectiveRealValue(APFloat::IEEEdouble);
1336       case DK_ALIGN: {
1337         bool IsPow2 = !getContext().getAsmInfo()->getAlignmentIsInBytes();
1338         return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
1339       }
1340       case DK_ALIGN32: {
1341         bool IsPow2 = !getContext().getAsmInfo()->getAlignmentIsInBytes();
1342         return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
1343       }
1344       case DK_BALIGN:
1345         return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
1346       case DK_BALIGNW:
1347         return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
1348       case DK_BALIGNL:
1349         return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
1350       case DK_P2ALIGN:
1351         return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
1352       case DK_P2ALIGNW:
1353         return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
1354       case DK_P2ALIGNL:
1355         return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
1356       case DK_ORG:
1357         return ParseDirectiveOrg();
1358       case DK_FILL:
1359         return ParseDirectiveFill();
1360       case DK_ZERO:
1361         return ParseDirectiveZero();
1362       case DK_EXTERN:
1363         eatToEndOfStatement(); // .extern is the default, ignore it.
1364         return false;
1365       case DK_GLOBL:
1366       case DK_GLOBAL:
1367         return ParseDirectiveSymbolAttribute(MCSA_Global);
1368       case DK_LAZY_REFERENCE:
1369         return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
1370       case DK_NO_DEAD_STRIP:
1371         return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
1372       case DK_SYMBOL_RESOLVER:
1373         return ParseDirectiveSymbolAttribute(MCSA_SymbolResolver);
1374       case DK_PRIVATE_EXTERN:
1375         return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
1376       case DK_REFERENCE:
1377         return ParseDirectiveSymbolAttribute(MCSA_Reference);
1378       case DK_WEAK_DEFINITION:
1379         return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
1380       case DK_WEAK_REFERENCE:
1381         return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
1382       case DK_WEAK_DEF_CAN_BE_HIDDEN:
1383         return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
1384       case DK_COMM:
1385       case DK_COMMON:
1386         return ParseDirectiveComm(/*IsLocal=*/false);
1387       case DK_LCOMM:
1388         return ParseDirectiveComm(/*IsLocal=*/true);
1389       case DK_ABORT:
1390         return ParseDirectiveAbort();
1391       case DK_INCLUDE:
1392         return ParseDirectiveInclude();
1393       case DK_INCBIN:
1394         return ParseDirectiveIncbin();
1395       case DK_CODE16:
1396       case DK_CODE16GCC:
1397         return TokError(Twine(IDVal) + " not supported yet");
1398       case DK_REPT:
1399         return ParseDirectiveRept(IDLoc);
1400       case DK_IRP:
1401         return ParseDirectiveIrp(IDLoc);
1402       case DK_IRPC:
1403         return ParseDirectiveIrpc(IDLoc);
1404       case DK_ENDR:
1405         return ParseDirectiveEndr(IDLoc);
1406       case DK_BUNDLE_ALIGN_MODE:
1407         return ParseDirectiveBundleAlignMode();
1408       case DK_BUNDLE_LOCK:
1409         return ParseDirectiveBundleLock();
1410       case DK_BUNDLE_UNLOCK:
1411         return ParseDirectiveBundleUnlock();
1412       case DK_SLEB128:
1413         return ParseDirectiveLEB128(true);
1414       case DK_ULEB128:
1415         return ParseDirectiveLEB128(false);
1416       case DK_SPACE:
1417       case DK_SKIP:
1418         return ParseDirectiveSpace(IDVal);
1419       case DK_FILE:
1420         return ParseDirectiveFile(IDLoc);
1421       case DK_LINE:
1422         return ParseDirectiveLine();
1423       case DK_LOC:
1424         return ParseDirectiveLoc();
1425       case DK_STABS:
1426         return ParseDirectiveStabs();
1427       case DK_CFI_SECTIONS:
1428         return ParseDirectiveCFISections();
1429       case DK_CFI_STARTPROC:
1430         return ParseDirectiveCFIStartProc();
1431       case DK_CFI_ENDPROC:
1432         return ParseDirectiveCFIEndProc();
1433       case DK_CFI_DEF_CFA:
1434         return ParseDirectiveCFIDefCfa(IDLoc);
1435       case DK_CFI_DEF_CFA_OFFSET:
1436         return ParseDirectiveCFIDefCfaOffset();
1437       case DK_CFI_ADJUST_CFA_OFFSET:
1438         return ParseDirectiveCFIAdjustCfaOffset();
1439       case DK_CFI_DEF_CFA_REGISTER:
1440         return ParseDirectiveCFIDefCfaRegister(IDLoc);
1441       case DK_CFI_OFFSET:
1442         return ParseDirectiveCFIOffset(IDLoc);
1443       case DK_CFI_REL_OFFSET:
1444         return ParseDirectiveCFIRelOffset(IDLoc);
1445       case DK_CFI_PERSONALITY:
1446         return ParseDirectiveCFIPersonalityOrLsda(true);
1447       case DK_CFI_LSDA:
1448         return ParseDirectiveCFIPersonalityOrLsda(false);
1449       case DK_CFI_REMEMBER_STATE:
1450         return ParseDirectiveCFIRememberState();
1451       case DK_CFI_RESTORE_STATE:
1452         return ParseDirectiveCFIRestoreState();
1453       case DK_CFI_SAME_VALUE:
1454         return ParseDirectiveCFISameValue(IDLoc);
1455       case DK_CFI_RESTORE:
1456         return ParseDirectiveCFIRestore(IDLoc);
1457       case DK_CFI_ESCAPE:
1458         return ParseDirectiveCFIEscape();
1459       case DK_CFI_SIGNAL_FRAME:
1460         return ParseDirectiveCFISignalFrame();
1461       case DK_CFI_UNDEFINED:
1462         return ParseDirectiveCFIUndefined(IDLoc);
1463       case DK_CFI_REGISTER:
1464         return ParseDirectiveCFIRegister(IDLoc);
1465       case DK_MACROS_ON:
1466       case DK_MACROS_OFF:
1467         return ParseDirectiveMacrosOnOff(IDVal);
1468       case DK_MACRO:
1469         return ParseDirectiveMacro(IDLoc);
1470       case DK_ENDM:
1471       case DK_ENDMACRO:
1472         return ParseDirectiveEndMacro(IDVal);
1473       case DK_PURGEM:
1474         return ParseDirectivePurgeMacro(IDLoc);
1475     }
1476
1477     return Error(IDLoc, "unknown directive");
1478   }
1479
1480   // __asm _emit or __asm __emit
1481   if (ParsingInlineAsm && (IDVal == "_emit" || IDVal == "__emit" ||
1482                            IDVal == "_EMIT" || IDVal == "__EMIT"))
1483     return ParseDirectiveMSEmit(IDLoc, Info, IDVal.size());
1484
1485   // __asm align
1486   if (ParsingInlineAsm && (IDVal == "align" || IDVal == "ALIGN"))
1487     return ParseDirectiveMSAlign(IDLoc, Info);
1488
1489   checkForValidSection();
1490
1491   // Canonicalize the opcode to lower case.
1492   std::string OpcodeStr = IDVal.lower();
1493   ParseInstructionInfo IInfo(Info.AsmRewrites);
1494   bool HadError = getTargetParser().ParseInstruction(IInfo, OpcodeStr,
1495                                                      IDLoc,
1496                                                      Info.ParsedOperands);
1497   Info.ParseError = HadError;
1498
1499   // Dump the parsed representation, if requested.
1500   if (getShowParsedOperands()) {
1501     SmallString<256> Str;
1502     raw_svector_ostream OS(Str);
1503     OS << "parsed instruction: [";
1504     for (unsigned i = 0; i != Info.ParsedOperands.size(); ++i) {
1505       if (i != 0)
1506         OS << ", ";
1507       Info.ParsedOperands[i]->print(OS);
1508     }
1509     OS << "]";
1510
1511     PrintMessage(IDLoc, SourceMgr::DK_Note, OS.str());
1512   }
1513
1514   // If we are generating dwarf for assembly source files and the current
1515   // section is the initial text section then generate a .loc directive for
1516   // the instruction.
1517   if (!HadError && getContext().getGenDwarfForAssembly() &&
1518       getContext().getGenDwarfSection() ==
1519       getStreamer().getCurrentSection().first) {
1520
1521     unsigned Line = SrcMgr.FindLineNumber(IDLoc, CurBuffer);
1522
1523     // If we previously parsed a cpp hash file line comment then make sure the
1524     // current Dwarf File is for the CppHashFilename if not then emit the
1525     // Dwarf File table for it and adjust the line number for the .loc.
1526     const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles =
1527       getContext().getMCDwarfFiles();
1528     if (CppHashFilename.size() != 0) {
1529       if (MCDwarfFiles[getContext().getGenDwarfFileNumber()]->getName() !=
1530           CppHashFilename)
1531         getStreamer().EmitDwarfFileDirective(
1532           getContext().nextGenDwarfFileNumber(), StringRef(), CppHashFilename);
1533
1534        // Since SrcMgr.FindLineNumber() is slow and messes up the SourceMgr's
1535        // cache with the different Loc from the call above we save the last
1536        // info we queried here with SrcMgr.FindLineNumber().
1537        unsigned CppHashLocLineNo;
1538        if (LastQueryIDLoc == CppHashLoc && LastQueryBuffer == CppHashBuf)
1539          CppHashLocLineNo = LastQueryLine;
1540        else {
1541          CppHashLocLineNo = SrcMgr.FindLineNumber(CppHashLoc, CppHashBuf);
1542          LastQueryLine = CppHashLocLineNo;
1543          LastQueryIDLoc = CppHashLoc;
1544          LastQueryBuffer = CppHashBuf;
1545        }
1546        Line = CppHashLineNumber - 1 + (Line - CppHashLocLineNo);
1547     }
1548
1549     getStreamer().EmitDwarfLocDirective(getContext().getGenDwarfFileNumber(),
1550                                         Line, 0, DWARF2_LINE_DEFAULT_IS_STMT ?
1551                                         DWARF2_FLAG_IS_STMT : 0, 0, 0,
1552                                         StringRef());
1553   }
1554
1555   // If parsing succeeded, match the instruction.
1556   if (!HadError) {
1557     unsigned ErrorInfo;
1558     HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, Info.Opcode,
1559                                                          Info.ParsedOperands,
1560                                                          Out, ErrorInfo,
1561                                                          ParsingInlineAsm);
1562   }
1563
1564   // Don't skip the rest of the line, the instruction parser is responsible for
1565   // that.
1566   return false;
1567 }
1568
1569 /// EatToEndOfLine uses the Lexer to eat the characters to the end of the line
1570 /// since they may not be able to be tokenized to get to the end of line token.
1571 void AsmParser::EatToEndOfLine() {
1572   if (!Lexer.is(AsmToken::EndOfStatement))
1573     Lexer.LexUntilEndOfLine();
1574  // Eat EOL.
1575  Lex();
1576 }
1577
1578 /// ParseCppHashLineFilenameComment as this:
1579 ///   ::= # number "filename"
1580 /// or just as a full line comment if it doesn't have a number and a string.
1581 bool AsmParser::ParseCppHashLineFilenameComment(const SMLoc &L) {
1582   Lex(); // Eat the hash token.
1583
1584   if (getLexer().isNot(AsmToken::Integer)) {
1585     // Consume the line since in cases it is not a well-formed line directive,
1586     // as if were simply a full line comment.
1587     EatToEndOfLine();
1588     return false;
1589   }
1590
1591   int64_t LineNumber = getTok().getIntVal();
1592   Lex();
1593
1594   if (getLexer().isNot(AsmToken::String)) {
1595     EatToEndOfLine();
1596     return false;
1597   }
1598
1599   StringRef Filename = getTok().getString();
1600   // Get rid of the enclosing quotes.
1601   Filename = Filename.substr(1, Filename.size()-2);
1602
1603   // Save the SMLoc, Filename and LineNumber for later use by diagnostics.
1604   CppHashLoc = L;
1605   CppHashFilename = Filename;
1606   CppHashLineNumber = LineNumber;
1607   CppHashBuf = CurBuffer;
1608
1609   // Ignore any trailing characters, they're just comment.
1610   EatToEndOfLine();
1611   return false;
1612 }
1613
1614 /// DiagHandler - will use the last parsed cpp hash line filename comment
1615 /// for the Filename and LineNo if any in the diagnostic.
1616 void AsmParser::DiagHandler(const SMDiagnostic &Diag, void *Context) {
1617   const AsmParser *Parser = static_cast<const AsmParser*>(Context);
1618   raw_ostream &OS = errs();
1619
1620   const SourceMgr &DiagSrcMgr = *Diag.getSourceMgr();
1621   const SMLoc &DiagLoc = Diag.getLoc();
1622   int DiagBuf = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
1623   int CppHashBuf = Parser->SrcMgr.FindBufferContainingLoc(Parser->CppHashLoc);
1624
1625   // Like SourceMgr::PrintMessage() we need to print the include stack if any
1626   // before printing the message.
1627   int DiagCurBuffer = DiagSrcMgr.FindBufferContainingLoc(DiagLoc);
1628   if (!Parser->SavedDiagHandler && DiagCurBuffer > 0) {
1629      SMLoc ParentIncludeLoc = DiagSrcMgr.getParentIncludeLoc(DiagCurBuffer);
1630      DiagSrcMgr.PrintIncludeStack(ParentIncludeLoc, OS);
1631   }
1632
1633   // If we have not parsed a cpp hash line filename comment or the source
1634   // manager changed or buffer changed (like in a nested include) then just
1635   // print the normal diagnostic using its Filename and LineNo.
1636   if (!Parser->CppHashLineNumber ||
1637       &DiagSrcMgr != &Parser->SrcMgr ||
1638       DiagBuf != CppHashBuf) {
1639     if (Parser->SavedDiagHandler)
1640       Parser->SavedDiagHandler(Diag, Parser->SavedDiagContext);
1641     else
1642       Diag.print(0, OS);
1643     return;
1644   }
1645
1646   // Use the CppHashFilename and calculate a line number based on the
1647   // CppHashLoc and CppHashLineNumber relative to this Diag's SMLoc for
1648   // the diagnostic.
1649   const std::string Filename = Parser->CppHashFilename;
1650
1651   int DiagLocLineNo = DiagSrcMgr.FindLineNumber(DiagLoc, DiagBuf);
1652   int CppHashLocLineNo =
1653       Parser->SrcMgr.FindLineNumber(Parser->CppHashLoc, CppHashBuf);
1654   int LineNo = Parser->CppHashLineNumber - 1 +
1655                (DiagLocLineNo - CppHashLocLineNo);
1656
1657   SMDiagnostic NewDiag(*Diag.getSourceMgr(), Diag.getLoc(),
1658                        Filename, LineNo, Diag.getColumnNo(),
1659                        Diag.getKind(), Diag.getMessage(),
1660                        Diag.getLineContents(), Diag.getRanges());
1661
1662   if (Parser->SavedDiagHandler)
1663     Parser->SavedDiagHandler(NewDiag, Parser->SavedDiagContext);
1664   else
1665     NewDiag.print(0, OS);
1666 }
1667
1668 // FIXME: This is mostly duplicated from the function in AsmLexer.cpp. The
1669 // difference being that that function accepts '@' as part of identifiers and
1670 // we can't do that. AsmLexer.cpp should probably be changed to handle
1671 // '@' as a special case when needed.
1672 static bool isIdentifierChar(char c) {
1673   return isalnum(static_cast<unsigned char>(c)) || c == '_' || c == '$' ||
1674          c == '.';
1675 }
1676
1677 bool AsmParser::expandMacro(raw_svector_ostream &OS, StringRef Body,
1678                             const MCAsmMacroParameters &Parameters,
1679                             const MCAsmMacroArguments &A,
1680                             const SMLoc &L) {
1681   unsigned NParameters = Parameters.size();
1682   if (NParameters != 0 && NParameters != A.size())
1683     return Error(L, "Wrong number of arguments");
1684
1685   // A macro without parameters is handled differently on Darwin:
1686   // gas accepts no arguments and does no substitutions
1687   while (!Body.empty()) {
1688     // Scan for the next substitution.
1689     std::size_t End = Body.size(), Pos = 0;
1690     for (; Pos != End; ++Pos) {
1691       // Check for a substitution or escape.
1692       if (!NParameters) {
1693         // This macro has no parameters, look for $0, $1, etc.
1694         if (Body[Pos] != '$' || Pos + 1 == End)
1695           continue;
1696
1697         char Next = Body[Pos + 1];
1698         if (Next == '$' || Next == 'n' ||
1699             isdigit(static_cast<unsigned char>(Next)))
1700           break;
1701       } else {
1702         // This macro has parameters, look for \foo, \bar, etc.
1703         if (Body[Pos] == '\\' && Pos + 1 != End)
1704           break;
1705       }
1706     }
1707
1708     // Add the prefix.
1709     OS << Body.slice(0, Pos);
1710
1711     // Check if we reached the end.
1712     if (Pos == End)
1713       break;
1714
1715     if (!NParameters) {
1716       switch (Body[Pos+1]) {
1717         // $$ => $
1718       case '$':
1719         OS << '$';
1720         break;
1721
1722         // $n => number of arguments
1723       case 'n':
1724         OS << A.size();
1725         break;
1726
1727         // $[0-9] => argument
1728       default: {
1729         // Missing arguments are ignored.
1730         unsigned Index = Body[Pos+1] - '0';
1731         if (Index >= A.size())
1732           break;
1733
1734         // Otherwise substitute with the token values, with spaces eliminated.
1735         for (MCAsmMacroArgument::const_iterator it = A[Index].begin(),
1736                ie = A[Index].end(); it != ie; ++it)
1737           OS << it->getString();
1738         break;
1739       }
1740       }
1741       Pos += 2;
1742     } else {
1743       unsigned I = Pos + 1;
1744       while (isIdentifierChar(Body[I]) && I + 1 != End)
1745         ++I;
1746
1747       const char *Begin = Body.data() + Pos +1;
1748       StringRef Argument(Begin, I - (Pos +1));
1749       unsigned Index = 0;
1750       for (; Index < NParameters; ++Index)
1751         if (Parameters[Index].first == Argument)
1752           break;
1753
1754       if (Index == NParameters) {
1755           if (Body[Pos+1] == '(' && Body[Pos+2] == ')')
1756             Pos += 3;
1757           else {
1758             OS << '\\' << Argument;
1759             Pos = I;
1760           }
1761       } else {
1762         for (MCAsmMacroArgument::const_iterator it = A[Index].begin(),
1763                ie = A[Index].end(); it != ie; ++it)
1764           if (it->getKind() == AsmToken::String)
1765             OS << it->getStringContents();
1766           else
1767             OS << it->getString();
1768
1769         Pos += 1 + Argument.size();
1770       }
1771     }
1772     // Update the scan point.
1773     Body = Body.substr(Pos);
1774   }
1775
1776   return false;
1777 }
1778
1779 MacroInstantiation::MacroInstantiation(const MCAsmMacro *M, SMLoc IL,
1780                                        int EB, SMLoc EL,
1781                                        MemoryBuffer *I)
1782   : TheMacro(M), Instantiation(I), InstantiationLoc(IL), ExitBuffer(EB),
1783     ExitLoc(EL)
1784 {
1785 }
1786
1787 static bool IsOperator(AsmToken::TokenKind kind)
1788 {
1789   switch (kind)
1790   {
1791     default:
1792       return false;
1793     case AsmToken::Plus:
1794     case AsmToken::Minus:
1795     case AsmToken::Tilde:
1796     case AsmToken::Slash:
1797     case AsmToken::Star:
1798     case AsmToken::Dot:
1799     case AsmToken::Equal:
1800     case AsmToken::EqualEqual:
1801     case AsmToken::Pipe:
1802     case AsmToken::PipePipe:
1803     case AsmToken::Caret:
1804     case AsmToken::Amp:
1805     case AsmToken::AmpAmp:
1806     case AsmToken::Exclaim:
1807     case AsmToken::ExclaimEqual:
1808     case AsmToken::Percent:
1809     case AsmToken::Less:
1810     case AsmToken::LessEqual:
1811     case AsmToken::LessLess:
1812     case AsmToken::LessGreater:
1813     case AsmToken::Greater:
1814     case AsmToken::GreaterEqual:
1815     case AsmToken::GreaterGreater:
1816       return true;
1817   }
1818 }
1819
1820 bool AsmParser::ParseMacroArgument(MCAsmMacroArgument &MA,
1821                                    AsmToken::TokenKind &ArgumentDelimiter) {
1822   unsigned ParenLevel = 0;
1823   unsigned AddTokens = 0;
1824
1825   // gas accepts arguments separated by whitespace, except on Darwin
1826   if (!IsDarwin)
1827     Lexer.setSkipSpace(false);
1828
1829   for (;;) {
1830     if (Lexer.is(AsmToken::Eof) || Lexer.is(AsmToken::Equal)) {
1831       Lexer.setSkipSpace(true);
1832       return TokError("unexpected token in macro instantiation");
1833     }
1834
1835     if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1836       // Spaces and commas cannot be mixed to delimit parameters
1837       if (ArgumentDelimiter == AsmToken::Eof)
1838         ArgumentDelimiter = AsmToken::Comma;
1839       else if (ArgumentDelimiter != AsmToken::Comma) {
1840         Lexer.setSkipSpace(true);
1841         return TokError("expected ' ' for macro argument separator");
1842       }
1843       break;
1844     }
1845
1846     if (Lexer.is(AsmToken::Space)) {
1847       Lex(); // Eat spaces
1848
1849       // Spaces can delimit parameters, but could also be part an expression.
1850       // If the token after a space is an operator, add the token and the next
1851       // one into this argument
1852       if (ArgumentDelimiter == AsmToken::Space ||
1853           ArgumentDelimiter == AsmToken::Eof) {
1854         if (IsOperator(Lexer.getKind())) {
1855           // Check to see whether the token is used as an operator,
1856           // or part of an identifier
1857           const char *NextChar = getTok().getEndLoc().getPointer();
1858           if (*NextChar == ' ')
1859             AddTokens = 2;
1860         }
1861
1862         if (!AddTokens && ParenLevel == 0) {
1863           if (ArgumentDelimiter == AsmToken::Eof &&
1864               !IsOperator(Lexer.getKind()))
1865             ArgumentDelimiter = AsmToken::Space;
1866           break;
1867         }
1868       }
1869     }
1870
1871     // HandleMacroEntry relies on not advancing the lexer here
1872     // to be able to fill in the remaining default parameter values
1873     if (Lexer.is(AsmToken::EndOfStatement))
1874       break;
1875
1876     // Adjust the current parentheses level.
1877     if (Lexer.is(AsmToken::LParen))
1878       ++ParenLevel;
1879     else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1880       --ParenLevel;
1881
1882     // Append the token to the current argument list.
1883     MA.push_back(getTok());
1884     if (AddTokens)
1885       AddTokens--;
1886     Lex();
1887   }
1888
1889   Lexer.setSkipSpace(true);
1890   if (ParenLevel != 0)
1891     return TokError("unbalanced parentheses in macro argument");
1892   return false;
1893 }
1894
1895 // Parse the macro instantiation arguments.
1896 bool AsmParser::ParseMacroArguments(const MCAsmMacro *M,
1897                                     MCAsmMacroArguments &A) {
1898   const unsigned NParameters = M ? M->Parameters.size() : 0;
1899   // Argument delimiter is initially unknown. It will be set by
1900   // ParseMacroArgument()
1901   AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
1902
1903   // Parse two kinds of macro invocations:
1904   // - macros defined without any parameters accept an arbitrary number of them
1905   // - macros defined with parameters accept at most that many of them
1906   for (unsigned Parameter = 0; !NParameters || Parameter < NParameters;
1907        ++Parameter) {
1908     MCAsmMacroArgument MA;
1909
1910     if (ParseMacroArgument(MA, ArgumentDelimiter))
1911       return true;
1912
1913     if (!MA.empty() || !NParameters)
1914       A.push_back(MA);
1915     else if (NParameters) {
1916       if (!M->Parameters[Parameter].second.empty())
1917         A.push_back(M->Parameters[Parameter].second);
1918     }
1919
1920     // At the end of the statement, fill in remaining arguments that have
1921     // default values. If there aren't any, then the next argument is
1922     // required but missing
1923     if (Lexer.is(AsmToken::EndOfStatement)) {
1924       if (NParameters && Parameter < NParameters - 1) {
1925         if (M->Parameters[Parameter + 1].second.empty())
1926           return TokError("macro argument '" +
1927                           Twine(M->Parameters[Parameter + 1].first) +
1928                           "' is missing");
1929         else
1930           continue;
1931       }
1932       return false;
1933     }
1934
1935     if (Lexer.is(AsmToken::Comma))
1936       Lex();
1937   }
1938   return TokError("Too many arguments");
1939 }
1940
1941 const MCAsmMacro* AsmParser::LookupMacro(StringRef Name) {
1942   StringMap<MCAsmMacro*>::iterator I = MacroMap.find(Name);
1943   return (I == MacroMap.end()) ? NULL : I->getValue();
1944 }
1945
1946 void AsmParser::DefineMacro(StringRef Name, const MCAsmMacro& Macro) {
1947   MacroMap[Name] = new MCAsmMacro(Macro);
1948 }
1949
1950 void AsmParser::UndefineMacro(StringRef Name) {
1951   StringMap<MCAsmMacro*>::iterator I = MacroMap.find(Name);
1952   if (I != MacroMap.end()) {
1953     delete I->getValue();
1954     MacroMap.erase(I);
1955   }
1956 }
1957
1958 bool AsmParser::HandleMacroEntry(const MCAsmMacro *M, SMLoc NameLoc) {
1959   // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1960   // this, although we should protect against infinite loops.
1961   if (ActiveMacros.size() == 20)
1962     return TokError("macros cannot be nested more than 20 levels deep");
1963
1964   MCAsmMacroArguments A;
1965   if (ParseMacroArguments(M, A))
1966     return true;
1967
1968   // Remove any trailing empty arguments. Do this after-the-fact as we have
1969   // to keep empty arguments in the middle of the list or positionality
1970   // gets off. e.g.,  "foo 1, , 2" vs. "foo 1, 2,"
1971   while (!A.empty() && A.back().empty())
1972     A.pop_back();
1973
1974   // Macro instantiation is lexical, unfortunately. We construct a new buffer
1975   // to hold the macro body with substitutions.
1976   SmallString<256> Buf;
1977   StringRef Body = M->Body;
1978   raw_svector_ostream OS(Buf);
1979
1980   if (expandMacro(OS, Body, M->Parameters, A, getTok().getLoc()))
1981     return true;
1982
1983   // We include the .endmacro in the buffer as our cue to exit the macro
1984   // instantiation.
1985   OS << ".endmacro\n";
1986
1987   MemoryBuffer *Instantiation =
1988     MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
1989
1990   // Create the macro instantiation object and add to the current macro
1991   // instantiation stack.
1992   MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
1993                                                   CurBuffer,
1994                                                   getTok().getLoc(),
1995                                                   Instantiation);
1996   ActiveMacros.push_back(MI);
1997
1998   // Jump to the macro instantiation and prime the lexer.
1999   CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
2000   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
2001   Lex();
2002
2003   return false;
2004 }
2005
2006 void AsmParser::HandleMacroExit() {
2007   // Jump to the EndOfStatement we should return to, and consume it.
2008   JumpToLoc(ActiveMacros.back()->ExitLoc, ActiveMacros.back()->ExitBuffer);
2009   Lex();
2010
2011   // Pop the instantiation entry.
2012   delete ActiveMacros.back();
2013   ActiveMacros.pop_back();
2014 }
2015
2016 static bool IsUsedIn(const MCSymbol *Sym, const MCExpr *Value) {
2017   switch (Value->getKind()) {
2018   case MCExpr::Binary: {
2019     const MCBinaryExpr *BE = static_cast<const MCBinaryExpr*>(Value);
2020     return IsUsedIn(Sym, BE->getLHS()) || IsUsedIn(Sym, BE->getRHS());
2021   }
2022   case MCExpr::Target:
2023   case MCExpr::Constant:
2024     return false;
2025   case MCExpr::SymbolRef: {
2026     const MCSymbol &S = static_cast<const MCSymbolRefExpr*>(Value)->getSymbol();
2027     if (S.isVariable())
2028       return IsUsedIn(Sym, S.getVariableValue());
2029     return &S == Sym;
2030   }
2031   case MCExpr::Unary:
2032     return IsUsedIn(Sym, static_cast<const MCUnaryExpr*>(Value)->getSubExpr());
2033   }
2034
2035   llvm_unreachable("Unknown expr kind!");
2036 }
2037
2038 bool AsmParser::ParseAssignment(StringRef Name, bool allow_redef,
2039                                 bool NoDeadStrip) {
2040   // FIXME: Use better location, we should use proper tokens.
2041   SMLoc EqualLoc = Lexer.getLoc();
2042
2043   const MCExpr *Value;
2044   if (parseExpression(Value))
2045     return true;
2046
2047   // Note: we don't count b as used in "a = b". This is to allow
2048   // a = b
2049   // b = c
2050
2051   if (Lexer.isNot(AsmToken::EndOfStatement))
2052     return TokError("unexpected token in assignment");
2053
2054   // Error on assignment to '.'.
2055   if (Name == ".") {
2056     return Error(EqualLoc, ("assignment to pseudo-symbol '.' is unsupported "
2057                             "(use '.space' or '.org').)"));
2058   }
2059
2060   // Eat the end of statement marker.
2061   Lex();
2062
2063   // Validate that the LHS is allowed to be a variable (either it has not been
2064   // used as a symbol, or it is an absolute symbol).
2065   MCSymbol *Sym = getContext().LookupSymbol(Name);
2066   if (Sym) {
2067     // Diagnose assignment to a label.
2068     //
2069     // FIXME: Diagnostics. Note the location of the definition as a label.
2070     // FIXME: Diagnose assignment to protected identifier (e.g., register name).
2071     if (IsUsedIn(Sym, Value))
2072       return Error(EqualLoc, "Recursive use of '" + Name + "'");
2073     else if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
2074       ; // Allow redefinitions of undefined symbols only used in directives.
2075     else if (Sym->isVariable() && !Sym->isUsed() && allow_redef)
2076       ; // Allow redefinitions of variables that haven't yet been used.
2077     else if (!Sym->isUndefined() && (!Sym->isVariable() || !allow_redef))
2078       return Error(EqualLoc, "redefinition of '" + Name + "'");
2079     else if (!Sym->isVariable())
2080       return Error(EqualLoc, "invalid assignment to '" + Name + "'");
2081     else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
2082       return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
2083                    Name + "'");
2084
2085     // Don't count these checks as uses.
2086     Sym->setUsed(false);
2087   } else
2088     Sym = getContext().GetOrCreateSymbol(Name);
2089
2090   // FIXME: Handle '.'.
2091
2092   // Do the assignment.
2093   Out.EmitAssignment(Sym, Value);
2094   if (NoDeadStrip)
2095     Out.EmitSymbolAttribute(Sym, MCSA_NoDeadStrip);
2096
2097
2098   return false;
2099 }
2100
2101 /// parseIdentifier:
2102 ///   ::= identifier
2103 ///   ::= string
2104 bool AsmParser::parseIdentifier(StringRef &Res) {
2105   // The assembler has relaxed rules for accepting identifiers, in particular we
2106   // allow things like '.globl $foo', which would normally be separate
2107   // tokens. At this level, we have already lexed so we cannot (currently)
2108   // handle this as a context dependent token, instead we detect adjacent tokens
2109   // and return the combined identifier.
2110   if (Lexer.is(AsmToken::Dollar)) {
2111     SMLoc DollarLoc = getLexer().getLoc();
2112
2113     // Consume the dollar sign, and check for a following identifier.
2114     Lex();
2115     if (Lexer.isNot(AsmToken::Identifier))
2116       return true;
2117
2118     // We have a '$' followed by an identifier, make sure they are adjacent.
2119     if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
2120       return true;
2121
2122     // Construct the joined identifier and consume the token.
2123     Res = StringRef(DollarLoc.getPointer(),
2124                     getTok().getIdentifier().size() + 1);
2125     Lex();
2126     return false;
2127   }
2128
2129   if (Lexer.isNot(AsmToken::Identifier) &&
2130       Lexer.isNot(AsmToken::String))
2131     return true;
2132
2133   Res = getTok().getIdentifier();
2134
2135   Lex(); // Consume the identifier token.
2136
2137   return false;
2138 }
2139
2140 /// ParseDirectiveSet:
2141 ///   ::= .equ identifier ',' expression
2142 ///   ::= .equiv identifier ',' expression
2143 ///   ::= .set identifier ',' expression
2144 bool AsmParser::ParseDirectiveSet(StringRef IDVal, bool allow_redef) {
2145   StringRef Name;
2146
2147   if (parseIdentifier(Name))
2148     return TokError("expected identifier after '" + Twine(IDVal) + "'");
2149
2150   if (getLexer().isNot(AsmToken::Comma))
2151     return TokError("unexpected token in '" + Twine(IDVal) + "'");
2152   Lex();
2153
2154   return ParseAssignment(Name, allow_redef, true);
2155 }
2156
2157 bool AsmParser::parseEscapedString(std::string &Data) {
2158   assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
2159
2160   Data = "";
2161   StringRef Str = getTok().getStringContents();
2162   for (unsigned i = 0, e = Str.size(); i != e; ++i) {
2163     if (Str[i] != '\\') {
2164       Data += Str[i];
2165       continue;
2166     }
2167
2168     // Recognize escaped characters. Note that this escape semantics currently
2169     // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
2170     ++i;
2171     if (i == e)
2172       return TokError("unexpected backslash at end of string");
2173
2174     // Recognize octal sequences.
2175     if ((unsigned) (Str[i] - '0') <= 7) {
2176       // Consume up to three octal characters.
2177       unsigned Value = Str[i] - '0';
2178
2179       if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
2180         ++i;
2181         Value = Value * 8 + (Str[i] - '0');
2182
2183         if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
2184           ++i;
2185           Value = Value * 8 + (Str[i] - '0');
2186         }
2187       }
2188
2189       if (Value > 255)
2190         return TokError("invalid octal escape sequence (out of range)");
2191
2192       Data += (unsigned char) Value;
2193       continue;
2194     }
2195
2196     // Otherwise recognize individual escapes.
2197     switch (Str[i]) {
2198     default:
2199       // Just reject invalid escape sequences for now.
2200       return TokError("invalid escape sequence (unrecognized character)");
2201
2202     case 'b': Data += '\b'; break;
2203     case 'f': Data += '\f'; break;
2204     case 'n': Data += '\n'; break;
2205     case 'r': Data += '\r'; break;
2206     case 't': Data += '\t'; break;
2207     case '"': Data += '"'; break;
2208     case '\\': Data += '\\'; break;
2209     }
2210   }
2211
2212   return false;
2213 }
2214
2215 /// ParseDirectiveAscii:
2216 ///   ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
2217 bool AsmParser::ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
2218   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2219     checkForValidSection();
2220
2221     for (;;) {
2222       if (getLexer().isNot(AsmToken::String))
2223         return TokError("expected string in '" + Twine(IDVal) + "' directive");
2224
2225       std::string Data;
2226       if (parseEscapedString(Data))
2227         return true;
2228
2229       getStreamer().EmitBytes(Data);
2230       if (ZeroTerminated)
2231         getStreamer().EmitBytes(StringRef("\0", 1));
2232
2233       Lex();
2234
2235       if (getLexer().is(AsmToken::EndOfStatement))
2236         break;
2237
2238       if (getLexer().isNot(AsmToken::Comma))
2239         return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
2240       Lex();
2241     }
2242   }
2243
2244   Lex();
2245   return false;
2246 }
2247
2248 /// ParseDirectiveValue
2249 ///  ::= (.byte | .short | ... ) [ expression (, expression)* ]
2250 bool AsmParser::ParseDirectiveValue(unsigned Size) {
2251   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2252     checkForValidSection();
2253
2254     for (;;) {
2255       const MCExpr *Value;
2256       SMLoc ExprLoc = getLexer().getLoc();
2257       if (parseExpression(Value))
2258         return true;
2259
2260       // Special case constant expressions to match code generator.
2261       if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2262         assert(Size <= 8 && "Invalid size");
2263         uint64_t IntValue = MCE->getValue();
2264         if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2265           return Error(ExprLoc, "literal value out of range for directive");
2266         getStreamer().EmitIntValue(IntValue, Size);
2267       } else
2268         getStreamer().EmitValue(Value, Size);
2269
2270       if (getLexer().is(AsmToken::EndOfStatement))
2271         break;
2272
2273       // FIXME: Improve diagnostic.
2274       if (getLexer().isNot(AsmToken::Comma))
2275         return TokError("unexpected token in directive");
2276       Lex();
2277     }
2278   }
2279
2280   Lex();
2281   return false;
2282 }
2283
2284 /// ParseDirectiveRealValue
2285 ///  ::= (.single | .double) [ expression (, expression)* ]
2286 bool AsmParser::ParseDirectiveRealValue(const fltSemantics &Semantics) {
2287   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2288     checkForValidSection();
2289
2290     for (;;) {
2291       // We don't truly support arithmetic on floating point expressions, so we
2292       // have to manually parse unary prefixes.
2293       bool IsNeg = false;
2294       if (getLexer().is(AsmToken::Minus)) {
2295         Lex();
2296         IsNeg = true;
2297       } else if (getLexer().is(AsmToken::Plus))
2298         Lex();
2299
2300       if (getLexer().isNot(AsmToken::Integer) &&
2301           getLexer().isNot(AsmToken::Real) &&
2302           getLexer().isNot(AsmToken::Identifier))
2303         return TokError("unexpected token in directive");
2304
2305       // Convert to an APFloat.
2306       APFloat Value(Semantics);
2307       StringRef IDVal = getTok().getString();
2308       if (getLexer().is(AsmToken::Identifier)) {
2309         if (!IDVal.compare_lower("infinity") || !IDVal.compare_lower("inf"))
2310           Value = APFloat::getInf(Semantics);
2311         else if (!IDVal.compare_lower("nan"))
2312           Value = APFloat::getNaN(Semantics, false, ~0);
2313         else
2314           return TokError("invalid floating point literal");
2315       } else if (Value.convertFromString(IDVal, APFloat::rmNearestTiesToEven) ==
2316           APFloat::opInvalidOp)
2317         return TokError("invalid floating point literal");
2318       if (IsNeg)
2319         Value.changeSign();
2320
2321       // Consume the numeric token.
2322       Lex();
2323
2324       // Emit the value as an integer.
2325       APInt AsInt = Value.bitcastToAPInt();
2326       getStreamer().EmitIntValue(AsInt.getLimitedValue(),
2327                                  AsInt.getBitWidth() / 8);
2328
2329       if (getLexer().is(AsmToken::EndOfStatement))
2330         break;
2331
2332       if (getLexer().isNot(AsmToken::Comma))
2333         return TokError("unexpected token in directive");
2334       Lex();
2335     }
2336   }
2337
2338   Lex();
2339   return false;
2340 }
2341
2342 /// ParseDirectiveZero
2343 ///  ::= .zero expression
2344 bool AsmParser::ParseDirectiveZero() {
2345   checkForValidSection();
2346
2347   int64_t NumBytes;
2348   if (parseAbsoluteExpression(NumBytes))
2349     return true;
2350
2351   int64_t Val = 0;
2352   if (getLexer().is(AsmToken::Comma)) {
2353     Lex();
2354     if (parseAbsoluteExpression(Val))
2355       return true;
2356   }
2357
2358   if (getLexer().isNot(AsmToken::EndOfStatement))
2359     return TokError("unexpected token in '.zero' directive");
2360
2361   Lex();
2362
2363   getStreamer().EmitFill(NumBytes, Val);
2364
2365   return false;
2366 }
2367
2368 /// ParseDirectiveFill
2369 ///  ::= .fill expression , expression , expression
2370 bool AsmParser::ParseDirectiveFill() {
2371   checkForValidSection();
2372
2373   int64_t NumValues;
2374   if (parseAbsoluteExpression(NumValues))
2375     return true;
2376
2377   if (getLexer().isNot(AsmToken::Comma))
2378     return TokError("unexpected token in '.fill' directive");
2379   Lex();
2380
2381   int64_t FillSize;
2382   if (parseAbsoluteExpression(FillSize))
2383     return true;
2384
2385   if (getLexer().isNot(AsmToken::Comma))
2386     return TokError("unexpected token in '.fill' directive");
2387   Lex();
2388
2389   int64_t FillExpr;
2390   if (parseAbsoluteExpression(FillExpr))
2391     return true;
2392
2393   if (getLexer().isNot(AsmToken::EndOfStatement))
2394     return TokError("unexpected token in '.fill' directive");
2395
2396   Lex();
2397
2398   if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
2399     return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
2400
2401   for (uint64_t i = 0, e = NumValues; i != e; ++i)
2402     getStreamer().EmitIntValue(FillExpr, FillSize);
2403
2404   return false;
2405 }
2406
2407 /// ParseDirectiveOrg
2408 ///  ::= .org expression [ , expression ]
2409 bool AsmParser::ParseDirectiveOrg() {
2410   checkForValidSection();
2411
2412   const MCExpr *Offset;
2413   SMLoc Loc = getTok().getLoc();
2414   if (parseExpression(Offset))
2415     return true;
2416
2417   // Parse optional fill expression.
2418   int64_t FillExpr = 0;
2419   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2420     if (getLexer().isNot(AsmToken::Comma))
2421       return TokError("unexpected token in '.org' directive");
2422     Lex();
2423
2424     if (parseAbsoluteExpression(FillExpr))
2425       return true;
2426
2427     if (getLexer().isNot(AsmToken::EndOfStatement))
2428       return TokError("unexpected token in '.org' directive");
2429   }
2430
2431   Lex();
2432
2433   // Only limited forms of relocatable expressions are accepted here, it
2434   // has to be relative to the current section. The streamer will return
2435   // 'true' if the expression wasn't evaluatable.
2436   if (getStreamer().EmitValueToOffset(Offset, FillExpr))
2437     return Error(Loc, "expected assembly-time absolute expression");
2438
2439   return false;
2440 }
2441
2442 /// ParseDirectiveAlign
2443 ///  ::= {.align, ...} expression [ , expression [ , expression ]]
2444 bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
2445   checkForValidSection();
2446
2447   SMLoc AlignmentLoc = getLexer().getLoc();
2448   int64_t Alignment;
2449   if (parseAbsoluteExpression(Alignment))
2450     return true;
2451
2452   SMLoc MaxBytesLoc;
2453   bool HasFillExpr = false;
2454   int64_t FillExpr = 0;
2455   int64_t MaxBytesToFill = 0;
2456   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2457     if (getLexer().isNot(AsmToken::Comma))
2458       return TokError("unexpected token in directive");
2459     Lex();
2460
2461     // The fill expression can be omitted while specifying a maximum number of
2462     // alignment bytes, e.g:
2463     //  .align 3,,4
2464     if (getLexer().isNot(AsmToken::Comma)) {
2465       HasFillExpr = true;
2466       if (parseAbsoluteExpression(FillExpr))
2467         return true;
2468     }
2469
2470     if (getLexer().isNot(AsmToken::EndOfStatement)) {
2471       if (getLexer().isNot(AsmToken::Comma))
2472         return TokError("unexpected token in directive");
2473       Lex();
2474
2475       MaxBytesLoc = getLexer().getLoc();
2476       if (parseAbsoluteExpression(MaxBytesToFill))
2477         return true;
2478
2479       if (getLexer().isNot(AsmToken::EndOfStatement))
2480         return TokError("unexpected token in directive");
2481     }
2482   }
2483
2484   Lex();
2485
2486   if (!HasFillExpr)
2487     FillExpr = 0;
2488
2489   // Compute alignment in bytes.
2490   if (IsPow2) {
2491     // FIXME: Diagnose overflow.
2492     if (Alignment >= 32) {
2493       Error(AlignmentLoc, "invalid alignment value");
2494       Alignment = 31;
2495     }
2496
2497     Alignment = 1ULL << Alignment;
2498   } else {
2499     // Reject alignments that aren't a power of two, for gas compatibility.
2500     if (!isPowerOf2_64(Alignment))
2501       Error(AlignmentLoc, "alignment must be a power of 2");
2502   }
2503
2504   // Diagnose non-sensical max bytes to align.
2505   if (MaxBytesLoc.isValid()) {
2506     if (MaxBytesToFill < 1) {
2507       Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
2508             "many bytes, ignoring maximum bytes expression");
2509       MaxBytesToFill = 0;
2510     }
2511
2512     if (MaxBytesToFill >= Alignment) {
2513       Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
2514               "has no effect");
2515       MaxBytesToFill = 0;
2516     }
2517   }
2518
2519   // Check whether we should use optimal code alignment for this .align
2520   // directive.
2521   bool UseCodeAlign = getStreamer().getCurrentSection().first->UseCodeAlign();
2522   if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
2523       ValueSize == 1 && UseCodeAlign) {
2524     getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
2525   } else {
2526     // FIXME: Target specific behavior about how the "extra" bytes are filled.
2527     getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
2528                                        MaxBytesToFill);
2529   }
2530
2531   return false;
2532 }
2533
2534 /// ParseDirectiveFile
2535 /// ::= .file [number] filename
2536 /// ::= .file number directory filename
2537 bool AsmParser::ParseDirectiveFile(SMLoc DirectiveLoc) {
2538   // FIXME: I'm not sure what this is.
2539   int64_t FileNumber = -1;
2540   SMLoc FileNumberLoc = getLexer().getLoc();
2541   if (getLexer().is(AsmToken::Integer)) {
2542     FileNumber = getTok().getIntVal();
2543     Lex();
2544
2545     if (FileNumber < 1)
2546       return TokError("file number less than one");
2547   }
2548
2549   if (getLexer().isNot(AsmToken::String))
2550     return TokError("unexpected token in '.file' directive");
2551
2552   // Usually the directory and filename together, otherwise just the directory.
2553   StringRef Path = getTok().getString();
2554   Path = Path.substr(1, Path.size()-2);
2555   Lex();
2556
2557   StringRef Directory;
2558   StringRef Filename;
2559   if (getLexer().is(AsmToken::String)) {
2560     if (FileNumber == -1)
2561       return TokError("explicit path specified, but no file number");
2562     Filename = getTok().getString();
2563     Filename = Filename.substr(1, Filename.size()-2);
2564     Directory = Path;
2565     Lex();
2566   } else {
2567     Filename = Path;
2568   }
2569
2570   if (getLexer().isNot(AsmToken::EndOfStatement))
2571     return TokError("unexpected token in '.file' directive");
2572
2573   if (FileNumber == -1)
2574     getStreamer().EmitFileDirective(Filename);
2575   else {
2576     if (getContext().getGenDwarfForAssembly() == true)
2577       Error(DirectiveLoc, "input can't have .file dwarf directives when -g is "
2578                         "used to generate dwarf debug info for assembly code");
2579
2580     if (getStreamer().EmitDwarfFileDirective(FileNumber, Directory, Filename))
2581       Error(FileNumberLoc, "file number already allocated");
2582   }
2583
2584   return false;
2585 }
2586
2587 /// ParseDirectiveLine
2588 /// ::= .line [number]
2589 bool AsmParser::ParseDirectiveLine() {
2590   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2591     if (getLexer().isNot(AsmToken::Integer))
2592       return TokError("unexpected token in '.line' directive");
2593
2594     int64_t LineNumber = getTok().getIntVal();
2595     (void) LineNumber;
2596     Lex();
2597
2598     // FIXME: Do something with the .line.
2599   }
2600
2601   if (getLexer().isNot(AsmToken::EndOfStatement))
2602     return TokError("unexpected token in '.line' directive");
2603
2604   return false;
2605 }
2606
2607 /// ParseDirectiveLoc
2608 /// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
2609 ///                                [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2610 /// The first number is a file number, must have been previously assigned with
2611 /// a .file directive, the second number is the line number and optionally the
2612 /// third number is a column position (zero if not specified).  The remaining
2613 /// optional items are .loc sub-directives.
2614 bool AsmParser::ParseDirectiveLoc() {
2615   if (getLexer().isNot(AsmToken::Integer))
2616     return TokError("unexpected token in '.loc' directive");
2617   int64_t FileNumber = getTok().getIntVal();
2618   if (FileNumber < 1)
2619     return TokError("file number less than one in '.loc' directive");
2620   if (!getContext().isValidDwarfFileNumber(FileNumber))
2621     return TokError("unassigned file number in '.loc' directive");
2622   Lex();
2623
2624   int64_t LineNumber = 0;
2625   if (getLexer().is(AsmToken::Integer)) {
2626     LineNumber = getTok().getIntVal();
2627     if (LineNumber < 1)
2628       return TokError("line number less than one in '.loc' directive");
2629     Lex();
2630   }
2631
2632   int64_t ColumnPos = 0;
2633   if (getLexer().is(AsmToken::Integer)) {
2634     ColumnPos = getTok().getIntVal();
2635     if (ColumnPos < 0)
2636       return TokError("column position less than zero in '.loc' directive");
2637     Lex();
2638   }
2639
2640   unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
2641   unsigned Isa = 0;
2642   int64_t Discriminator = 0;
2643   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2644     for (;;) {
2645       if (getLexer().is(AsmToken::EndOfStatement))
2646         break;
2647
2648       StringRef Name;
2649       SMLoc Loc = getTok().getLoc();
2650       if (parseIdentifier(Name))
2651         return TokError("unexpected token in '.loc' directive");
2652
2653       if (Name == "basic_block")
2654         Flags |= DWARF2_FLAG_BASIC_BLOCK;
2655       else if (Name == "prologue_end")
2656         Flags |= DWARF2_FLAG_PROLOGUE_END;
2657       else if (Name == "epilogue_begin")
2658         Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2659       else if (Name == "is_stmt") {
2660         Loc = getTok().getLoc();
2661         const MCExpr *Value;
2662         if (parseExpression(Value))
2663           return true;
2664         // The expression must be the constant 0 or 1.
2665         if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2666           int Value = MCE->getValue();
2667           if (Value == 0)
2668             Flags &= ~DWARF2_FLAG_IS_STMT;
2669           else if (Value == 1)
2670             Flags |= DWARF2_FLAG_IS_STMT;
2671           else
2672             return Error(Loc, "is_stmt value not 0 or 1");
2673         } else {
2674           return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2675         }
2676       } else if (Name == "isa") {
2677         Loc = getTok().getLoc();
2678         const MCExpr *Value;
2679         if (parseExpression(Value))
2680           return true;
2681         // The expression must be a constant greater or equal to 0.
2682         if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2683           int Value = MCE->getValue();
2684           if (Value < 0)
2685             return Error(Loc, "isa number less than zero");
2686           Isa = Value;
2687         } else {
2688           return Error(Loc, "isa number not a constant value");
2689         }
2690       } else if (Name == "discriminator") {
2691         if (parseAbsoluteExpression(Discriminator))
2692           return true;
2693       } else {
2694         return Error(Loc, "unknown sub-directive in '.loc' directive");
2695       }
2696
2697       if (getLexer().is(AsmToken::EndOfStatement))
2698         break;
2699     }
2700   }
2701
2702   getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,
2703                                       Isa, Discriminator, StringRef());
2704
2705   return false;
2706 }
2707
2708 /// ParseDirectiveStabs
2709 /// ::= .stabs string, number, number, number
2710 bool AsmParser::ParseDirectiveStabs() {
2711   return TokError("unsupported directive '.stabs'");
2712 }
2713
2714 /// ParseDirectiveCFISections
2715 /// ::= .cfi_sections section [, section]
2716 bool AsmParser::ParseDirectiveCFISections() {
2717   StringRef Name;
2718   bool EH = false;
2719   bool Debug = false;
2720
2721   if (parseIdentifier(Name))
2722     return TokError("Expected an identifier");
2723
2724   if (Name == ".eh_frame")
2725     EH = true;
2726   else if (Name == ".debug_frame")
2727     Debug = true;
2728
2729   if (getLexer().is(AsmToken::Comma)) {
2730     Lex();
2731
2732     if (parseIdentifier(Name))
2733       return TokError("Expected an identifier");
2734
2735     if (Name == ".eh_frame")
2736       EH = true;
2737     else if (Name == ".debug_frame")
2738       Debug = true;
2739   }
2740
2741   getStreamer().EmitCFISections(EH, Debug);
2742   return false;
2743 }
2744
2745 /// ParseDirectiveCFIStartProc
2746 /// ::= .cfi_startproc
2747 bool AsmParser::ParseDirectiveCFIStartProc() {
2748   getStreamer().EmitCFIStartProc();
2749   return false;
2750 }
2751
2752 /// ParseDirectiveCFIEndProc
2753 /// ::= .cfi_endproc
2754 bool AsmParser::ParseDirectiveCFIEndProc() {
2755   getStreamer().EmitCFIEndProc();
2756   return false;
2757 }
2758
2759 /// ParseRegisterOrRegisterNumber - parse register name or number.
2760 bool AsmParser::ParseRegisterOrRegisterNumber(int64_t &Register,
2761                                               SMLoc DirectiveLoc) {
2762   unsigned RegNo;
2763
2764   if (getLexer().isNot(AsmToken::Integer)) {
2765     if (getTargetParser().ParseRegister(RegNo, DirectiveLoc, DirectiveLoc))
2766       return true;
2767     Register = getContext().getRegisterInfo()->getDwarfRegNum(RegNo, true);
2768   } else
2769     return parseAbsoluteExpression(Register);
2770
2771   return false;
2772 }
2773
2774 /// ParseDirectiveCFIDefCfa
2775 /// ::= .cfi_def_cfa register,  offset
2776 bool AsmParser::ParseDirectiveCFIDefCfa(SMLoc DirectiveLoc) {
2777   int64_t Register = 0;
2778   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2779     return true;
2780
2781   if (getLexer().isNot(AsmToken::Comma))
2782     return TokError("unexpected token in directive");
2783   Lex();
2784
2785   int64_t Offset = 0;
2786   if (parseAbsoluteExpression(Offset))
2787     return true;
2788
2789   getStreamer().EmitCFIDefCfa(Register, Offset);
2790   return false;
2791 }
2792
2793 /// ParseDirectiveCFIDefCfaOffset
2794 /// ::= .cfi_def_cfa_offset offset
2795 bool AsmParser::ParseDirectiveCFIDefCfaOffset() {
2796   int64_t Offset = 0;
2797   if (parseAbsoluteExpression(Offset))
2798     return true;
2799
2800   getStreamer().EmitCFIDefCfaOffset(Offset);
2801   return false;
2802 }
2803
2804 /// ParseDirectiveCFIRegister
2805 /// ::= .cfi_register register, register
2806 bool AsmParser::ParseDirectiveCFIRegister(SMLoc DirectiveLoc) {
2807   int64_t Register1 = 0;
2808   if (ParseRegisterOrRegisterNumber(Register1, DirectiveLoc))
2809     return true;
2810
2811   if (getLexer().isNot(AsmToken::Comma))
2812     return TokError("unexpected token in directive");
2813   Lex();
2814
2815   int64_t Register2 = 0;
2816   if (ParseRegisterOrRegisterNumber(Register2, DirectiveLoc))
2817     return true;
2818
2819   getStreamer().EmitCFIRegister(Register1, Register2);
2820   return false;
2821 }
2822
2823 /// ParseDirectiveCFIAdjustCfaOffset
2824 /// ::= .cfi_adjust_cfa_offset adjustment
2825 bool AsmParser::ParseDirectiveCFIAdjustCfaOffset() {
2826   int64_t Adjustment = 0;
2827   if (parseAbsoluteExpression(Adjustment))
2828     return true;
2829
2830   getStreamer().EmitCFIAdjustCfaOffset(Adjustment);
2831   return false;
2832 }
2833
2834 /// ParseDirectiveCFIDefCfaRegister
2835 /// ::= .cfi_def_cfa_register register
2836 bool AsmParser::ParseDirectiveCFIDefCfaRegister(SMLoc DirectiveLoc) {
2837   int64_t Register = 0;
2838   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2839     return true;
2840
2841   getStreamer().EmitCFIDefCfaRegister(Register);
2842   return false;
2843 }
2844
2845 /// ParseDirectiveCFIOffset
2846 /// ::= .cfi_offset register, offset
2847 bool AsmParser::ParseDirectiveCFIOffset(SMLoc DirectiveLoc) {
2848   int64_t Register = 0;
2849   int64_t Offset = 0;
2850
2851   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2852     return true;
2853
2854   if (getLexer().isNot(AsmToken::Comma))
2855     return TokError("unexpected token in directive");
2856   Lex();
2857
2858   if (parseAbsoluteExpression(Offset))
2859     return true;
2860
2861   getStreamer().EmitCFIOffset(Register, Offset);
2862   return false;
2863 }
2864
2865 /// ParseDirectiveCFIRelOffset
2866 /// ::= .cfi_rel_offset register, offset
2867 bool AsmParser::ParseDirectiveCFIRelOffset(SMLoc DirectiveLoc) {
2868   int64_t Register = 0;
2869
2870   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2871     return true;
2872
2873   if (getLexer().isNot(AsmToken::Comma))
2874     return TokError("unexpected token in directive");
2875   Lex();
2876
2877   int64_t Offset = 0;
2878   if (parseAbsoluteExpression(Offset))
2879     return true;
2880
2881   getStreamer().EmitCFIRelOffset(Register, Offset);
2882   return false;
2883 }
2884
2885 static bool isValidEncoding(int64_t Encoding) {
2886   if (Encoding & ~0xff)
2887     return false;
2888
2889   if (Encoding == dwarf::DW_EH_PE_omit)
2890     return true;
2891
2892   const unsigned Format = Encoding & 0xf;
2893   if (Format != dwarf::DW_EH_PE_absptr && Format != dwarf::DW_EH_PE_udata2 &&
2894       Format != dwarf::DW_EH_PE_udata4 && Format != dwarf::DW_EH_PE_udata8 &&
2895       Format != dwarf::DW_EH_PE_sdata2 && Format != dwarf::DW_EH_PE_sdata4 &&
2896       Format != dwarf::DW_EH_PE_sdata8 && Format != dwarf::DW_EH_PE_signed)
2897     return false;
2898
2899   const unsigned Application = Encoding & 0x70;
2900   if (Application != dwarf::DW_EH_PE_absptr &&
2901       Application != dwarf::DW_EH_PE_pcrel)
2902     return false;
2903
2904   return true;
2905 }
2906
2907 /// ParseDirectiveCFIPersonalityOrLsda
2908 /// IsPersonality true for cfi_personality, false for cfi_lsda
2909 /// ::= .cfi_personality encoding, [symbol_name]
2910 /// ::= .cfi_lsda encoding, [symbol_name]
2911 bool AsmParser::ParseDirectiveCFIPersonalityOrLsda(bool IsPersonality) {
2912   int64_t Encoding = 0;
2913   if (parseAbsoluteExpression(Encoding))
2914     return true;
2915   if (Encoding == dwarf::DW_EH_PE_omit)
2916     return false;
2917
2918   if (!isValidEncoding(Encoding))
2919     return TokError("unsupported encoding.");
2920
2921   if (getLexer().isNot(AsmToken::Comma))
2922     return TokError("unexpected token in directive");
2923   Lex();
2924
2925   StringRef Name;
2926   if (parseIdentifier(Name))
2927     return TokError("expected identifier in directive");
2928
2929   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
2930
2931   if (IsPersonality)
2932     getStreamer().EmitCFIPersonality(Sym, Encoding);
2933   else
2934     getStreamer().EmitCFILsda(Sym, Encoding);
2935   return false;
2936 }
2937
2938 /// ParseDirectiveCFIRememberState
2939 /// ::= .cfi_remember_state
2940 bool AsmParser::ParseDirectiveCFIRememberState() {
2941   getStreamer().EmitCFIRememberState();
2942   return false;
2943 }
2944
2945 /// ParseDirectiveCFIRestoreState
2946 /// ::= .cfi_remember_state
2947 bool AsmParser::ParseDirectiveCFIRestoreState() {
2948   getStreamer().EmitCFIRestoreState();
2949   return false;
2950 }
2951
2952 /// ParseDirectiveCFISameValue
2953 /// ::= .cfi_same_value register
2954 bool AsmParser::ParseDirectiveCFISameValue(SMLoc DirectiveLoc) {
2955   int64_t Register = 0;
2956
2957   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2958     return true;
2959
2960   getStreamer().EmitCFISameValue(Register);
2961   return false;
2962 }
2963
2964 /// ParseDirectiveCFIRestore
2965 /// ::= .cfi_restore register
2966 bool AsmParser::ParseDirectiveCFIRestore(SMLoc DirectiveLoc) {
2967   int64_t Register = 0;
2968   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2969     return true;
2970
2971   getStreamer().EmitCFIRestore(Register);
2972   return false;
2973 }
2974
2975 /// ParseDirectiveCFIEscape
2976 /// ::= .cfi_escape expression[,...]
2977 bool AsmParser::ParseDirectiveCFIEscape() {
2978   std::string Values;
2979   int64_t CurrValue;
2980   if (parseAbsoluteExpression(CurrValue))
2981     return true;
2982
2983   Values.push_back((uint8_t)CurrValue);
2984
2985   while (getLexer().is(AsmToken::Comma)) {
2986     Lex();
2987
2988     if (parseAbsoluteExpression(CurrValue))
2989       return true;
2990
2991     Values.push_back((uint8_t)CurrValue);
2992   }
2993
2994   getStreamer().EmitCFIEscape(Values);
2995   return false;
2996 }
2997
2998 /// ParseDirectiveCFISignalFrame
2999 /// ::= .cfi_signal_frame
3000 bool AsmParser::ParseDirectiveCFISignalFrame() {
3001   if (getLexer().isNot(AsmToken::EndOfStatement))
3002     return Error(getLexer().getLoc(),
3003                  "unexpected token in '.cfi_signal_frame'");
3004
3005   getStreamer().EmitCFISignalFrame();
3006   return false;
3007 }
3008
3009 /// ParseDirectiveCFIUndefined
3010 /// ::= .cfi_undefined register
3011 bool AsmParser::ParseDirectiveCFIUndefined(SMLoc DirectiveLoc) {
3012   int64_t Register = 0;
3013
3014   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
3015     return true;
3016
3017   getStreamer().EmitCFIUndefined(Register);
3018   return false;
3019 }
3020
3021 /// ParseDirectiveMacrosOnOff
3022 /// ::= .macros_on
3023 /// ::= .macros_off
3024 bool AsmParser::ParseDirectiveMacrosOnOff(StringRef Directive) {
3025   if (getLexer().isNot(AsmToken::EndOfStatement))
3026     return Error(getLexer().getLoc(),
3027                  "unexpected token in '" + Directive + "' directive");
3028
3029   SetMacrosEnabled(Directive == ".macros_on");
3030   return false;
3031 }
3032
3033 /// ParseDirectiveMacro
3034 /// ::= .macro name [parameters]
3035 bool AsmParser::ParseDirectiveMacro(SMLoc DirectiveLoc) {
3036   StringRef Name;
3037   if (parseIdentifier(Name))
3038     return TokError("expected identifier in '.macro' directive");
3039
3040   MCAsmMacroParameters Parameters;
3041   // Argument delimiter is initially unknown. It will be set by
3042   // ParseMacroArgument()
3043   AsmToken::TokenKind ArgumentDelimiter = AsmToken::Eof;
3044   if (getLexer().isNot(AsmToken::EndOfStatement)) {
3045     for (;;) {
3046       MCAsmMacroParameter Parameter;
3047       if (parseIdentifier(Parameter.first))
3048         return TokError("expected identifier in '.macro' directive");
3049
3050       if (getLexer().is(AsmToken::Equal)) {
3051         Lex();
3052         if (ParseMacroArgument(Parameter.second, ArgumentDelimiter))
3053           return true;
3054       }
3055
3056       Parameters.push_back(Parameter);
3057
3058       if (getLexer().is(AsmToken::Comma))
3059         Lex();
3060       else if (getLexer().is(AsmToken::EndOfStatement))
3061         break;
3062     }
3063   }
3064
3065   // Eat the end of statement.
3066   Lex();
3067
3068   AsmToken EndToken, StartToken = getTok();
3069
3070   // Lex the macro definition.
3071   for (;;) {
3072     // Check whether we have reached the end of the file.
3073     if (getLexer().is(AsmToken::Eof))
3074       return Error(DirectiveLoc, "no matching '.endmacro' in definition");
3075
3076     // Otherwise, check whether we have reach the .endmacro.
3077     if (getLexer().is(AsmToken::Identifier) &&
3078         (getTok().getIdentifier() == ".endm" ||
3079          getTok().getIdentifier() == ".endmacro")) {
3080       EndToken = getTok();
3081       Lex();
3082       if (getLexer().isNot(AsmToken::EndOfStatement))
3083         return TokError("unexpected token in '" + EndToken.getIdentifier() +
3084                         "' directive");
3085       break;
3086     }
3087
3088     // Otherwise, scan til the end of the statement.
3089     eatToEndOfStatement();
3090   }
3091
3092   if (LookupMacro(Name)) {
3093     return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
3094   }
3095
3096   const char *BodyStart = StartToken.getLoc().getPointer();
3097   const char *BodyEnd = EndToken.getLoc().getPointer();
3098   StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
3099   CheckForBadMacro(DirectiveLoc, Name, Body, Parameters);
3100   DefineMacro(Name, MCAsmMacro(Name, Body, Parameters));
3101   return false;
3102 }
3103
3104 /// CheckForBadMacro
3105 ///
3106 /// With the support added for named parameters there may be code out there that
3107 /// is transitioning from positional parameters.  In versions of gas that did
3108 /// not support named parameters they would be ignored on the macro defintion.
3109 /// But to support both styles of parameters this is not possible so if a macro
3110 /// defintion has named parameters but does not use them and has what appears
3111 /// to be positional parameters, strings like $1, $2, ... and $n, then issue a
3112 /// warning that the positional parameter found in body which have no effect.
3113 /// Hoping the developer will either remove the named parameters from the macro
3114 /// definiton so the positional parameters get used if that was what was
3115 /// intended or change the macro to use the named parameters.  It is possible
3116 /// this warning will trigger when the none of the named parameters are used
3117 /// and the strings like $1 are infact to simply to be passed trough unchanged.
3118 void AsmParser::CheckForBadMacro(SMLoc DirectiveLoc, StringRef Name,
3119                                  StringRef Body,
3120                                  MCAsmMacroParameters Parameters) {
3121   // If this macro is not defined with named parameters the warning we are
3122   // checking for here doesn't apply.
3123   unsigned NParameters = Parameters.size();
3124   if (NParameters == 0)
3125     return;
3126
3127   bool NamedParametersFound = false;
3128   bool PositionalParametersFound = false;
3129
3130   // Look at the body of the macro for use of both the named parameters and what
3131   // are likely to be positional parameters.  This is what expandMacro() is
3132   // doing when it finds the parameters in the body.
3133   while (!Body.empty()) {
3134     // Scan for the next possible parameter.
3135     std::size_t End = Body.size(), Pos = 0;
3136     for (; Pos != End; ++Pos) {
3137       // Check for a substitution or escape.
3138       // This macro is defined with parameters, look for \foo, \bar, etc.
3139       if (Body[Pos] == '\\' && Pos + 1 != End)
3140         break;
3141
3142       // This macro should have parameters, but look for $0, $1, ..., $n too.
3143       if (Body[Pos] != '$' || Pos + 1 == End)
3144         continue;
3145       char Next = Body[Pos + 1];
3146       if (Next == '$' || Next == 'n' ||
3147           isdigit(static_cast<unsigned char>(Next)))
3148         break;
3149     }
3150
3151     // Check if we reached the end.
3152     if (Pos == End)
3153       break;
3154
3155     if (Body[Pos] == '$') {
3156       switch (Body[Pos+1]) {
3157         // $$ => $
3158       case '$':
3159         break;
3160
3161         // $n => number of arguments
3162       case 'n':
3163         PositionalParametersFound = true;
3164         break;
3165
3166         // $[0-9] => argument
3167       default: {
3168         PositionalParametersFound = true;
3169         break;
3170         }
3171       }
3172       Pos += 2;
3173     } else {
3174       unsigned I = Pos + 1;
3175       while (isIdentifierChar(Body[I]) && I + 1 != End)
3176         ++I;
3177
3178       const char *Begin = Body.data() + Pos +1;
3179       StringRef Argument(Begin, I - (Pos +1));
3180       unsigned Index = 0;
3181       for (; Index < NParameters; ++Index)
3182         if (Parameters[Index].first == Argument)
3183           break;
3184
3185       if (Index == NParameters) {
3186           if (Body[Pos+1] == '(' && Body[Pos+2] == ')')
3187             Pos += 3;
3188           else {
3189             Pos = I;
3190           }
3191       } else {
3192         NamedParametersFound = true;
3193         Pos += 1 + Argument.size();
3194       }
3195     }
3196     // Update the scan point.
3197     Body = Body.substr(Pos);
3198   }
3199
3200   if (!NamedParametersFound && PositionalParametersFound)
3201     Warning(DirectiveLoc, "macro defined with named parameters which are not "
3202                           "used in macro body, possible positional parameter "
3203                           "found in body which will have no effect");
3204 }
3205
3206 /// ParseDirectiveEndMacro
3207 /// ::= .endm
3208 /// ::= .endmacro
3209 bool AsmParser::ParseDirectiveEndMacro(StringRef Directive) {
3210   if (getLexer().isNot(AsmToken::EndOfStatement))
3211     return TokError("unexpected token in '" + Directive + "' directive");
3212
3213   // If we are inside a macro instantiation, terminate the current
3214   // instantiation.
3215   if (InsideMacroInstantiation()) {
3216     HandleMacroExit();
3217     return false;
3218   }
3219
3220   // Otherwise, this .endmacro is a stray entry in the file; well formed
3221   // .endmacro directives are handled during the macro definition parsing.
3222   return TokError("unexpected '" + Directive + "' in file, "
3223                   "no current macro definition");
3224 }
3225
3226 /// ParseDirectivePurgeMacro
3227 /// ::= .purgem
3228 bool AsmParser::ParseDirectivePurgeMacro(SMLoc DirectiveLoc) {
3229   StringRef Name;
3230   if (parseIdentifier(Name))
3231     return TokError("expected identifier in '.purgem' directive");
3232
3233   if (getLexer().isNot(AsmToken::EndOfStatement))
3234     return TokError("unexpected token in '.purgem' directive");
3235
3236   if (!LookupMacro(Name))
3237     return Error(DirectiveLoc, "macro '" + Name + "' is not defined");
3238
3239   UndefineMacro(Name);
3240   return false;
3241 }
3242
3243 /// ParseDirectiveBundleAlignMode
3244 /// ::= {.bundle_align_mode} expression
3245 bool AsmParser::ParseDirectiveBundleAlignMode() {
3246   checkForValidSection();
3247
3248   // Expect a single argument: an expression that evaluates to a constant
3249   // in the inclusive range 0-30.
3250   SMLoc ExprLoc = getLexer().getLoc();
3251   int64_t AlignSizePow2;
3252   if (parseAbsoluteExpression(AlignSizePow2))
3253     return true;
3254   else if (getLexer().isNot(AsmToken::EndOfStatement))
3255     return TokError("unexpected token after expression in"
3256                     " '.bundle_align_mode' directive");
3257   else if (AlignSizePow2 < 0 || AlignSizePow2 > 30)
3258     return Error(ExprLoc,
3259                  "invalid bundle alignment size (expected between 0 and 30)");
3260
3261   Lex();
3262
3263   // Because of AlignSizePow2's verified range we can safely truncate it to
3264   // unsigned.
3265   getStreamer().EmitBundleAlignMode(static_cast<unsigned>(AlignSizePow2));
3266   return false;
3267 }
3268
3269 /// ParseDirectiveBundleLock
3270 /// ::= {.bundle_lock} [align_to_end]
3271 bool AsmParser::ParseDirectiveBundleLock() {
3272   checkForValidSection();
3273   bool AlignToEnd = false;
3274
3275   if (getLexer().isNot(AsmToken::EndOfStatement)) {
3276     StringRef Option;
3277     SMLoc Loc = getTok().getLoc();
3278     const char *kInvalidOptionError =
3279       "invalid option for '.bundle_lock' directive";
3280
3281     if (parseIdentifier(Option))
3282       return Error(Loc, kInvalidOptionError);
3283
3284     if (Option != "align_to_end")
3285       return Error(Loc, kInvalidOptionError);
3286     else if (getLexer().isNot(AsmToken::EndOfStatement))
3287       return Error(Loc,
3288                    "unexpected token after '.bundle_lock' directive option");
3289     AlignToEnd = true;
3290   }
3291
3292   Lex();
3293
3294   getStreamer().EmitBundleLock(AlignToEnd);
3295   return false;
3296 }
3297
3298 /// ParseDirectiveBundleLock
3299 /// ::= {.bundle_lock}
3300 bool AsmParser::ParseDirectiveBundleUnlock() {
3301   checkForValidSection();
3302
3303   if (getLexer().isNot(AsmToken::EndOfStatement))
3304     return TokError("unexpected token in '.bundle_unlock' directive");
3305   Lex();
3306
3307   getStreamer().EmitBundleUnlock();
3308   return false;
3309 }
3310
3311 /// ParseDirectiveSpace
3312 /// ::= (.skip | .space) expression [ , expression ]
3313 bool AsmParser::ParseDirectiveSpace(StringRef IDVal) {
3314   checkForValidSection();
3315
3316   int64_t NumBytes;
3317   if (parseAbsoluteExpression(NumBytes))
3318     return true;
3319
3320   int64_t FillExpr = 0;
3321   if (getLexer().isNot(AsmToken::EndOfStatement)) {
3322     if (getLexer().isNot(AsmToken::Comma))
3323       return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
3324     Lex();
3325
3326     if (parseAbsoluteExpression(FillExpr))
3327       return true;
3328
3329     if (getLexer().isNot(AsmToken::EndOfStatement))
3330       return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
3331   }
3332
3333   Lex();
3334
3335   if (NumBytes <= 0)
3336     return TokError("invalid number of bytes in '" +
3337                     Twine(IDVal) + "' directive");
3338
3339   // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
3340   getStreamer().EmitFill(NumBytes, FillExpr);
3341
3342   return false;
3343 }
3344
3345 /// ParseDirectiveLEB128
3346 /// ::= (.sleb128 | .uleb128) expression
3347 bool AsmParser::ParseDirectiveLEB128(bool Signed) {
3348   checkForValidSection();
3349   const MCExpr *Value;
3350
3351   if (parseExpression(Value))
3352     return true;
3353
3354   if (getLexer().isNot(AsmToken::EndOfStatement))
3355     return TokError("unexpected token in directive");
3356
3357   if (Signed)
3358     getStreamer().EmitSLEB128Value(Value);
3359   else
3360     getStreamer().EmitULEB128Value(Value);
3361
3362   return false;
3363 }
3364
3365 /// ParseDirectiveSymbolAttribute
3366 ///  ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
3367 bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
3368   if (getLexer().isNot(AsmToken::EndOfStatement)) {
3369     for (;;) {
3370       StringRef Name;
3371       SMLoc Loc = getTok().getLoc();
3372
3373       if (parseIdentifier(Name))
3374         return Error(Loc, "expected identifier in directive");
3375
3376       MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
3377
3378       // Assembler local symbols don't make any sense here. Complain loudly.
3379       if (Sym->isTemporary())
3380         return Error(Loc, "non-local symbol required in directive");
3381
3382       if (!getStreamer().EmitSymbolAttribute(Sym, Attr))
3383         return Error(Loc, "unable to emit symbol attribute");
3384
3385       if (getLexer().is(AsmToken::EndOfStatement))
3386         break;
3387
3388       if (getLexer().isNot(AsmToken::Comma))
3389         return TokError("unexpected token in directive");
3390       Lex();
3391     }
3392   }
3393
3394   Lex();
3395   return false;
3396 }
3397
3398 /// ParseDirectiveComm
3399 ///  ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
3400 bool AsmParser::ParseDirectiveComm(bool IsLocal) {
3401   checkForValidSection();
3402
3403   SMLoc IDLoc = getLexer().getLoc();
3404   StringRef Name;
3405   if (parseIdentifier(Name))
3406     return TokError("expected identifier in directive");
3407
3408   // Handle the identifier as the key symbol.
3409   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
3410
3411   if (getLexer().isNot(AsmToken::Comma))
3412     return TokError("unexpected token in directive");
3413   Lex();
3414
3415   int64_t Size;
3416   SMLoc SizeLoc = getLexer().getLoc();
3417   if (parseAbsoluteExpression(Size))
3418     return true;
3419
3420   int64_t Pow2Alignment = 0;
3421   SMLoc Pow2AlignmentLoc;
3422   if (getLexer().is(AsmToken::Comma)) {
3423     Lex();
3424     Pow2AlignmentLoc = getLexer().getLoc();
3425     if (parseAbsoluteExpression(Pow2Alignment))
3426       return true;
3427
3428     LCOMM::LCOMMType LCOMM = Lexer.getMAI().getLCOMMDirectiveAlignmentType();
3429     if (IsLocal && LCOMM == LCOMM::NoAlignment)
3430       return Error(Pow2AlignmentLoc, "alignment not supported on this target");
3431
3432     // If this target takes alignments in bytes (not log) validate and convert.
3433     if ((!IsLocal && Lexer.getMAI().getCOMMDirectiveAlignmentIsInBytes()) ||
3434         (IsLocal && LCOMM == LCOMM::ByteAlignment)) {
3435       if (!isPowerOf2_64(Pow2Alignment))
3436         return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
3437       Pow2Alignment = Log2_64(Pow2Alignment);
3438     }
3439   }
3440
3441   if (getLexer().isNot(AsmToken::EndOfStatement))
3442     return TokError("unexpected token in '.comm' or '.lcomm' directive");
3443
3444   Lex();
3445
3446   // NOTE: a size of zero for a .comm should create a undefined symbol
3447   // but a size of .lcomm creates a bss symbol of size zero.
3448   if (Size < 0)
3449     return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
3450                  "be less than zero");
3451
3452   // NOTE: The alignment in the directive is a power of 2 value, the assembler
3453   // may internally end up wanting an alignment in bytes.
3454   // FIXME: Diagnose overflow.
3455   if (Pow2Alignment < 0)
3456     return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
3457                  "alignment, can't be less than zero");
3458
3459   if (!Sym->isUndefined())
3460     return Error(IDLoc, "invalid symbol redefinition");
3461
3462   // Create the Symbol as a common or local common with Size and Pow2Alignment
3463   if (IsLocal) {
3464     getStreamer().EmitLocalCommonSymbol(Sym, Size, 1 << Pow2Alignment);
3465     return false;
3466   }
3467
3468   getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
3469   return false;
3470 }
3471
3472 /// ParseDirectiveAbort
3473 ///  ::= .abort [... message ...]
3474 bool AsmParser::ParseDirectiveAbort() {
3475   // FIXME: Use loc from directive.
3476   SMLoc Loc = getLexer().getLoc();
3477
3478   StringRef Str = parseStringToEndOfStatement();
3479   if (getLexer().isNot(AsmToken::EndOfStatement))
3480     return TokError("unexpected token in '.abort' directive");
3481
3482   Lex();
3483
3484   if (Str.empty())
3485     Error(Loc, ".abort detected. Assembly stopping.");
3486   else
3487     Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
3488   // FIXME: Actually abort assembly here.
3489
3490   return false;
3491 }
3492
3493 /// ParseDirectiveInclude
3494 ///  ::= .include "filename"
3495 bool AsmParser::ParseDirectiveInclude() {
3496   if (getLexer().isNot(AsmToken::String))
3497     return TokError("expected string in '.include' directive");
3498
3499   std::string Filename = getTok().getString();
3500   SMLoc IncludeLoc = getLexer().getLoc();
3501   Lex();
3502
3503   if (getLexer().isNot(AsmToken::EndOfStatement))
3504     return TokError("unexpected token in '.include' directive");
3505
3506   // Strip the quotes.
3507   Filename = Filename.substr(1, Filename.size()-2);
3508
3509   // Attempt to switch the lexer to the included file before consuming the end
3510   // of statement to avoid losing it when we switch.
3511   if (EnterIncludeFile(Filename)) {
3512     Error(IncludeLoc, "Could not find include file '" + Filename + "'");
3513     return true;
3514   }
3515
3516   return false;
3517 }
3518
3519 /// ParseDirectiveIncbin
3520 ///  ::= .incbin "filename"
3521 bool AsmParser::ParseDirectiveIncbin() {
3522   if (getLexer().isNot(AsmToken::String))
3523     return TokError("expected string in '.incbin' directive");
3524
3525   std::string Filename = getTok().getString();
3526   SMLoc IncbinLoc = getLexer().getLoc();
3527   Lex();
3528
3529   if (getLexer().isNot(AsmToken::EndOfStatement))
3530     return TokError("unexpected token in '.incbin' directive");
3531
3532   // Strip the quotes.
3533   Filename = Filename.substr(1, Filename.size()-2);
3534
3535   // Attempt to process the included file.
3536   if (ProcessIncbinFile(Filename)) {
3537     Error(IncbinLoc, "Could not find incbin file '" + Filename + "'");
3538     return true;
3539   }
3540
3541   return false;
3542 }
3543
3544 /// ParseDirectiveIf
3545 /// ::= .if expression
3546 bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
3547   TheCondStack.push_back(TheCondState);
3548   TheCondState.TheCond = AsmCond::IfCond;
3549   if (TheCondState.Ignore) {
3550     eatToEndOfStatement();
3551   } else {
3552     int64_t ExprValue;
3553     if (parseAbsoluteExpression(ExprValue))
3554       return true;
3555
3556     if (getLexer().isNot(AsmToken::EndOfStatement))
3557       return TokError("unexpected token in '.if' directive");
3558
3559     Lex();
3560
3561     TheCondState.CondMet = ExprValue;
3562     TheCondState.Ignore = !TheCondState.CondMet;
3563   }
3564
3565   return false;
3566 }
3567
3568 /// ParseDirectiveIfb
3569 /// ::= .ifb string
3570 bool AsmParser::ParseDirectiveIfb(SMLoc DirectiveLoc, bool ExpectBlank) {
3571   TheCondStack.push_back(TheCondState);
3572   TheCondState.TheCond = AsmCond::IfCond;
3573
3574   if (TheCondState.Ignore) {
3575     eatToEndOfStatement();
3576   } else {
3577     StringRef Str = parseStringToEndOfStatement();
3578
3579     if (getLexer().isNot(AsmToken::EndOfStatement))
3580       return TokError("unexpected token in '.ifb' directive");
3581
3582     Lex();
3583
3584     TheCondState.CondMet = ExpectBlank == Str.empty();
3585     TheCondState.Ignore = !TheCondState.CondMet;
3586   }
3587
3588   return false;
3589 }
3590
3591 /// ParseDirectiveIfc
3592 /// ::= .ifc string1, string2
3593 bool AsmParser::ParseDirectiveIfc(SMLoc DirectiveLoc, bool ExpectEqual) {
3594   TheCondStack.push_back(TheCondState);
3595   TheCondState.TheCond = AsmCond::IfCond;
3596
3597   if (TheCondState.Ignore) {
3598     eatToEndOfStatement();
3599   } else {
3600     StringRef Str1 = ParseStringToComma();
3601
3602     if (getLexer().isNot(AsmToken::Comma))
3603       return TokError("unexpected token in '.ifc' directive");
3604
3605     Lex();
3606
3607     StringRef Str2 = parseStringToEndOfStatement();
3608
3609     if (getLexer().isNot(AsmToken::EndOfStatement))
3610       return TokError("unexpected token in '.ifc' directive");
3611
3612     Lex();
3613
3614     TheCondState.CondMet = ExpectEqual == (Str1 == Str2);
3615     TheCondState.Ignore = !TheCondState.CondMet;
3616   }
3617
3618   return false;
3619 }
3620
3621 /// ParseDirectiveIfdef
3622 /// ::= .ifdef symbol
3623 bool AsmParser::ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined) {
3624   StringRef Name;
3625   TheCondStack.push_back(TheCondState);
3626   TheCondState.TheCond = AsmCond::IfCond;
3627
3628   if (TheCondState.Ignore) {
3629     eatToEndOfStatement();
3630   } else {
3631     if (parseIdentifier(Name))
3632       return TokError("expected identifier after '.ifdef'");
3633
3634     Lex();
3635
3636     MCSymbol *Sym = getContext().LookupSymbol(Name);
3637
3638     if (expect_defined)
3639       TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
3640     else
3641       TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
3642     TheCondState.Ignore = !TheCondState.CondMet;
3643   }
3644
3645   return false;
3646 }
3647
3648 /// ParseDirectiveElseIf
3649 /// ::= .elseif expression
3650 bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
3651   if (TheCondState.TheCond != AsmCond::IfCond &&
3652       TheCondState.TheCond != AsmCond::ElseIfCond)
3653     Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
3654                         " an .elseif");
3655   TheCondState.TheCond = AsmCond::ElseIfCond;
3656
3657   bool LastIgnoreState = false;
3658   if (!TheCondStack.empty())
3659     LastIgnoreState = TheCondStack.back().Ignore;
3660   if (LastIgnoreState || TheCondState.CondMet) {
3661     TheCondState.Ignore = true;
3662     eatToEndOfStatement();
3663   } else {
3664     int64_t ExprValue;
3665     if (parseAbsoluteExpression(ExprValue))
3666       return true;
3667
3668     if (getLexer().isNot(AsmToken::EndOfStatement))
3669       return TokError("unexpected token in '.elseif' directive");
3670
3671     Lex();
3672     TheCondState.CondMet = ExprValue;
3673     TheCondState.Ignore = !TheCondState.CondMet;
3674   }
3675
3676   return false;
3677 }
3678
3679 /// ParseDirectiveElse
3680 /// ::= .else
3681 bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
3682   if (getLexer().isNot(AsmToken::EndOfStatement))
3683     return TokError("unexpected token in '.else' directive");
3684
3685   Lex();
3686
3687   if (TheCondState.TheCond != AsmCond::IfCond &&
3688       TheCondState.TheCond != AsmCond::ElseIfCond)
3689     Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
3690                         ".elseif");
3691   TheCondState.TheCond = AsmCond::ElseCond;
3692   bool LastIgnoreState = false;
3693   if (!TheCondStack.empty())
3694     LastIgnoreState = TheCondStack.back().Ignore;
3695   if (LastIgnoreState || TheCondState.CondMet)
3696     TheCondState.Ignore = true;
3697   else
3698     TheCondState.Ignore = false;
3699
3700   return false;
3701 }
3702
3703 /// ParseDirectiveEndIf
3704 /// ::= .endif
3705 bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
3706   if (getLexer().isNot(AsmToken::EndOfStatement))
3707     return TokError("unexpected token in '.endif' directive");
3708
3709   Lex();
3710
3711   if ((TheCondState.TheCond == AsmCond::NoCond) ||
3712       TheCondStack.empty())
3713     Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
3714                         ".else");
3715   if (!TheCondStack.empty()) {
3716     TheCondState = TheCondStack.back();
3717     TheCondStack.pop_back();
3718   }
3719
3720   return false;
3721 }
3722
3723 void AsmParser::initializeDirectiveKindMap() {
3724   DirectiveKindMap[".set"] = DK_SET;
3725   DirectiveKindMap[".equ"] = DK_EQU;
3726   DirectiveKindMap[".equiv"] = DK_EQUIV;
3727   DirectiveKindMap[".ascii"] = DK_ASCII;
3728   DirectiveKindMap[".asciz"] = DK_ASCIZ;
3729   DirectiveKindMap[".string"] = DK_STRING;
3730   DirectiveKindMap[".byte"] = DK_BYTE;
3731   DirectiveKindMap[".short"] = DK_SHORT;
3732   DirectiveKindMap[".value"] = DK_VALUE;
3733   DirectiveKindMap[".2byte"] = DK_2BYTE;
3734   DirectiveKindMap[".long"] = DK_LONG;
3735   DirectiveKindMap[".int"] = DK_INT;
3736   DirectiveKindMap[".4byte"] = DK_4BYTE;
3737   DirectiveKindMap[".quad"] = DK_QUAD;
3738   DirectiveKindMap[".8byte"] = DK_8BYTE;
3739   DirectiveKindMap[".single"] = DK_SINGLE;
3740   DirectiveKindMap[".float"] = DK_FLOAT;
3741   DirectiveKindMap[".double"] = DK_DOUBLE;
3742   DirectiveKindMap[".align"] = DK_ALIGN;
3743   DirectiveKindMap[".align32"] = DK_ALIGN32;
3744   DirectiveKindMap[".balign"] = DK_BALIGN;
3745   DirectiveKindMap[".balignw"] = DK_BALIGNW;
3746   DirectiveKindMap[".balignl"] = DK_BALIGNL;
3747   DirectiveKindMap[".p2align"] = DK_P2ALIGN;
3748   DirectiveKindMap[".p2alignw"] = DK_P2ALIGNW;
3749   DirectiveKindMap[".p2alignl"] = DK_P2ALIGNL;
3750   DirectiveKindMap[".org"] = DK_ORG;
3751   DirectiveKindMap[".fill"] = DK_FILL;
3752   DirectiveKindMap[".zero"] = DK_ZERO;
3753   DirectiveKindMap[".extern"] = DK_EXTERN;
3754   DirectiveKindMap[".globl"] = DK_GLOBL;
3755   DirectiveKindMap[".global"] = DK_GLOBAL;
3756   DirectiveKindMap[".lazy_reference"] = DK_LAZY_REFERENCE;
3757   DirectiveKindMap[".no_dead_strip"] = DK_NO_DEAD_STRIP;
3758   DirectiveKindMap[".symbol_resolver"] = DK_SYMBOL_RESOLVER;
3759   DirectiveKindMap[".private_extern"] = DK_PRIVATE_EXTERN;
3760   DirectiveKindMap[".reference"] = DK_REFERENCE;
3761   DirectiveKindMap[".weak_definition"] = DK_WEAK_DEFINITION;
3762   DirectiveKindMap[".weak_reference"] = DK_WEAK_REFERENCE;
3763   DirectiveKindMap[".weak_def_can_be_hidden"] = DK_WEAK_DEF_CAN_BE_HIDDEN;
3764   DirectiveKindMap[".comm"] = DK_COMM;
3765   DirectiveKindMap[".common"] = DK_COMMON;
3766   DirectiveKindMap[".lcomm"] = DK_LCOMM;
3767   DirectiveKindMap[".abort"] = DK_ABORT;
3768   DirectiveKindMap[".include"] = DK_INCLUDE;
3769   DirectiveKindMap[".incbin"] = DK_INCBIN;
3770   DirectiveKindMap[".code16"] = DK_CODE16;
3771   DirectiveKindMap[".code16gcc"] = DK_CODE16GCC;
3772   DirectiveKindMap[".rept"] = DK_REPT;
3773   DirectiveKindMap[".irp"] = DK_IRP;
3774   DirectiveKindMap[".irpc"] = DK_IRPC;
3775   DirectiveKindMap[".endr"] = DK_ENDR;
3776   DirectiveKindMap[".bundle_align_mode"] = DK_BUNDLE_ALIGN_MODE;
3777   DirectiveKindMap[".bundle_lock"] = DK_BUNDLE_LOCK;
3778   DirectiveKindMap[".bundle_unlock"] = DK_BUNDLE_UNLOCK;
3779   DirectiveKindMap[".if"] = DK_IF;
3780   DirectiveKindMap[".ifb"] = DK_IFB;
3781   DirectiveKindMap[".ifnb"] = DK_IFNB;
3782   DirectiveKindMap[".ifc"] = DK_IFC;
3783   DirectiveKindMap[".ifnc"] = DK_IFNC;
3784   DirectiveKindMap[".ifdef"] = DK_IFDEF;
3785   DirectiveKindMap[".ifndef"] = DK_IFNDEF;
3786   DirectiveKindMap[".ifnotdef"] = DK_IFNOTDEF;
3787   DirectiveKindMap[".elseif"] = DK_ELSEIF;
3788   DirectiveKindMap[".else"] = DK_ELSE;
3789   DirectiveKindMap[".endif"] = DK_ENDIF;
3790   DirectiveKindMap[".skip"] = DK_SKIP;
3791   DirectiveKindMap[".space"] = DK_SPACE;
3792   DirectiveKindMap[".file"] = DK_FILE;
3793   DirectiveKindMap[".line"] = DK_LINE;
3794   DirectiveKindMap[".loc"] = DK_LOC;
3795   DirectiveKindMap[".stabs"] = DK_STABS;
3796   DirectiveKindMap[".sleb128"] = DK_SLEB128;
3797   DirectiveKindMap[".uleb128"] = DK_ULEB128;
3798   DirectiveKindMap[".cfi_sections"] = DK_CFI_SECTIONS;
3799   DirectiveKindMap[".cfi_startproc"] = DK_CFI_STARTPROC;
3800   DirectiveKindMap[".cfi_endproc"] = DK_CFI_ENDPROC;
3801   DirectiveKindMap[".cfi_def_cfa"] = DK_CFI_DEF_CFA;
3802   DirectiveKindMap[".cfi_def_cfa_offset"] = DK_CFI_DEF_CFA_OFFSET;
3803   DirectiveKindMap[".cfi_adjust_cfa_offset"] = DK_CFI_ADJUST_CFA_OFFSET;
3804   DirectiveKindMap[".cfi_def_cfa_register"] = DK_CFI_DEF_CFA_REGISTER;
3805   DirectiveKindMap[".cfi_offset"] = DK_CFI_OFFSET;
3806   DirectiveKindMap[".cfi_rel_offset"] = DK_CFI_REL_OFFSET;
3807   DirectiveKindMap[".cfi_personality"] = DK_CFI_PERSONALITY;
3808   DirectiveKindMap[".cfi_lsda"] = DK_CFI_LSDA;
3809   DirectiveKindMap[".cfi_remember_state"] = DK_CFI_REMEMBER_STATE;
3810   DirectiveKindMap[".cfi_restore_state"] = DK_CFI_RESTORE_STATE;
3811   DirectiveKindMap[".cfi_same_value"] = DK_CFI_SAME_VALUE;
3812   DirectiveKindMap[".cfi_restore"] = DK_CFI_RESTORE;
3813   DirectiveKindMap[".cfi_escape"] = DK_CFI_ESCAPE;
3814   DirectiveKindMap[".cfi_signal_frame"] = DK_CFI_SIGNAL_FRAME;
3815   DirectiveKindMap[".cfi_undefined"] = DK_CFI_UNDEFINED;
3816   DirectiveKindMap[".cfi_register"] = DK_CFI_REGISTER;
3817   DirectiveKindMap[".macros_on"] = DK_MACROS_ON;
3818   DirectiveKindMap[".macros_off"] = DK_MACROS_OFF;
3819   DirectiveKindMap[".macro"] = DK_MACRO;
3820   DirectiveKindMap[".endm"] = DK_ENDM;
3821   DirectiveKindMap[".endmacro"] = DK_ENDMACRO;
3822   DirectiveKindMap[".purgem"] = DK_PURGEM;
3823 }
3824
3825
3826 MCAsmMacro *AsmParser::ParseMacroLikeBody(SMLoc DirectiveLoc) {
3827   AsmToken EndToken, StartToken = getTok();
3828
3829   unsigned NestLevel = 0;
3830   for (;;) {
3831     // Check whether we have reached the end of the file.
3832     if (getLexer().is(AsmToken::Eof)) {
3833       Error(DirectiveLoc, "no matching '.endr' in definition");
3834       return 0;
3835     }
3836
3837     if (Lexer.is(AsmToken::Identifier) &&
3838         (getTok().getIdentifier() == ".rept")) {
3839       ++NestLevel;
3840     }
3841
3842     // Otherwise, check whether we have reached the .endr.
3843     if (Lexer.is(AsmToken::Identifier) &&
3844         getTok().getIdentifier() == ".endr") {
3845       if (NestLevel == 0) {
3846         EndToken = getTok();
3847         Lex();
3848         if (Lexer.isNot(AsmToken::EndOfStatement)) {
3849           TokError("unexpected token in '.endr' directive");
3850           return 0;
3851         }
3852         break;
3853       }
3854       --NestLevel;
3855     }
3856
3857     // Otherwise, scan till the end of the statement.
3858     eatToEndOfStatement();
3859   }
3860
3861   const char *BodyStart = StartToken.getLoc().getPointer();
3862   const char *BodyEnd = EndToken.getLoc().getPointer();
3863   StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
3864
3865   // We Are Anonymous.
3866   StringRef Name;
3867   MCAsmMacroParameters Parameters;
3868   MacroLikeBodies.push_back(MCAsmMacro(Name, Body, Parameters));
3869   return &MacroLikeBodies.back();
3870 }
3871
3872 void AsmParser::InstantiateMacroLikeBody(MCAsmMacro *M, SMLoc DirectiveLoc,
3873                                          raw_svector_ostream &OS) {
3874   OS << ".endr\n";
3875
3876   MemoryBuffer *Instantiation =
3877     MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
3878
3879   // Create the macro instantiation object and add to the current macro
3880   // instantiation stack.
3881   MacroInstantiation *MI = new MacroInstantiation(M, DirectiveLoc,
3882                                                   CurBuffer,
3883                                                   getTok().getLoc(),
3884                                                   Instantiation);
3885   ActiveMacros.push_back(MI);
3886
3887   // Jump to the macro instantiation and prime the lexer.
3888   CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
3889   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
3890   Lex();
3891 }
3892
3893 bool AsmParser::ParseDirectiveRept(SMLoc DirectiveLoc) {
3894   int64_t Count;
3895   if (parseAbsoluteExpression(Count))
3896     return TokError("unexpected token in '.rept' directive");
3897
3898   if (Count < 0)
3899     return TokError("Count is negative");
3900
3901   if (Lexer.isNot(AsmToken::EndOfStatement))
3902     return TokError("unexpected token in '.rept' directive");
3903
3904   // Eat the end of statement.
3905   Lex();
3906
3907   // Lex the rept definition.
3908   MCAsmMacro *M = ParseMacroLikeBody(DirectiveLoc);
3909   if (!M)
3910     return true;
3911
3912   // Macro instantiation is lexical, unfortunately. We construct a new buffer
3913   // to hold the macro body with substitutions.
3914   SmallString<256> Buf;
3915   MCAsmMacroParameters Parameters;
3916   MCAsmMacroArguments A;
3917   raw_svector_ostream OS(Buf);
3918   while (Count--) {
3919     if (expandMacro(OS, M->Body, Parameters, A, getTok().getLoc()))
3920       return true;
3921   }
3922   InstantiateMacroLikeBody(M, DirectiveLoc, OS);
3923
3924   return false;
3925 }
3926
3927 /// ParseDirectiveIrp
3928 /// ::= .irp symbol,values
3929 bool AsmParser::ParseDirectiveIrp(SMLoc DirectiveLoc) {
3930   MCAsmMacroParameters Parameters;
3931   MCAsmMacroParameter Parameter;
3932
3933   if (parseIdentifier(Parameter.first))
3934     return TokError("expected identifier in '.irp' directive");
3935
3936   Parameters.push_back(Parameter);
3937
3938   if (Lexer.isNot(AsmToken::Comma))
3939     return TokError("expected comma in '.irp' directive");
3940
3941   Lex();
3942
3943   MCAsmMacroArguments A;
3944   if (ParseMacroArguments(0, A))
3945     return true;
3946
3947   // Eat the end of statement.
3948   Lex();
3949
3950   // Lex the irp definition.
3951   MCAsmMacro *M = ParseMacroLikeBody(DirectiveLoc);
3952   if (!M)
3953     return true;
3954
3955   // Macro instantiation is lexical, unfortunately. We construct a new buffer
3956   // to hold the macro body with substitutions.
3957   SmallString<256> Buf;
3958   raw_svector_ostream OS(Buf);
3959
3960   for (MCAsmMacroArguments::iterator i = A.begin(), e = A.end(); i != e; ++i) {
3961     MCAsmMacroArguments Args;
3962     Args.push_back(*i);
3963
3964     if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
3965       return true;
3966   }
3967
3968   InstantiateMacroLikeBody(M, DirectiveLoc, OS);
3969
3970   return false;
3971 }
3972
3973 /// ParseDirectiveIrpc
3974 /// ::= .irpc symbol,values
3975 bool AsmParser::ParseDirectiveIrpc(SMLoc DirectiveLoc) {
3976   MCAsmMacroParameters Parameters;
3977   MCAsmMacroParameter Parameter;
3978
3979   if (parseIdentifier(Parameter.first))
3980     return TokError("expected identifier in '.irpc' directive");
3981
3982   Parameters.push_back(Parameter);
3983
3984   if (Lexer.isNot(AsmToken::Comma))
3985     return TokError("expected comma in '.irpc' directive");
3986
3987   Lex();
3988
3989   MCAsmMacroArguments A;
3990   if (ParseMacroArguments(0, A))
3991     return true;
3992
3993   if (A.size() != 1 || A.front().size() != 1)
3994     return TokError("unexpected token in '.irpc' directive");
3995
3996   // Eat the end of statement.
3997   Lex();
3998
3999   // Lex the irpc definition.
4000   MCAsmMacro *M = ParseMacroLikeBody(DirectiveLoc);
4001   if (!M)
4002     return true;
4003
4004   // Macro instantiation is lexical, unfortunately. We construct a new buffer
4005   // to hold the macro body with substitutions.
4006   SmallString<256> Buf;
4007   raw_svector_ostream OS(Buf);
4008
4009   StringRef Values = A.front().front().getString();
4010   std::size_t I, End = Values.size();
4011   for (I = 0; I < End; ++I) {
4012     MCAsmMacroArgument Arg;
4013     Arg.push_back(AsmToken(AsmToken::Identifier, Values.slice(I, I+1)));
4014
4015     MCAsmMacroArguments Args;
4016     Args.push_back(Arg);
4017
4018     if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
4019       return true;
4020   }
4021
4022   InstantiateMacroLikeBody(M, DirectiveLoc, OS);
4023
4024   return false;
4025 }
4026
4027 bool AsmParser::ParseDirectiveEndr(SMLoc DirectiveLoc) {
4028   if (ActiveMacros.empty())
4029     return TokError("unmatched '.endr' directive");
4030
4031   // The only .repl that should get here are the ones created by
4032   // InstantiateMacroLikeBody.
4033   assert(getLexer().is(AsmToken::EndOfStatement));
4034
4035   HandleMacroExit();
4036   return false;
4037 }
4038
4039 bool AsmParser::ParseDirectiveMSEmit(SMLoc IDLoc, ParseStatementInfo &Info,
4040                                      size_t Len) {
4041   const MCExpr *Value;
4042   SMLoc ExprLoc = getLexer().getLoc();
4043   if (parseExpression(Value))
4044     return true;
4045   const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value);
4046   if (!MCE)
4047     return Error(ExprLoc, "unexpected expression in _emit");
4048   uint64_t IntValue = MCE->getValue();
4049   if (!isUIntN(8, IntValue) && !isIntN(8, IntValue))
4050     return Error(ExprLoc, "literal value out of range for directive");
4051
4052   Info.AsmRewrites->push_back(AsmRewrite(AOK_Emit, IDLoc, Len));
4053   return false;
4054 }
4055
4056 bool AsmParser::ParseDirectiveMSAlign(SMLoc IDLoc, ParseStatementInfo &Info) {
4057   const MCExpr *Value;
4058   SMLoc ExprLoc = getLexer().getLoc();
4059   if (parseExpression(Value))
4060     return true;
4061   const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value);
4062   if (!MCE)
4063     return Error(ExprLoc, "unexpected expression in align");
4064   uint64_t IntValue = MCE->getValue();
4065   if (!isPowerOf2_64(IntValue))
4066     return Error(ExprLoc, "literal value not a power of two greater then zero");
4067
4068   Info.AsmRewrites->push_back(AsmRewrite(AOK_Align, IDLoc, 5,
4069                                          Log2_64(IntValue)));
4070   return false;
4071 }
4072
4073 // We are comparing pointers, but the pointers are relative to a single string.
4074 // Thus, this should always be deterministic.
4075 static int RewritesSort(const void *A, const void *B) {
4076   const AsmRewrite *AsmRewriteA = static_cast<const AsmRewrite *>(A);
4077   const AsmRewrite *AsmRewriteB = static_cast<const AsmRewrite *>(B);
4078   if (AsmRewriteA->Loc.getPointer() < AsmRewriteB->Loc.getPointer())
4079     return -1;
4080   if (AsmRewriteB->Loc.getPointer() < AsmRewriteA->Loc.getPointer())
4081     return 1;
4082
4083   // It's possible to have a SizeDirective, Imm/ImmPrefix and an Input/Output
4084   // rewrite to the same location.  Make sure the SizeDirective rewrite is
4085   // performed first, then the Imm/ImmPrefix and finally the Input/Output.  This
4086   // ensures the sort algorithm is stable.
4087   if (AsmRewritePrecedence [AsmRewriteA->Kind] >
4088       AsmRewritePrecedence [AsmRewriteB->Kind])
4089     return -1;
4090
4091   if (AsmRewritePrecedence [AsmRewriteA->Kind] <
4092       AsmRewritePrecedence [AsmRewriteB->Kind])
4093     return 1;
4094   llvm_unreachable ("Unstable rewrite sort.");
4095 }
4096
4097 bool
4098 AsmParser::parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
4099                             unsigned &NumOutputs, unsigned &NumInputs,
4100                             SmallVectorImpl<std::pair<void *, bool> > &OpDecls,
4101                             SmallVectorImpl<std::string> &Constraints,
4102                             SmallVectorImpl<std::string> &Clobbers,
4103                             const MCInstrInfo *MII,
4104                             const MCInstPrinter *IP,
4105                             MCAsmParserSemaCallback &SI) {
4106   SmallVector<void *, 4> InputDecls;
4107   SmallVector<void *, 4> OutputDecls;
4108   SmallVector<bool, 4> InputDeclsAddressOf;
4109   SmallVector<bool, 4> OutputDeclsAddressOf;
4110   SmallVector<std::string, 4> InputConstraints;
4111   SmallVector<std::string, 4> OutputConstraints;
4112   SmallVector<unsigned, 4> ClobberRegs;
4113
4114   SmallVector<AsmRewrite, 4> AsmStrRewrites;
4115
4116   // Prime the lexer.
4117   Lex();
4118
4119   // While we have input, parse each statement.
4120   unsigned InputIdx = 0;
4121   unsigned OutputIdx = 0;
4122   while (getLexer().isNot(AsmToken::Eof)) {
4123     ParseStatementInfo Info(&AsmStrRewrites);
4124     if (ParseStatement(Info))
4125       return true;
4126
4127     if (Info.ParseError)
4128       return true;
4129
4130     if (Info.Opcode == ~0U)
4131       continue;
4132
4133     const MCInstrDesc &Desc = MII->get(Info.Opcode);
4134
4135     // Build the list of clobbers, outputs and inputs.
4136     for (unsigned i = 1, e = Info.ParsedOperands.size(); i != e; ++i) {
4137       MCParsedAsmOperand *Operand = Info.ParsedOperands[i];
4138
4139       // Immediate.
4140       if (Operand->isImm())
4141         continue;
4142
4143       // Register operand.
4144       if (Operand->isReg() && !Operand->needAddressOf()) {
4145         unsigned NumDefs = Desc.getNumDefs();
4146         // Clobber.
4147         if (NumDefs && Operand->getMCOperandNum() < NumDefs)
4148           ClobberRegs.push_back(Operand->getReg());
4149         continue;
4150       }
4151
4152       // Expr/Input or Output.
4153       StringRef SymName = Operand->getSymName();
4154       if (SymName.empty())
4155         continue;
4156
4157       void *OpDecl = Operand->getOpDecl();
4158       if (!OpDecl)
4159         continue;
4160
4161       bool isOutput = (i == 1) && Desc.mayStore();
4162       SMLoc Start = SMLoc::getFromPointer(SymName.data());
4163       if (isOutput) {
4164         ++InputIdx;
4165         OutputDecls.push_back(OpDecl);
4166         OutputDeclsAddressOf.push_back(Operand->needAddressOf());
4167         OutputConstraints.push_back('=' + Operand->getConstraint().str());
4168         AsmStrRewrites.push_back(AsmRewrite(AOK_Output, Start, SymName.size()));
4169       } else {
4170         InputDecls.push_back(OpDecl);
4171         InputDeclsAddressOf.push_back(Operand->needAddressOf());
4172         InputConstraints.push_back(Operand->getConstraint().str());
4173         AsmStrRewrites.push_back(AsmRewrite(AOK_Input, Start, SymName.size()));
4174       }
4175     }
4176   }
4177
4178   // Set the number of Outputs and Inputs.
4179   NumOutputs = OutputDecls.size();
4180   NumInputs = InputDecls.size();
4181
4182   // Set the unique clobbers.
4183   array_pod_sort(ClobberRegs.begin(), ClobberRegs.end());
4184   ClobberRegs.erase(std::unique(ClobberRegs.begin(), ClobberRegs.end()),
4185                     ClobberRegs.end());
4186   Clobbers.assign(ClobberRegs.size(), std::string());
4187   for (unsigned I = 0, E = ClobberRegs.size(); I != E; ++I) {
4188     raw_string_ostream OS(Clobbers[I]);
4189     IP->printRegName(OS, ClobberRegs[I]);
4190   }
4191
4192   // Merge the various outputs and inputs.  Output are expected first.
4193   if (NumOutputs || NumInputs) {
4194     unsigned NumExprs = NumOutputs + NumInputs;
4195     OpDecls.resize(NumExprs);
4196     Constraints.resize(NumExprs);
4197     for (unsigned i = 0; i < NumOutputs; ++i) {
4198       OpDecls[i] = std::make_pair(OutputDecls[i], OutputDeclsAddressOf[i]);
4199       Constraints[i] = OutputConstraints[i];
4200     }
4201     for (unsigned i = 0, j = NumOutputs; i < NumInputs; ++i, ++j) {
4202       OpDecls[j] = std::make_pair(InputDecls[i], InputDeclsAddressOf[i]);
4203       Constraints[j] = InputConstraints[i];
4204     }
4205   }
4206
4207   // Build the IR assembly string.
4208   std::string AsmStringIR;
4209   raw_string_ostream OS(AsmStringIR);
4210   const char *AsmStart = SrcMgr.getMemoryBuffer(0)->getBufferStart();
4211   const char *AsmEnd = SrcMgr.getMemoryBuffer(0)->getBufferEnd();
4212   array_pod_sort(AsmStrRewrites.begin(), AsmStrRewrites.end(), RewritesSort);
4213   for (SmallVectorImpl<AsmRewrite>::iterator I = AsmStrRewrites.begin(),
4214                                              E = AsmStrRewrites.end();
4215        I != E; ++I) {
4216     AsmRewriteKind Kind = (*I).Kind;
4217     if (Kind == AOK_Delete)
4218       continue;
4219
4220     const char *Loc = (*I).Loc.getPointer();
4221     assert(Loc >= AsmStart && "Expected Loc to be at or after Start!");
4222
4223     // Emit everything up to the immediate/expression.
4224     unsigned Len = Loc - AsmStart;
4225     if (Len)
4226       OS << StringRef(AsmStart, Len);
4227
4228     // Skip the original expression.
4229     if (Kind == AOK_Skip) {
4230       AsmStart = Loc + (*I).Len;
4231       continue;
4232     }
4233
4234     unsigned AdditionalSkip = 0;
4235     // Rewrite expressions in $N notation.
4236     switch (Kind) {
4237     default: break;
4238     case AOK_Imm:
4239       OS << "$$" << (*I).Val;
4240       break;
4241     case AOK_ImmPrefix:
4242       OS << "$$";
4243       break;
4244     case AOK_Input:
4245       OS << '$' << InputIdx++;
4246       break;
4247     case AOK_Output:
4248       OS << '$' << OutputIdx++;
4249       break;
4250     case AOK_SizeDirective:
4251       switch ((*I).Val) {
4252       default: break;
4253       case 8:  OS << "byte ptr "; break;
4254       case 16: OS << "word ptr "; break;
4255       case 32: OS << "dword ptr "; break;
4256       case 64: OS << "qword ptr "; break;
4257       case 80: OS << "xword ptr "; break;
4258       case 128: OS << "xmmword ptr "; break;
4259       case 256: OS << "ymmword ptr "; break;
4260       }
4261       break;
4262     case AOK_Emit:
4263       OS << ".byte";
4264       break;
4265     case AOK_Align: {
4266       unsigned Val = (*I).Val;
4267       OS << ".align " << Val;
4268
4269       // Skip the original immediate.
4270       assert(Val < 10 && "Expected alignment less then 2^10.");
4271       AdditionalSkip = (Val < 4) ? 2 : Val < 7 ? 3 : 4;
4272       break;
4273     }
4274     case AOK_DotOperator:
4275       OS << (*I).Val;
4276       break;
4277     }
4278
4279     // Skip the original expression.
4280     AsmStart = Loc + (*I).Len + AdditionalSkip;
4281   }
4282
4283   // Emit the remainder of the asm string.
4284   if (AsmStart != AsmEnd)
4285     OS << StringRef(AsmStart, AsmEnd - AsmStart);
4286
4287   AsmString = OS.str();
4288   return false;
4289 }
4290
4291 /// \brief Create an MCAsmParser instance.
4292 MCAsmParser *llvm::createMCAsmParser(SourceMgr &SM,
4293                                      MCContext &C, MCStreamer &Out,
4294                                      const MCAsmInfo &MAI) {
4295   return new AsmParser(SM, C, Out, MAI);
4296 }