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