Fix AsmParser binary precedence for shift operators.
[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/StringMap.h"
17 #include "llvm/ADT/StringSwitch.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/MCParser/AsmCond.h"
24 #include "llvm/MC/MCParser/AsmLexer.h"
25 #include "llvm/MC/MCParser/MCAsmParser.h"
26 #include "llvm/MC/MCParser/MCParsedAsmOperand.h"
27 #include "llvm/MC/MCRegisterInfo.h"
28 #include "llvm/MC/MCSectionMachO.h"
29 #include "llvm/MC/MCStreamer.h"
30 #include "llvm/MC/MCSymbol.h"
31 #include "llvm/MC/MCTargetAsmParser.h"
32 #include "llvm/Support/CommandLine.h"
33 #include "llvm/Support/MathExtras.h"
34 #include "llvm/Support/MemoryBuffer.h"
35 #include "llvm/Support/SourceMgr.h"
36 #include "llvm/Support/raw_ostream.h"
37 #include <cctype>
38 #include <vector>
39 using namespace llvm;
40
41 static cl::opt<bool>
42 FatalAssemblerWarnings("fatal-assembler-warnings",
43                        cl::desc("Consider warnings as error"));
44
45 namespace {
46
47 /// \brief Helper class for tracking macro definitions.
48 struct Macro {
49   StringRef Name;
50   StringRef Body;
51   std::vector<StringRef> Parameters;
52
53 public:
54   Macro(StringRef N, StringRef B, const std::vector<StringRef> &P) :
55     Name(N), Body(B), Parameters(P) {}
56 };
57
58 /// \brief Helper class for storing information about an active macro
59 /// instantiation.
60 struct MacroInstantiation {
61   /// The macro being instantiated.
62   const Macro *TheMacro;
63
64   /// The macro instantiation with substitutions.
65   MemoryBuffer *Instantiation;
66
67   /// The location of the instantiation.
68   SMLoc InstantiationLoc;
69
70   /// The location where parsing should resume upon instantiation completion.
71   SMLoc ExitLoc;
72
73 public:
74   MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
75                      MemoryBuffer *I);
76 };
77
78 /// \brief The concrete assembly parser instance.
79 class AsmParser : public MCAsmParser {
80   friend class GenericAsmParser;
81
82   AsmParser(const AsmParser &);   // DO NOT IMPLEMENT
83   void operator=(const AsmParser &);  // DO NOT IMPLEMENT
84 private:
85   AsmLexer Lexer;
86   MCContext &Ctx;
87   MCStreamer &Out;
88   const MCAsmInfo &MAI;
89   SourceMgr &SrcMgr;
90   MCAsmParserExtension *GenericParser;
91   MCAsmParserExtension *PlatformParser;
92
93   /// This is the current buffer index we're lexing from as managed by the
94   /// SourceMgr object.
95   int CurBuffer;
96
97   AsmCond TheCondState;
98   std::vector<AsmCond> TheCondStack;
99
100   /// DirectiveMap - This is a table handlers for directives.  Each handler is
101   /// invoked after the directive identifier is read and is responsible for
102   /// parsing and validating the rest of the directive.  The handler is passed
103   /// in the directive name and the location of the directive keyword.
104   StringMap<std::pair<MCAsmParserExtension*, DirectiveHandler> > DirectiveMap;
105
106   /// MacroMap - Map of currently defined macros.
107   StringMap<Macro*> MacroMap;
108
109   /// ActiveMacros - Stack of active macro instantiations.
110   std::vector<MacroInstantiation*> ActiveMacros;
111
112   /// Boolean tracking whether macro substitution is enabled.
113   unsigned MacrosEnabled : 1;
114
115   /// Flag tracking whether any errors have been encountered.
116   unsigned HadError : 1;
117
118 public:
119   AsmParser(SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
120             const MCAsmInfo &MAI);
121   ~AsmParser();
122
123   virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
124
125   void AddDirectiveHandler(MCAsmParserExtension *Object,
126                            StringRef Directive,
127                            DirectiveHandler Handler) {
128     DirectiveMap[Directive] = std::make_pair(Object, Handler);
129   }
130
131 public:
132   /// @name MCAsmParser Interface
133   /// {
134
135   virtual SourceMgr &getSourceManager() { return SrcMgr; }
136   virtual MCAsmLexer &getLexer() { return Lexer; }
137   virtual MCContext &getContext() { return Ctx; }
138   virtual MCStreamer &getStreamer() { return Out; }
139
140   virtual bool Warning(SMLoc L, const Twine &Msg);
141   virtual bool Error(SMLoc L, const Twine &Msg);
142
143   const AsmToken &Lex();
144
145   bool ParseExpression(const MCExpr *&Res);
146   virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
147   virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
148   virtual bool ParseAbsoluteExpression(int64_t &Res);
149
150   /// }
151
152 private:
153   void CheckForValidSection();
154
155   bool ParseStatement();
156
157   bool HandleMacroEntry(StringRef Name, SMLoc NameLoc, const Macro *M);
158   bool expandMacro(SmallString<256> &Buf, StringRef Body,
159                    const std::vector<StringRef> &Parameters,
160                    const std::vector<std::vector<AsmToken> > &A,
161                    const SMLoc &L);
162   void HandleMacroExit();
163
164   void PrintMacroInstantiations();
165   void PrintMessage(SMLoc Loc, const Twine &Msg, const char *Type,
166                     bool ShowLine = true) const {
167     SrcMgr.PrintMessage(Loc, Msg, Type, ShowLine);
168   }
169
170   /// EnterIncludeFile - Enter the specified file. This returns true on failure.
171   bool EnterIncludeFile(const std::string &Filename);
172
173   /// \brief Reset the current lexer position to that given by \arg Loc. The
174   /// current token is not set; clients should ensure Lex() is called
175   /// subsequently.
176   void JumpToLoc(SMLoc Loc);
177
178   void EatToEndOfStatement();
179
180   /// \brief Parse up to the end of statement and a return the contents from the
181   /// current token until the end of the statement; the current token on exit
182   /// will be either the EndOfStatement or EOF.
183   StringRef ParseStringToEndOfStatement();
184
185   bool ParseAssignment(StringRef Name, bool allow_redef);
186
187   bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
188   bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
189   bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
190   bool ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc);
191
192   /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
193   /// and set \arg Res to the identifier contents.
194   bool ParseIdentifier(StringRef &Res);
195
196   // Directive Parsing.
197
198  // ".ascii", ".asciiz", ".string"
199   bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
200   bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
201   bool ParseDirectiveRealValue(const fltSemantics &); // ".single", ...
202   bool ParseDirectiveFill(); // ".fill"
203   bool ParseDirectiveSpace(); // ".space"
204   bool ParseDirectiveZero(); // ".zero"
205   bool ParseDirectiveSet(StringRef IDVal, bool allow_redef); // ".set", ".equ", ".equiv"
206   bool ParseDirectiveOrg(); // ".org"
207   // ".align{,32}", ".p2align{,w,l}"
208   bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
209
210   /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
211   /// accepts a single symbol (which should be a label or an external).
212   bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
213
214   bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
215
216   bool ParseDirectiveAbort(); // ".abort"
217   bool ParseDirectiveInclude(); // ".include"
218
219   bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
220   // ".ifdef" or ".ifndef", depending on expect_defined
221   bool ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined);
222   bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
223   bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
224   bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
225
226   /// ParseEscapedString - Parse the current token as a string which may include
227   /// escaped characters and return the string contents.
228   bool ParseEscapedString(std::string &Data);
229
230   const MCExpr *ApplyModifierToExpr(const MCExpr *E,
231                                     MCSymbolRefExpr::VariantKind Variant);
232 };
233
234 /// \brief Generic implementations of directive handling, etc. which is shared
235 /// (or the default, at least) for all assembler parser.
236 class GenericAsmParser : public MCAsmParserExtension {
237   template<bool (GenericAsmParser::*Handler)(StringRef, SMLoc)>
238   void AddDirectiveHandler(StringRef Directive) {
239     getParser().AddDirectiveHandler(this, Directive,
240                                     HandleDirective<GenericAsmParser, Handler>);
241   }
242 public:
243   GenericAsmParser() {}
244
245   AsmParser &getParser() {
246     return (AsmParser&) this->MCAsmParserExtension::getParser();
247   }
248
249   virtual void Initialize(MCAsmParser &Parser) {
250     // Call the base implementation.
251     this->MCAsmParserExtension::Initialize(Parser);
252
253     // Debugging directives.
254     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveFile>(".file");
255     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLine>(".line");
256     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLoc>(".loc");
257     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveStabs>(".stabs");
258
259     // CFI directives.
260     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFISections>(
261                                                                ".cfi_sections");
262     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIStartProc>(
263                                                               ".cfi_startproc");
264     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIEndProc>(
265                                                                 ".cfi_endproc");
266     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfa>(
267                                                          ".cfi_def_cfa");
268     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaOffset>(
269                                                          ".cfi_def_cfa_offset");
270     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIAdjustCfaOffset>(
271                                                       ".cfi_adjust_cfa_offset");
272     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIDefCfaRegister>(
273                                                        ".cfi_def_cfa_register");
274     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIOffset>(
275                                                                  ".cfi_offset");
276     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveCFIRelOffset>(
277                                                              ".cfi_rel_offset");
278     AddDirectiveHandler<
279      &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_personality");
280     AddDirectiveHandler<
281             &GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda>(".cfi_lsda");
282     AddDirectiveHandler<
283       &GenericAsmParser::ParseDirectiveCFIRememberState>(".cfi_remember_state");
284     AddDirectiveHandler<
285       &GenericAsmParser::ParseDirectiveCFIRestoreState>(".cfi_restore_state");
286     AddDirectiveHandler<
287       &GenericAsmParser::ParseDirectiveCFISameValue>(".cfi_same_value");
288
289     // Macro directives.
290     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
291       ".macros_on");
292     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
293       ".macros_off");
294     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacro>(".macro");
295     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endm");
296     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endmacro");
297
298     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".sleb128");
299     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLEB128>(".uleb128");
300   }
301
302   bool ParseRegisterOrRegisterNumber(int64_t &Register, SMLoc DirectiveLoc);
303
304   bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
305   bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
306   bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
307   bool ParseDirectiveStabs(StringRef, SMLoc DirectiveLoc);
308   bool ParseDirectiveCFISections(StringRef, SMLoc DirectiveLoc);
309   bool ParseDirectiveCFIStartProc(StringRef, SMLoc DirectiveLoc);
310   bool ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc);
311   bool ParseDirectiveCFIDefCfa(StringRef, SMLoc DirectiveLoc);
312   bool ParseDirectiveCFIDefCfaOffset(StringRef, SMLoc DirectiveLoc);
313   bool ParseDirectiveCFIAdjustCfaOffset(StringRef, SMLoc DirectiveLoc);
314   bool ParseDirectiveCFIDefCfaRegister(StringRef, SMLoc DirectiveLoc);
315   bool ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc);
316   bool ParseDirectiveCFIRelOffset(StringRef, SMLoc DirectiveLoc);
317   bool ParseDirectiveCFIPersonalityOrLsda(StringRef, SMLoc DirectiveLoc);
318   bool ParseDirectiveCFIRememberState(StringRef, SMLoc DirectiveLoc);
319   bool ParseDirectiveCFIRestoreState(StringRef, SMLoc DirectiveLoc);
320   bool ParseDirectiveCFISameValue(StringRef, SMLoc DirectiveLoc);
321
322   bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
323   bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
324   bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
325
326   bool ParseDirectiveLEB128(StringRef, SMLoc);
327 };
328
329 }
330
331 namespace llvm {
332
333 extern MCAsmParserExtension *createDarwinAsmParser();
334 extern MCAsmParserExtension *createELFAsmParser();
335 extern MCAsmParserExtension *createCOFFAsmParser();
336
337 }
338
339 enum { DEFAULT_ADDRSPACE = 0 };
340
341 AsmParser::AsmParser(SourceMgr &_SM, MCContext &_Ctx,
342                      MCStreamer &_Out, const MCAsmInfo &_MAI)
343   : Lexer(_MAI), Ctx(_Ctx), Out(_Out), MAI(_MAI), SrcMgr(_SM),
344     GenericParser(new GenericAsmParser), PlatformParser(0),
345     CurBuffer(0), MacrosEnabled(true) {
346   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
347
348   // Initialize the generic parser.
349   GenericParser->Initialize(*this);
350
351   // Initialize the platform / file format parser.
352   //
353   // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
354   // created.
355   if (_MAI.hasMicrosoftFastStdCallMangling()) {
356     PlatformParser = createCOFFAsmParser();
357     PlatformParser->Initialize(*this);
358   } else if (_MAI.hasSubsectionsViaSymbols()) {
359     PlatformParser = createDarwinAsmParser();
360     PlatformParser->Initialize(*this);
361   } else {
362     PlatformParser = createELFAsmParser();
363     PlatformParser->Initialize(*this);
364   }
365 }
366
367 AsmParser::~AsmParser() {
368   assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
369
370   // Destroy any macros.
371   for (StringMap<Macro*>::iterator it = MacroMap.begin(),
372          ie = MacroMap.end(); it != ie; ++it)
373     delete it->getValue();
374
375   delete PlatformParser;
376   delete GenericParser;
377 }
378
379 void AsmParser::PrintMacroInstantiations() {
380   // Print the active macro instantiation stack.
381   for (std::vector<MacroInstantiation*>::const_reverse_iterator
382          it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
383     PrintMessage((*it)->InstantiationLoc, "while in macro instantiation",
384                  "note");
385 }
386
387 bool AsmParser::Warning(SMLoc L, const Twine &Msg) {
388   if (FatalAssemblerWarnings)
389     return Error(L, Msg);
390   PrintMessage(L, Msg, "warning");
391   PrintMacroInstantiations();
392   return false;
393 }
394
395 bool AsmParser::Error(SMLoc L, const Twine &Msg) {
396   HadError = true;
397   PrintMessage(L, Msg, "error");
398   PrintMacroInstantiations();
399   return true;
400 }
401
402 bool AsmParser::EnterIncludeFile(const std::string &Filename) {
403   std::string IncludedFile;
404   int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc(), IncludedFile);
405   if (NewBuf == -1)
406     return true;
407
408   CurBuffer = NewBuf;
409
410   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
411
412   return false;
413 }
414
415 void AsmParser::JumpToLoc(SMLoc Loc) {
416   CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
417   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
418 }
419
420 const AsmToken &AsmParser::Lex() {
421   const AsmToken *tok = &Lexer.Lex();
422
423   if (tok->is(AsmToken::Eof)) {
424     // If this is the end of an included file, pop the parent file off the
425     // include stack.
426     SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
427     if (ParentIncludeLoc != SMLoc()) {
428       JumpToLoc(ParentIncludeLoc);
429       tok = &Lexer.Lex();
430     }
431   }
432
433   if (tok->is(AsmToken::Error))
434     Error(Lexer.getErrLoc(), Lexer.getErr());
435
436   return *tok;
437 }
438
439 bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
440   // Create the initial section, if requested.
441   if (!NoInitialTextSection)
442     Out.InitSections();
443
444   // Prime the lexer.
445   Lex();
446
447   HadError = false;
448   AsmCond StartingCondState = TheCondState;
449
450   // While we have input, parse each statement.
451   while (Lexer.isNot(AsmToken::Eof)) {
452     if (!ParseStatement()) continue;
453
454     // We had an error, validate that one was emitted and recover by skipping to
455     // the next line.
456     assert(HadError && "Parse statement returned an error, but none emitted!");
457     EatToEndOfStatement();
458   }
459
460   if (TheCondState.TheCond != StartingCondState.TheCond ||
461       TheCondState.Ignore != StartingCondState.Ignore)
462     return TokError("unmatched .ifs or .elses");
463
464   // Check to see there are no empty DwarfFile slots.
465   const std::vector<MCDwarfFile *> &MCDwarfFiles =
466     getContext().getMCDwarfFiles();
467   for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
468     if (!MCDwarfFiles[i])
469       TokError("unassigned file number: " + Twine(i) + " for .file directives");
470   }
471
472   // Check to see that all assembler local symbols were actually defined.
473   // Targets that don't do subsections via symbols may not want this, though,
474   // so conservatively exclude them. Only do this if we're finalizing, though,
475   // as otherwise we won't necessarilly have seen everything yet.
476   if (!NoFinalize && MAI.hasSubsectionsViaSymbols()) {
477     const MCContext::SymbolTable &Symbols = getContext().getSymbols();
478     for (MCContext::SymbolTable::const_iterator i = Symbols.begin(),
479          e = Symbols.end();
480          i != e; ++i) {
481       MCSymbol *Sym = i->getValue();
482       // Variable symbols may not be marked as defined, so check those
483       // explicitly. If we know it's a variable, we have a definition for
484       // the purposes of this check.
485       if (Sym->isTemporary() && !Sym->isVariable() && !Sym->isDefined())
486         // FIXME: We would really like to refer back to where the symbol was
487         // first referenced for a source location. We need to add something
488         // to track that. Currently, we just point to the end of the file.
489         PrintMessage(getLexer().getLoc(), "assembler local symbol '" +
490                      Sym->getName() + "' not defined", "error", false);
491     }
492   }
493
494
495   // Finalize the output stream if there are no errors and if the client wants
496   // us to.
497   if (!HadError && !NoFinalize)
498     Out.Finish();
499
500   return HadError;
501 }
502
503 void AsmParser::CheckForValidSection() {
504   if (!getStreamer().getCurrentSection()) {
505     TokError("expected section directive before assembly directive");
506     Out.SwitchSection(Ctx.getMachOSection(
507                         "__TEXT", "__text",
508                         MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
509                         0, SectionKind::getText()));
510   }
511 }
512
513 /// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
514 void AsmParser::EatToEndOfStatement() {
515   while (Lexer.isNot(AsmToken::EndOfStatement) &&
516          Lexer.isNot(AsmToken::Eof))
517     Lex();
518
519   // Eat EOL.
520   if (Lexer.is(AsmToken::EndOfStatement))
521     Lex();
522 }
523
524 StringRef AsmParser::ParseStringToEndOfStatement() {
525   const char *Start = getTok().getLoc().getPointer();
526
527   while (Lexer.isNot(AsmToken::EndOfStatement) &&
528          Lexer.isNot(AsmToken::Eof))
529     Lex();
530
531   const char *End = getTok().getLoc().getPointer();
532   return StringRef(Start, End - Start);
533 }
534
535 /// ParseParenExpr - Parse a paren expression and return it.
536 /// NOTE: This assumes the leading '(' has already been consumed.
537 ///
538 /// parenexpr ::= expr)
539 ///
540 bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
541   if (ParseExpression(Res)) return true;
542   if (Lexer.isNot(AsmToken::RParen))
543     return TokError("expected ')' in parentheses expression");
544   EndLoc = Lexer.getLoc();
545   Lex();
546   return false;
547 }
548
549 /// ParseBracketExpr - Parse a bracket expression and return it.
550 /// NOTE: This assumes the leading '[' has already been consumed.
551 ///
552 /// bracketexpr ::= expr]
553 ///
554 bool AsmParser::ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc) {
555   if (ParseExpression(Res)) return true;
556   if (Lexer.isNot(AsmToken::RBrac))
557     return TokError("expected ']' in brackets expression");
558   EndLoc = Lexer.getLoc();
559   Lex();
560   return false;
561 }
562
563 /// ParsePrimaryExpr - Parse a primary expression and return it.
564 ///  primaryexpr ::= (parenexpr
565 ///  primaryexpr ::= symbol
566 ///  primaryexpr ::= number
567 ///  primaryexpr ::= '.'
568 ///  primaryexpr ::= ~,+,- primaryexpr
569 bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
570   switch (Lexer.getKind()) {
571   default:
572     return TokError("unknown token in expression");
573   // If we have an error assume that we've already handled it.
574   case AsmToken::Error:
575     return true;
576   case AsmToken::Exclaim:
577     Lex(); // Eat the operator.
578     if (ParsePrimaryExpr(Res, EndLoc))
579       return true;
580     Res = MCUnaryExpr::CreateLNot(Res, getContext());
581     return false;
582   case AsmToken::Dollar:
583   case AsmToken::String:
584   case AsmToken::Identifier: {
585     EndLoc = Lexer.getLoc();
586
587     StringRef Identifier;
588     if (ParseIdentifier(Identifier))
589       return true;
590
591     // This is a symbol reference.
592     std::pair<StringRef, StringRef> Split = Identifier.split('@');
593     MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
594
595     // Lookup the symbol variant if used.
596     MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
597     if (Split.first.size() != Identifier.size()) {
598       Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
599       if (Variant == MCSymbolRefExpr::VK_Invalid) {
600         Variant = MCSymbolRefExpr::VK_None;
601         return TokError("invalid variant '" + Split.second + "'");
602       }
603     }
604
605     // If this is an absolute variable reference, substitute it now to preserve
606     // semantics in the face of reassignment.
607     if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
608       if (Variant)
609         return Error(EndLoc, "unexpected modifier on variable reference");
610
611       Res = Sym->getVariableValue();
612       return false;
613     }
614
615     // Otherwise create a symbol ref.
616     Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
617     return false;
618   }
619   case AsmToken::Integer: {
620     SMLoc Loc = getTok().getLoc();
621     int64_t IntVal = getTok().getIntVal();
622     Res = MCConstantExpr::Create(IntVal, getContext());
623     EndLoc = Lexer.getLoc();
624     Lex(); // Eat token.
625     // Look for 'b' or 'f' following an Integer as a directional label
626     if (Lexer.getKind() == AsmToken::Identifier) {
627       StringRef IDVal = getTok().getString();
628       if (IDVal == "f" || IDVal == "b"){
629         MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
630                                                       IDVal == "f" ? 1 : 0);
631         Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
632                                       getContext());
633         if(IDVal == "b" && Sym->isUndefined())
634           return Error(Loc, "invalid reference to undefined symbol");
635         EndLoc = Lexer.getLoc();
636         Lex(); // Eat identifier.
637       }
638     }
639     return false;
640   }
641   case AsmToken::Real: {
642     APFloat RealVal(APFloat::IEEEdouble, getTok().getString());
643     uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
644     Res = MCConstantExpr::Create(IntVal, getContext());
645     Lex(); // Eat token.
646     return false;
647   }
648   case AsmToken::Dot: {
649     // This is a '.' reference, which references the current PC.  Emit a
650     // temporary label to the streamer and refer to it.
651     MCSymbol *Sym = Ctx.CreateTempSymbol();
652     Out.EmitLabel(Sym);
653     Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
654     EndLoc = Lexer.getLoc();
655     Lex(); // Eat identifier.
656     return false;
657   }
658   case AsmToken::LParen:
659     Lex(); // Eat the '('.
660     return ParseParenExpr(Res, EndLoc);
661   case AsmToken::LBrac:
662     if (!PlatformParser->HasBracketExpressions())
663       return TokError("brackets expression not supported on this target");
664     Lex(); // Eat the '['.
665     return ParseBracketExpr(Res, EndLoc);
666   case AsmToken::Minus:
667     Lex(); // Eat the operator.
668     if (ParsePrimaryExpr(Res, EndLoc))
669       return true;
670     Res = MCUnaryExpr::CreateMinus(Res, getContext());
671     return false;
672   case AsmToken::Plus:
673     Lex(); // Eat the operator.
674     if (ParsePrimaryExpr(Res, EndLoc))
675       return true;
676     Res = MCUnaryExpr::CreatePlus(Res, getContext());
677     return false;
678   case AsmToken::Tilde:
679     Lex(); // Eat the operator.
680     if (ParsePrimaryExpr(Res, EndLoc))
681       return true;
682     Res = MCUnaryExpr::CreateNot(Res, getContext());
683     return false;
684   }
685 }
686
687 bool AsmParser::ParseExpression(const MCExpr *&Res) {
688   SMLoc EndLoc;
689   return ParseExpression(Res, EndLoc);
690 }
691
692 const MCExpr *
693 AsmParser::ApplyModifierToExpr(const MCExpr *E,
694                                MCSymbolRefExpr::VariantKind Variant) {
695   // Recurse over the given expression, rebuilding it to apply the given variant
696   // if there is exactly one symbol.
697   switch (E->getKind()) {
698   case MCExpr::Target:
699   case MCExpr::Constant:
700     return 0;
701
702   case MCExpr::SymbolRef: {
703     const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
704
705     if (SRE->getKind() != MCSymbolRefExpr::VK_None) {
706       TokError("invalid variant on expression '" +
707                getTok().getIdentifier() + "' (already modified)");
708       return E;
709     }
710
711     return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
712   }
713
714   case MCExpr::Unary: {
715     const MCUnaryExpr *UE = cast<MCUnaryExpr>(E);
716     const MCExpr *Sub = ApplyModifierToExpr(UE->getSubExpr(), Variant);
717     if (!Sub)
718       return 0;
719     return MCUnaryExpr::Create(UE->getOpcode(), Sub, getContext());
720   }
721
722   case MCExpr::Binary: {
723     const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
724     const MCExpr *LHS = ApplyModifierToExpr(BE->getLHS(), Variant);
725     const MCExpr *RHS = ApplyModifierToExpr(BE->getRHS(), Variant);
726
727     if (!LHS && !RHS)
728       return 0;
729
730     if (!LHS) LHS = BE->getLHS();
731     if (!RHS) RHS = BE->getRHS();
732
733     return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
734   }
735   }
736
737   assert(0 && "Invalid expression kind!");
738   return 0;
739 }
740
741 /// ParseExpression - Parse an expression and return it.
742 ///
743 ///  expr ::= expr &&,|| expr               -> lowest.
744 ///  expr ::= expr |,^,&,! expr
745 ///  expr ::= expr ==,!=,<>,<,<=,>,>= expr
746 ///  expr ::= expr <<,>> expr
747 ///  expr ::= expr +,- expr
748 ///  expr ::= expr *,/,% expr               -> highest.
749 ///  expr ::= primaryexpr
750 ///
751 bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
752   // Parse the expression.
753   Res = 0;
754   if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
755     return true;
756
757   // As a special case, we support 'a op b @ modifier' by rewriting the
758   // expression to include the modifier. This is inefficient, but in general we
759   // expect users to use 'a@modifier op b'.
760   if (Lexer.getKind() == AsmToken::At) {
761     Lex();
762
763     if (Lexer.isNot(AsmToken::Identifier))
764       return TokError("unexpected symbol modifier following '@'");
765
766     MCSymbolRefExpr::VariantKind Variant =
767       MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
768     if (Variant == MCSymbolRefExpr::VK_Invalid)
769       return TokError("invalid variant '" + getTok().getIdentifier() + "'");
770
771     const MCExpr *ModifiedRes = ApplyModifierToExpr(Res, Variant);
772     if (!ModifiedRes) {
773       return TokError("invalid modifier '" + getTok().getIdentifier() +
774                       "' (no symbols present)");
775       return true;
776     }
777
778     Res = ModifiedRes;
779     Lex();
780   }
781
782   // Try to constant fold it up front, if possible.
783   int64_t Value;
784   if (Res->EvaluateAsAbsolute(Value))
785     Res = MCConstantExpr::Create(Value, getContext());
786
787   return false;
788 }
789
790 bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
791   Res = 0;
792   return ParseParenExpr(Res, EndLoc) ||
793          ParseBinOpRHS(1, Res, EndLoc);
794 }
795
796 bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
797   const MCExpr *Expr;
798
799   SMLoc StartLoc = Lexer.getLoc();
800   if (ParseExpression(Expr))
801     return true;
802
803   if (!Expr->EvaluateAsAbsolute(Res))
804     return Error(StartLoc, "expected absolute expression");
805
806   return false;
807 }
808
809 static unsigned getBinOpPrecedence(AsmToken::TokenKind K,
810                                    MCBinaryExpr::Opcode &Kind) {
811   switch (K) {
812   default:
813     return 0;    // not a binop.
814
815     // Lowest Precedence: &&, ||
816   case AsmToken::AmpAmp:
817     Kind = MCBinaryExpr::LAnd;
818     return 1;
819   case AsmToken::PipePipe:
820     Kind = MCBinaryExpr::LOr;
821     return 1;
822
823
824     // Low Precedence: |, &, ^
825     //
826     // FIXME: gas seems to support '!' as an infix operator?
827   case AsmToken::Pipe:
828     Kind = MCBinaryExpr::Or;
829     return 2;
830   case AsmToken::Caret:
831     Kind = MCBinaryExpr::Xor;
832     return 2;
833   case AsmToken::Amp:
834     Kind = MCBinaryExpr::And;
835     return 2;
836
837     // Low Intermediate Precedence: ==, !=, <>, <, <=, >, >=
838   case AsmToken::EqualEqual:
839     Kind = MCBinaryExpr::EQ;
840     return 3;
841   case AsmToken::ExclaimEqual:
842   case AsmToken::LessGreater:
843     Kind = MCBinaryExpr::NE;
844     return 3;
845   case AsmToken::Less:
846     Kind = MCBinaryExpr::LT;
847     return 3;
848   case AsmToken::LessEqual:
849     Kind = MCBinaryExpr::LTE;
850     return 3;
851   case AsmToken::Greater:
852     Kind = MCBinaryExpr::GT;
853     return 3;
854   case AsmToken::GreaterEqual:
855     Kind = MCBinaryExpr::GTE;
856     return 3;
857
858     // Intermediate Precedence: <<, >>
859   case AsmToken::LessLess:
860     Kind = MCBinaryExpr::Shl;
861     return 4;
862   case AsmToken::GreaterGreater:
863     Kind = MCBinaryExpr::Shr;
864     return 4;
865
866     // High Intermediate Precedence: +, -
867   case AsmToken::Plus:
868     Kind = MCBinaryExpr::Add;
869     return 5;
870   case AsmToken::Minus:
871     Kind = MCBinaryExpr::Sub;
872     return 5;
873
874     // Highest Precedence: *, /, %
875   case AsmToken::Star:
876     Kind = MCBinaryExpr::Mul;
877     return 6;
878   case AsmToken::Slash:
879     Kind = MCBinaryExpr::Div;
880     return 6;
881   case AsmToken::Percent:
882     Kind = MCBinaryExpr::Mod;
883     return 6;
884   }
885 }
886
887
888 /// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
889 /// Res contains the LHS of the expression on input.
890 bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
891                               SMLoc &EndLoc) {
892   while (1) {
893     MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
894     unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
895
896     // If the next token is lower precedence than we are allowed to eat, return
897     // successfully with what we ate already.
898     if (TokPrec < Precedence)
899       return false;
900
901     Lex();
902
903     // Eat the next primary expression.
904     const MCExpr *RHS;
905     if (ParsePrimaryExpr(RHS, EndLoc)) return true;
906
907     // If BinOp binds less tightly with RHS than the operator after RHS, let
908     // the pending operator take RHS as its LHS.
909     MCBinaryExpr::Opcode Dummy;
910     unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
911     if (TokPrec < NextTokPrec) {
912       if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
913     }
914
915     // Merge LHS and RHS according to operator.
916     Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
917   }
918 }
919
920
921
922
923 /// ParseStatement:
924 ///   ::= EndOfStatement
925 ///   ::= Label* Directive ...Operands... EndOfStatement
926 ///   ::= Label* Identifier OperandList* EndOfStatement
927 bool AsmParser::ParseStatement() {
928   if (Lexer.is(AsmToken::EndOfStatement)) {
929     Out.AddBlankLine();
930     Lex();
931     return false;
932   }
933
934   // Statements always start with an identifier or are a full line comment.
935   AsmToken ID = getTok();
936   SMLoc IDLoc = ID.getLoc();
937   StringRef IDVal;
938   int64_t LocalLabelVal = -1;
939   // A full line comment is a '#' as the first token.
940   if (Lexer.is(AsmToken::Hash)) {
941     EatToEndOfStatement();
942     return false;
943   }
944
945   // Allow an integer followed by a ':' as a directional local label.
946   if (Lexer.is(AsmToken::Integer)) {
947     LocalLabelVal = getTok().getIntVal();
948     if (LocalLabelVal < 0) {
949       if (!TheCondState.Ignore)
950         return TokError("unexpected token at start of statement");
951       IDVal = "";
952     }
953     else {
954       IDVal = getTok().getString();
955       Lex(); // Consume the integer token to be used as an identifier token.
956       if (Lexer.getKind() != AsmToken::Colon) {
957         if (!TheCondState.Ignore)
958           return TokError("unexpected token at start of statement");
959       }
960     }
961
962   } else if (Lexer.is(AsmToken::Dot)) {
963     // Treat '.' as a valid identifier in this context.
964     Lex();
965     IDVal = ".";
966
967   } else if (ParseIdentifier(IDVal)) {
968     if (!TheCondState.Ignore)
969       return TokError("unexpected token at start of statement");
970     IDVal = "";
971   }
972
973
974   // Handle conditional assembly here before checking for skipping.  We
975   // have to do this so that .endif isn't skipped in a ".if 0" block for
976   // example.
977   if (IDVal == ".if")
978     return ParseDirectiveIf(IDLoc);
979   if (IDVal == ".ifdef")
980     return ParseDirectiveIfdef(IDLoc, true);
981   if (IDVal == ".ifndef" || IDVal == ".ifnotdef")
982     return ParseDirectiveIfdef(IDLoc, false);
983   if (IDVal == ".elseif")
984     return ParseDirectiveElseIf(IDLoc);
985   if (IDVal == ".else")
986     return ParseDirectiveElse(IDLoc);
987   if (IDVal == ".endif")
988     return ParseDirectiveEndIf(IDLoc);
989
990   // If we are in a ".if 0" block, ignore this statement.
991   if (TheCondState.Ignore) {
992     EatToEndOfStatement();
993     return false;
994   }
995
996   // FIXME: Recurse on local labels?
997
998   // See what kind of statement we have.
999   switch (Lexer.getKind()) {
1000   case AsmToken::Colon: {
1001     CheckForValidSection();
1002
1003     // identifier ':'   -> Label.
1004     Lex();
1005
1006     // Diagnose attempt to use '.' as a label.
1007     if (IDVal == ".")
1008       return Error(IDLoc, "invalid use of pseudo-symbol '.' as a label");
1009
1010     // Diagnose attempt to use a variable as a label.
1011     //
1012     // FIXME: Diagnostics. Note the location of the definition as a label.
1013     // FIXME: This doesn't diagnose assignment to a symbol which has been
1014     // implicitly marked as external.
1015     MCSymbol *Sym;
1016     if (LocalLabelVal == -1)
1017       Sym = getContext().GetOrCreateSymbol(IDVal);
1018     else
1019       Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
1020     if (!Sym->isUndefined() || Sym->isVariable())
1021       return Error(IDLoc, "invalid symbol redefinition");
1022
1023     // Emit the label.
1024     Out.EmitLabel(Sym);
1025
1026     // Consume any end of statement token, if present, to avoid spurious
1027     // AddBlankLine calls().
1028     if (Lexer.is(AsmToken::EndOfStatement)) {
1029       Lex();
1030       if (Lexer.is(AsmToken::Eof))
1031         return false;
1032     }
1033
1034     return ParseStatement();
1035   }
1036
1037   case AsmToken::Equal:
1038     // identifier '=' ... -> assignment statement
1039     Lex();
1040
1041     return ParseAssignment(IDVal, true);
1042
1043   default: // Normal instruction or directive.
1044     break;
1045   }
1046
1047   // If macros are enabled, check to see if this is a macro instantiation.
1048   if (MacrosEnabled)
1049     if (const Macro *M = MacroMap.lookup(IDVal))
1050       return HandleMacroEntry(IDVal, IDLoc, M);
1051
1052   // Otherwise, we have a normal instruction or directive.
1053   if (IDVal[0] == '.' && IDVal != ".") {
1054     // Assembler features
1055     if (IDVal == ".set" || IDVal == ".equ")
1056       return ParseDirectiveSet(IDVal, true);
1057     if (IDVal == ".equiv")
1058       return ParseDirectiveSet(IDVal, false);
1059
1060     // Data directives
1061
1062     if (IDVal == ".ascii")
1063       return ParseDirectiveAscii(IDVal, false);
1064     if (IDVal == ".asciz" || IDVal == ".string")
1065       return ParseDirectiveAscii(IDVal, true);
1066
1067     if (IDVal == ".byte")
1068       return ParseDirectiveValue(1);
1069     if (IDVal == ".short")
1070       return ParseDirectiveValue(2);
1071     if (IDVal == ".value")
1072       return ParseDirectiveValue(2);
1073     if (IDVal == ".2byte")
1074       return ParseDirectiveValue(2);
1075     if (IDVal == ".long")
1076       return ParseDirectiveValue(4);
1077     if (IDVal == ".int")
1078       return ParseDirectiveValue(4);
1079     if (IDVal == ".4byte")
1080       return ParseDirectiveValue(4);
1081     if (IDVal == ".quad")
1082       return ParseDirectiveValue(8);
1083     if (IDVal == ".8byte")
1084       return ParseDirectiveValue(8);
1085     if (IDVal == ".single" || IDVal == ".float")
1086       return ParseDirectiveRealValue(APFloat::IEEEsingle);
1087     if (IDVal == ".double")
1088       return ParseDirectiveRealValue(APFloat::IEEEdouble);
1089
1090     if (IDVal == ".align") {
1091       bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
1092       return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
1093     }
1094     if (IDVal == ".align32") {
1095       bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
1096       return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
1097     }
1098     if (IDVal == ".balign")
1099       return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
1100     if (IDVal == ".balignw")
1101       return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
1102     if (IDVal == ".balignl")
1103       return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
1104     if (IDVal == ".p2align")
1105       return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
1106     if (IDVal == ".p2alignw")
1107       return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
1108     if (IDVal == ".p2alignl")
1109       return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
1110
1111     if (IDVal == ".org")
1112       return ParseDirectiveOrg();
1113
1114     if (IDVal == ".fill")
1115       return ParseDirectiveFill();
1116     if (IDVal == ".space" || IDVal == ".skip")
1117       return ParseDirectiveSpace();
1118     if (IDVal == ".zero")
1119       return ParseDirectiveZero();
1120
1121     // Symbol attribute directives
1122
1123     if (IDVal == ".globl" || IDVal == ".global")
1124       return ParseDirectiveSymbolAttribute(MCSA_Global);
1125     if (IDVal == ".indirect_symbol")
1126       return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
1127     if (IDVal == ".lazy_reference")
1128       return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
1129     if (IDVal == ".no_dead_strip")
1130       return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
1131     if (IDVal == ".symbol_resolver")
1132       return ParseDirectiveSymbolAttribute(MCSA_SymbolResolver);
1133     if (IDVal == ".private_extern")
1134       return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
1135     if (IDVal == ".reference")
1136       return ParseDirectiveSymbolAttribute(MCSA_Reference);
1137     if (IDVal == ".weak_definition")
1138       return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
1139     if (IDVal == ".weak_reference")
1140       return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
1141     if (IDVal == ".weak_def_can_be_hidden")
1142       return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
1143
1144     if (IDVal == ".comm" || IDVal == ".common")
1145       return ParseDirectiveComm(/*IsLocal=*/false);
1146     if (IDVal == ".lcomm")
1147       return ParseDirectiveComm(/*IsLocal=*/true);
1148
1149     if (IDVal == ".abort")
1150       return ParseDirectiveAbort();
1151     if (IDVal == ".include")
1152       return ParseDirectiveInclude();
1153
1154     if (IDVal == ".code16")
1155       return TokError(Twine(IDVal) + " not supported yet");
1156
1157     // Look up the handler in the handler table.
1158     std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
1159       DirectiveMap.lookup(IDVal);
1160     if (Handler.first)
1161       return (*Handler.second)(Handler.first, IDVal, IDLoc);
1162
1163     // Target hook for parsing target specific directives.
1164     if (!getTargetParser().ParseDirective(ID))
1165       return false;
1166
1167     bool retval = Warning(IDLoc, "ignoring directive for now");
1168     EatToEndOfStatement();
1169     return retval;
1170   }
1171
1172   CheckForValidSection();
1173
1174   // Canonicalize the opcode to lower case.
1175   SmallString<128> Opcode;
1176   for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
1177     Opcode.push_back(tolower(IDVal[i]));
1178
1179   SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
1180   bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc,
1181                                                      ParsedOperands);
1182
1183   // Dump the parsed representation, if requested.
1184   if (getShowParsedOperands()) {
1185     SmallString<256> Str;
1186     raw_svector_ostream OS(Str);
1187     OS << "parsed instruction: [";
1188     for (unsigned i = 0; i != ParsedOperands.size(); ++i) {
1189       if (i != 0)
1190         OS << ", ";
1191       ParsedOperands[i]->print(OS);
1192     }
1193     OS << "]";
1194
1195     PrintMessage(IDLoc, OS.str(), "note");
1196   }
1197
1198   // If parsing succeeded, match the instruction.
1199   if (!HadError)
1200     HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, ParsedOperands,
1201                                                          Out);
1202
1203   // Free any parsed operands.
1204   for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
1205     delete ParsedOperands[i];
1206
1207   // Don't skip the rest of the line, the instruction parser is responsible for
1208   // that.
1209   return false;
1210 }
1211
1212 bool AsmParser::expandMacro(SmallString<256> &Buf, StringRef Body,
1213                             const std::vector<StringRef> &Parameters,
1214                             const std::vector<std::vector<AsmToken> > &A,
1215                             const SMLoc &L) {
1216   raw_svector_ostream OS(Buf);
1217   unsigned NParameters = Parameters.size();
1218   if (NParameters != 0 && NParameters != A.size())
1219     return Error(L, "Wrong number of arguments");
1220
1221   while (!Body.empty()) {
1222     // Scan for the next substitution.
1223     std::size_t End = Body.size(), Pos = 0;
1224     for (; Pos != End; ++Pos) {
1225       // Check for a substitution or escape.
1226       if (!NParameters) {
1227         // This macro has no parameters, look for $0, $1, etc.
1228         if (Body[Pos] != '$' || Pos + 1 == End)
1229           continue;
1230
1231         char Next = Body[Pos + 1];
1232         if (Next == '$' || Next == 'n' || isdigit(Next))
1233           break;
1234       } else {
1235         // This macro has parameters, look for \foo, \bar, etc.
1236         if (Body[Pos] == '\\' && Pos + 1 != End)
1237           break;
1238       }
1239     }
1240
1241     // Add the prefix.
1242     OS << Body.slice(0, Pos);
1243
1244     // Check if we reached the end.
1245     if (Pos == End)
1246       break;
1247
1248     if (!NParameters) {
1249       switch (Body[Pos+1]) {
1250         // $$ => $
1251       case '$':
1252         OS << '$';
1253         break;
1254
1255         // $n => number of arguments
1256       case 'n':
1257         OS << A.size();
1258         break;
1259
1260         // $[0-9] => argument
1261       default: {
1262         // Missing arguments are ignored.
1263         unsigned Index = Body[Pos+1] - '0';
1264         if (Index >= A.size())
1265           break;
1266
1267         // Otherwise substitute with the token values, with spaces eliminated.
1268         for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
1269                ie = A[Index].end(); it != ie; ++it)
1270           OS << it->getString();
1271         break;
1272       }
1273       }
1274       Pos += 2;
1275     } else {
1276       unsigned I = Pos + 1;
1277       while (isalnum(Body[I]) && I + 1 != End)
1278         ++I;
1279
1280       const char *Begin = Body.data() + Pos +1;
1281       StringRef Argument(Begin, I - (Pos +1));
1282       unsigned Index = 0;
1283       for (; Index < NParameters; ++Index)
1284         if (Parameters[Index] == Argument)
1285           break;
1286
1287       // FIXME: We should error at the macro definition.
1288       if (Index == NParameters)
1289         return Error(L, "Parameter not found");
1290
1291       for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
1292              ie = A[Index].end(); it != ie; ++it)
1293         OS << it->getString();
1294
1295       Pos += 1 + Argument.size();
1296     }
1297     // Update the scan point.
1298     Body = Body.substr(Pos);
1299   }
1300
1301   // We include the .endmacro in the buffer as our queue to exit the macro
1302   // instantiation.
1303   OS << ".endmacro\n";
1304   return false;
1305 }
1306
1307 MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
1308                                        MemoryBuffer *I)
1309   : TheMacro(M), Instantiation(I), InstantiationLoc(IL), ExitLoc(EL)
1310 {
1311 }
1312
1313 bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
1314                                  const Macro *M) {
1315   // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1316   // this, although we should protect against infinite loops.
1317   if (ActiveMacros.size() == 20)
1318     return TokError("macros cannot be nested more than 20 levels deep");
1319
1320   // Parse the macro instantiation arguments.
1321   std::vector<std::vector<AsmToken> > MacroArguments;
1322   MacroArguments.push_back(std::vector<AsmToken>());
1323   unsigned ParenLevel = 0;
1324   for (;;) {
1325     if (Lexer.is(AsmToken::Eof))
1326       return TokError("unexpected token in macro instantiation");
1327     if (Lexer.is(AsmToken::EndOfStatement))
1328       break;
1329
1330     // If we aren't inside parentheses and this is a comma, start a new token
1331     // list.
1332     if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1333       MacroArguments.push_back(std::vector<AsmToken>());
1334     } else {
1335       // Adjust the current parentheses level.
1336       if (Lexer.is(AsmToken::LParen))
1337         ++ParenLevel;
1338       else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1339         --ParenLevel;
1340
1341       // Append the token to the current argument list.
1342       MacroArguments.back().push_back(getTok());
1343     }
1344     Lex();
1345   }
1346
1347   // Macro instantiation is lexical, unfortunately. We construct a new buffer
1348   // to hold the macro body with substitutions.
1349   SmallString<256> Buf;
1350   StringRef Body = M->Body;
1351
1352   if (expandMacro(Buf, Body, M->Parameters, MacroArguments, getTok().getLoc()))
1353     return true;
1354
1355   MemoryBuffer *Instantiation =
1356     MemoryBuffer::getMemBufferCopy(Buf.str(), "<instantiation>");
1357
1358   // Create the macro instantiation object and add to the current macro
1359   // instantiation stack.
1360   MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
1361                                                   getTok().getLoc(),
1362                                                   Instantiation);
1363   ActiveMacros.push_back(MI);
1364
1365   // Jump to the macro instantiation and prime the lexer.
1366   CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1367   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1368   Lex();
1369
1370   return false;
1371 }
1372
1373 void AsmParser::HandleMacroExit() {
1374   // Jump to the EndOfStatement we should return to, and consume it.
1375   JumpToLoc(ActiveMacros.back()->ExitLoc);
1376   Lex();
1377
1378   // Pop the instantiation entry.
1379   delete ActiveMacros.back();
1380   ActiveMacros.pop_back();
1381 }
1382
1383 static void MarkUsed(const MCExpr *Value) {
1384   switch (Value->getKind()) {
1385   case MCExpr::Binary:
1386     MarkUsed(static_cast<const MCBinaryExpr*>(Value)->getLHS());
1387     MarkUsed(static_cast<const MCBinaryExpr*>(Value)->getRHS());
1388     break;
1389   case MCExpr::Target:
1390   case MCExpr::Constant:
1391     break;
1392   case MCExpr::SymbolRef: {
1393     static_cast<const MCSymbolRefExpr*>(Value)->getSymbol().setUsed(true);
1394     break;
1395   }
1396   case MCExpr::Unary:
1397     MarkUsed(static_cast<const MCUnaryExpr*>(Value)->getSubExpr());
1398     break;
1399   }
1400 }
1401
1402 bool AsmParser::ParseAssignment(StringRef Name, bool allow_redef) {
1403   // FIXME: Use better location, we should use proper tokens.
1404   SMLoc EqualLoc = Lexer.getLoc();
1405
1406   const MCExpr *Value;
1407   if (ParseExpression(Value))
1408     return true;
1409
1410   MarkUsed(Value);
1411
1412   if (Lexer.isNot(AsmToken::EndOfStatement))
1413     return TokError("unexpected token in assignment");
1414
1415   // Error on assignment to '.'.
1416   if (Name == ".") {
1417     return Error(EqualLoc, ("assignment to pseudo-symbol '.' is unsupported "
1418                             "(use '.space' or '.org').)"));
1419   }
1420
1421   // Eat the end of statement marker.
1422   Lex();
1423
1424   // Validate that the LHS is allowed to be a variable (either it has not been
1425   // used as a symbol, or it is an absolute symbol).
1426   MCSymbol *Sym = getContext().LookupSymbol(Name);
1427   if (Sym) {
1428     // Diagnose assignment to a label.
1429     //
1430     // FIXME: Diagnostics. Note the location of the definition as a label.
1431     // FIXME: Diagnose assignment to protected identifier (e.g., register name).
1432     if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable())
1433       ; // Allow redefinitions of undefined symbols only used in directives.
1434     else if (!Sym->isUndefined() && (!Sym->isVariable() || !allow_redef))
1435       return Error(EqualLoc, "redefinition of '" + Name + "'");
1436     else if (!Sym->isVariable())
1437       return Error(EqualLoc, "invalid assignment to '" + Name + "'");
1438     else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
1439       return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1440                    Name + "'");
1441
1442     // Don't count these checks as uses.
1443     Sym->setUsed(false);
1444   } else
1445     Sym = getContext().GetOrCreateSymbol(Name);
1446
1447   // FIXME: Handle '.'.
1448
1449   // Do the assignment.
1450   Out.EmitAssignment(Sym, Value);
1451
1452   return false;
1453 }
1454
1455 /// ParseIdentifier:
1456 ///   ::= identifier
1457 ///   ::= string
1458 bool AsmParser::ParseIdentifier(StringRef &Res) {
1459   // The assembler has relaxed rules for accepting identifiers, in particular we
1460   // allow things like '.globl $foo', which would normally be separate
1461   // tokens. At this level, we have already lexed so we cannot (currently)
1462   // handle this as a context dependent token, instead we detect adjacent tokens
1463   // and return the combined identifier.
1464   if (Lexer.is(AsmToken::Dollar)) {
1465     SMLoc DollarLoc = getLexer().getLoc();
1466
1467     // Consume the dollar sign, and check for a following identifier.
1468     Lex();
1469     if (Lexer.isNot(AsmToken::Identifier))
1470       return true;
1471
1472     // We have a '$' followed by an identifier, make sure they are adjacent.
1473     if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
1474       return true;
1475
1476     // Construct the joined identifier and consume the token.
1477     Res = StringRef(DollarLoc.getPointer(),
1478                     getTok().getIdentifier().size() + 1);
1479     Lex();
1480     return false;
1481   }
1482
1483   if (Lexer.isNot(AsmToken::Identifier) &&
1484       Lexer.isNot(AsmToken::String))
1485     return true;
1486
1487   Res = getTok().getIdentifier();
1488
1489   Lex(); // Consume the identifier token.
1490
1491   return false;
1492 }
1493
1494 /// ParseDirectiveSet:
1495 ///   ::= .equ identifier ',' expression
1496 ///   ::= .equiv identifier ',' expression
1497 ///   ::= .set identifier ',' expression
1498 bool AsmParser::ParseDirectiveSet(StringRef IDVal, bool allow_redef) {
1499   StringRef Name;
1500
1501   if (ParseIdentifier(Name))
1502     return TokError("expected identifier after '" + Twine(IDVal) + "'");
1503
1504   if (getLexer().isNot(AsmToken::Comma))
1505     return TokError("unexpected token in '" + Twine(IDVal) + "'");
1506   Lex();
1507
1508   return ParseAssignment(Name, allow_redef);
1509 }
1510
1511 bool AsmParser::ParseEscapedString(std::string &Data) {
1512   assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
1513
1514   Data = "";
1515   StringRef Str = getTok().getStringContents();
1516   for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1517     if (Str[i] != '\\') {
1518       Data += Str[i];
1519       continue;
1520     }
1521
1522     // Recognize escaped characters. Note that this escape semantics currently
1523     // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1524     ++i;
1525     if (i == e)
1526       return TokError("unexpected backslash at end of string");
1527
1528     // Recognize octal sequences.
1529     if ((unsigned) (Str[i] - '0') <= 7) {
1530       // Consume up to three octal characters.
1531       unsigned Value = Str[i] - '0';
1532
1533       if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1534         ++i;
1535         Value = Value * 8 + (Str[i] - '0');
1536
1537         if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1538           ++i;
1539           Value = Value * 8 + (Str[i] - '0');
1540         }
1541       }
1542
1543       if (Value > 255)
1544         return TokError("invalid octal escape sequence (out of range)");
1545
1546       Data += (unsigned char) Value;
1547       continue;
1548     }
1549
1550     // Otherwise recognize individual escapes.
1551     switch (Str[i]) {
1552     default:
1553       // Just reject invalid escape sequences for now.
1554       return TokError("invalid escape sequence (unrecognized character)");
1555
1556     case 'b': Data += '\b'; break;
1557     case 'f': Data += '\f'; break;
1558     case 'n': Data += '\n'; break;
1559     case 'r': Data += '\r'; break;
1560     case 't': Data += '\t'; break;
1561     case '"': Data += '"'; break;
1562     case '\\': Data += '\\'; break;
1563     }
1564   }
1565
1566   return false;
1567 }
1568
1569 /// ParseDirectiveAscii:
1570 ///   ::= ( .ascii | .asciz | .string ) [ "string" ( , "string" )* ]
1571 bool AsmParser::ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) {
1572   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1573     CheckForValidSection();
1574
1575     for (;;) {
1576       if (getLexer().isNot(AsmToken::String))
1577         return TokError("expected string in '" + Twine(IDVal) + "' directive");
1578
1579       std::string Data;
1580       if (ParseEscapedString(Data))
1581         return true;
1582
1583       getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
1584       if (ZeroTerminated)
1585         getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
1586
1587       Lex();
1588
1589       if (getLexer().is(AsmToken::EndOfStatement))
1590         break;
1591
1592       if (getLexer().isNot(AsmToken::Comma))
1593         return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
1594       Lex();
1595     }
1596   }
1597
1598   Lex();
1599   return false;
1600 }
1601
1602 /// ParseDirectiveValue
1603 ///  ::= (.byte | .short | ... ) [ expression (, expression)* ]
1604 bool AsmParser::ParseDirectiveValue(unsigned Size) {
1605   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1606     CheckForValidSection();
1607
1608     for (;;) {
1609       const MCExpr *Value;
1610       SMLoc ExprLoc = getLexer().getLoc();
1611       if (ParseExpression(Value))
1612         return true;
1613
1614       // Special case constant expressions to match code generator.
1615       if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
1616         assert(Size <= 8 && "Invalid size");
1617         uint64_t IntValue = MCE->getValue();
1618         if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
1619           return Error(ExprLoc, "literal value out of range for directive");
1620         getStreamer().EmitIntValue(IntValue, Size, DEFAULT_ADDRSPACE);
1621       } else
1622         getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
1623
1624       if (getLexer().is(AsmToken::EndOfStatement))
1625         break;
1626
1627       // FIXME: Improve diagnostic.
1628       if (getLexer().isNot(AsmToken::Comma))
1629         return TokError("unexpected token in directive");
1630       Lex();
1631     }
1632   }
1633
1634   Lex();
1635   return false;
1636 }
1637
1638 /// ParseDirectiveRealValue
1639 ///  ::= (.single | .double) [ expression (, expression)* ]
1640 bool AsmParser::ParseDirectiveRealValue(const fltSemantics &Semantics) {
1641   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1642     CheckForValidSection();
1643
1644     for (;;) {
1645       // We don't truly support arithmetic on floating point expressions, so we
1646       // have to manually parse unary prefixes.
1647       bool IsNeg = false;
1648       if (getLexer().is(AsmToken::Minus)) {
1649         Lex();
1650         IsNeg = true;
1651       } else if (getLexer().is(AsmToken::Plus))
1652         Lex();
1653
1654       if (getLexer().isNot(AsmToken::Integer) &&
1655           getLexer().isNot(AsmToken::Real) &&
1656           getLexer().isNot(AsmToken::Identifier))
1657         return TokError("unexpected token in directive");
1658
1659       // Convert to an APFloat.
1660       APFloat Value(Semantics);
1661       StringRef IDVal = getTok().getString();
1662       if (getLexer().is(AsmToken::Identifier)) {
1663         if (!IDVal.compare_lower("infinity") || !IDVal.compare_lower("inf"))
1664           Value = APFloat::getInf(Semantics);
1665         else if (!IDVal.compare_lower("nan"))
1666           Value = APFloat::getNaN(Semantics, false, ~0);
1667         else
1668           return TokError("invalid floating point literal");
1669       } else if (Value.convertFromString(IDVal, APFloat::rmNearestTiesToEven) ==
1670           APFloat::opInvalidOp)
1671         return TokError("invalid floating point literal");
1672       if (IsNeg)
1673         Value.changeSign();
1674
1675       // Consume the numeric token.
1676       Lex();
1677
1678       // Emit the value as an integer.
1679       APInt AsInt = Value.bitcastToAPInt();
1680       getStreamer().EmitIntValue(AsInt.getLimitedValue(),
1681                                  AsInt.getBitWidth() / 8, DEFAULT_ADDRSPACE);
1682
1683       if (getLexer().is(AsmToken::EndOfStatement))
1684         break;
1685
1686       if (getLexer().isNot(AsmToken::Comma))
1687         return TokError("unexpected token in directive");
1688       Lex();
1689     }
1690   }
1691
1692   Lex();
1693   return false;
1694 }
1695
1696 /// ParseDirectiveSpace
1697 ///  ::= .space expression [ , expression ]
1698 bool AsmParser::ParseDirectiveSpace() {
1699   CheckForValidSection();
1700
1701   int64_t NumBytes;
1702   if (ParseAbsoluteExpression(NumBytes))
1703     return true;
1704
1705   int64_t FillExpr = 0;
1706   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1707     if (getLexer().isNot(AsmToken::Comma))
1708       return TokError("unexpected token in '.space' directive");
1709     Lex();
1710
1711     if (ParseAbsoluteExpression(FillExpr))
1712       return true;
1713
1714     if (getLexer().isNot(AsmToken::EndOfStatement))
1715       return TokError("unexpected token in '.space' directive");
1716   }
1717
1718   Lex();
1719
1720   if (NumBytes <= 0)
1721     return TokError("invalid number of bytes in '.space' directive");
1722
1723   // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
1724   getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
1725
1726   return false;
1727 }
1728
1729 /// ParseDirectiveZero
1730 ///  ::= .zero expression
1731 bool AsmParser::ParseDirectiveZero() {
1732   CheckForValidSection();
1733
1734   int64_t NumBytes;
1735   if (ParseAbsoluteExpression(NumBytes))
1736     return true;
1737
1738   int64_t Val = 0;
1739   if (getLexer().is(AsmToken::Comma)) {
1740     Lex();
1741     if (ParseAbsoluteExpression(Val))
1742       return true;
1743   }
1744
1745   if (getLexer().isNot(AsmToken::EndOfStatement))
1746     return TokError("unexpected token in '.zero' directive");
1747
1748   Lex();
1749
1750   getStreamer().EmitFill(NumBytes, Val, DEFAULT_ADDRSPACE);
1751
1752   return false;
1753 }
1754
1755 /// ParseDirectiveFill
1756 ///  ::= .fill expression , expression , expression
1757 bool AsmParser::ParseDirectiveFill() {
1758   CheckForValidSection();
1759
1760   int64_t NumValues;
1761   if (ParseAbsoluteExpression(NumValues))
1762     return true;
1763
1764   if (getLexer().isNot(AsmToken::Comma))
1765     return TokError("unexpected token in '.fill' directive");
1766   Lex();
1767
1768   int64_t FillSize;
1769   if (ParseAbsoluteExpression(FillSize))
1770     return true;
1771
1772   if (getLexer().isNot(AsmToken::Comma))
1773     return TokError("unexpected token in '.fill' directive");
1774   Lex();
1775
1776   int64_t FillExpr;
1777   if (ParseAbsoluteExpression(FillExpr))
1778     return true;
1779
1780   if (getLexer().isNot(AsmToken::EndOfStatement))
1781     return TokError("unexpected token in '.fill' directive");
1782
1783   Lex();
1784
1785   if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
1786     return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
1787
1788   for (uint64_t i = 0, e = NumValues; i != e; ++i)
1789     getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
1790
1791   return false;
1792 }
1793
1794 /// ParseDirectiveOrg
1795 ///  ::= .org expression [ , expression ]
1796 bool AsmParser::ParseDirectiveOrg() {
1797   CheckForValidSection();
1798
1799   const MCExpr *Offset;
1800   if (ParseExpression(Offset))
1801     return true;
1802
1803   // Parse optional fill expression.
1804   int64_t FillExpr = 0;
1805   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1806     if (getLexer().isNot(AsmToken::Comma))
1807       return TokError("unexpected token in '.org' directive");
1808     Lex();
1809
1810     if (ParseAbsoluteExpression(FillExpr))
1811       return true;
1812
1813     if (getLexer().isNot(AsmToken::EndOfStatement))
1814       return TokError("unexpected token in '.org' directive");
1815   }
1816
1817   Lex();
1818
1819   // FIXME: Only limited forms of relocatable expressions are accepted here, it
1820   // has to be relative to the current section.
1821   getStreamer().EmitValueToOffset(Offset, FillExpr);
1822
1823   return false;
1824 }
1825
1826 /// ParseDirectiveAlign
1827 ///  ::= {.align, ...} expression [ , expression [ , expression ]]
1828 bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
1829   CheckForValidSection();
1830
1831   SMLoc AlignmentLoc = getLexer().getLoc();
1832   int64_t Alignment;
1833   if (ParseAbsoluteExpression(Alignment))
1834     return true;
1835
1836   SMLoc MaxBytesLoc;
1837   bool HasFillExpr = false;
1838   int64_t FillExpr = 0;
1839   int64_t MaxBytesToFill = 0;
1840   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1841     if (getLexer().isNot(AsmToken::Comma))
1842       return TokError("unexpected token in directive");
1843     Lex();
1844
1845     // The fill expression can be omitted while specifying a maximum number of
1846     // alignment bytes, e.g:
1847     //  .align 3,,4
1848     if (getLexer().isNot(AsmToken::Comma)) {
1849       HasFillExpr = true;
1850       if (ParseAbsoluteExpression(FillExpr))
1851         return true;
1852     }
1853
1854     if (getLexer().isNot(AsmToken::EndOfStatement)) {
1855       if (getLexer().isNot(AsmToken::Comma))
1856         return TokError("unexpected token in directive");
1857       Lex();
1858
1859       MaxBytesLoc = getLexer().getLoc();
1860       if (ParseAbsoluteExpression(MaxBytesToFill))
1861         return true;
1862
1863       if (getLexer().isNot(AsmToken::EndOfStatement))
1864         return TokError("unexpected token in directive");
1865     }
1866   }
1867
1868   Lex();
1869
1870   if (!HasFillExpr)
1871     FillExpr = 0;
1872
1873   // Compute alignment in bytes.
1874   if (IsPow2) {
1875     // FIXME: Diagnose overflow.
1876     if (Alignment >= 32) {
1877       Error(AlignmentLoc, "invalid alignment value");
1878       Alignment = 31;
1879     }
1880
1881     Alignment = 1ULL << Alignment;
1882   }
1883
1884   // Diagnose non-sensical max bytes to align.
1885   if (MaxBytesLoc.isValid()) {
1886     if (MaxBytesToFill < 1) {
1887       Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
1888             "many bytes, ignoring maximum bytes expression");
1889       MaxBytesToFill = 0;
1890     }
1891
1892     if (MaxBytesToFill >= Alignment) {
1893       Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
1894               "has no effect");
1895       MaxBytesToFill = 0;
1896     }
1897   }
1898
1899   // Check whether we should use optimal code alignment for this .align
1900   // directive.
1901   bool UseCodeAlign = getStreamer().getCurrentSection()->UseCodeAlign();
1902   if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
1903       ValueSize == 1 && UseCodeAlign) {
1904     getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
1905   } else {
1906     // FIXME: Target specific behavior about how the "extra" bytes are filled.
1907     getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
1908                                        MaxBytesToFill);
1909   }
1910
1911   return false;
1912 }
1913
1914 /// ParseDirectiveSymbolAttribute
1915 ///  ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
1916 bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
1917   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1918     for (;;) {
1919       StringRef Name;
1920
1921       if (ParseIdentifier(Name))
1922         return TokError("expected identifier in directive");
1923
1924       MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
1925
1926       getStreamer().EmitSymbolAttribute(Sym, Attr);
1927
1928       if (getLexer().is(AsmToken::EndOfStatement))
1929         break;
1930
1931       if (getLexer().isNot(AsmToken::Comma))
1932         return TokError("unexpected token in directive");
1933       Lex();
1934     }
1935   }
1936
1937   Lex();
1938   return false;
1939 }
1940
1941 /// ParseDirectiveComm
1942 ///  ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
1943 bool AsmParser::ParseDirectiveComm(bool IsLocal) {
1944   CheckForValidSection();
1945
1946   SMLoc IDLoc = getLexer().getLoc();
1947   StringRef Name;
1948   if (ParseIdentifier(Name))
1949     return TokError("expected identifier in directive");
1950
1951   // Handle the identifier as the key symbol.
1952   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
1953
1954   if (getLexer().isNot(AsmToken::Comma))
1955     return TokError("unexpected token in directive");
1956   Lex();
1957
1958   int64_t Size;
1959   SMLoc SizeLoc = getLexer().getLoc();
1960   if (ParseAbsoluteExpression(Size))
1961     return true;
1962
1963   int64_t Pow2Alignment = 0;
1964   SMLoc Pow2AlignmentLoc;
1965   if (getLexer().is(AsmToken::Comma)) {
1966     Lex();
1967     Pow2AlignmentLoc = getLexer().getLoc();
1968     if (ParseAbsoluteExpression(Pow2Alignment))
1969       return true;
1970
1971     // If this target takes alignments in bytes (not log) validate and convert.
1972     if (Lexer.getMAI().getAlignmentIsInBytes()) {
1973       if (!isPowerOf2_64(Pow2Alignment))
1974         return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
1975       Pow2Alignment = Log2_64(Pow2Alignment);
1976     }
1977   }
1978
1979   if (getLexer().isNot(AsmToken::EndOfStatement))
1980     return TokError("unexpected token in '.comm' or '.lcomm' directive");
1981
1982   Lex();
1983
1984   // NOTE: a size of zero for a .comm should create a undefined symbol
1985   // but a size of .lcomm creates a bss symbol of size zero.
1986   if (Size < 0)
1987     return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
1988                  "be less than zero");
1989
1990   // NOTE: The alignment in the directive is a power of 2 value, the assembler
1991   // may internally end up wanting an alignment in bytes.
1992   // FIXME: Diagnose overflow.
1993   if (Pow2Alignment < 0)
1994     return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
1995                  "alignment, can't be less than zero");
1996
1997   if (!Sym->isUndefined())
1998     return Error(IDLoc, "invalid symbol redefinition");
1999
2000   // '.lcomm' is equivalent to '.zerofill'.
2001   // Create the Symbol as a common or local common with Size and Pow2Alignment
2002   if (IsLocal) {
2003     getStreamer().EmitZerofill(Ctx.getMachOSection(
2004                                  "__DATA", "__bss", MCSectionMachO::S_ZEROFILL,
2005                                  0, SectionKind::getBSS()),
2006                                Sym, Size, 1 << Pow2Alignment);
2007     return false;
2008   }
2009
2010   getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
2011   return false;
2012 }
2013
2014 /// ParseDirectiveAbort
2015 ///  ::= .abort [... message ...]
2016 bool AsmParser::ParseDirectiveAbort() {
2017   // FIXME: Use loc from directive.
2018   SMLoc Loc = getLexer().getLoc();
2019
2020   StringRef Str = ParseStringToEndOfStatement();
2021   if (getLexer().isNot(AsmToken::EndOfStatement))
2022     return TokError("unexpected token in '.abort' directive");
2023
2024   Lex();
2025
2026   if (Str.empty())
2027     Error(Loc, ".abort detected. Assembly stopping.");
2028   else
2029     Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
2030   // FIXME: Actually abort assembly here.
2031
2032   return false;
2033 }
2034
2035 /// ParseDirectiveInclude
2036 ///  ::= .include "filename"
2037 bool AsmParser::ParseDirectiveInclude() {
2038   if (getLexer().isNot(AsmToken::String))
2039     return TokError("expected string in '.include' directive");
2040
2041   std::string Filename = getTok().getString();
2042   SMLoc IncludeLoc = getLexer().getLoc();
2043   Lex();
2044
2045   if (getLexer().isNot(AsmToken::EndOfStatement))
2046     return TokError("unexpected token in '.include' directive");
2047
2048   // Strip the quotes.
2049   Filename = Filename.substr(1, Filename.size()-2);
2050
2051   // Attempt to switch the lexer to the included file before consuming the end
2052   // of statement to avoid losing it when we switch.
2053   if (EnterIncludeFile(Filename)) {
2054     Error(IncludeLoc, "Could not find include file '" + Filename + "'");
2055     return true;
2056   }
2057
2058   return false;
2059 }
2060
2061 /// ParseDirectiveIf
2062 /// ::= .if expression
2063 bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
2064   TheCondStack.push_back(TheCondState);
2065   TheCondState.TheCond = AsmCond::IfCond;
2066   if(TheCondState.Ignore) {
2067     EatToEndOfStatement();
2068   }
2069   else {
2070     int64_t ExprValue;
2071     if (ParseAbsoluteExpression(ExprValue))
2072       return true;
2073
2074     if (getLexer().isNot(AsmToken::EndOfStatement))
2075       return TokError("unexpected token in '.if' directive");
2076
2077     Lex();
2078
2079     TheCondState.CondMet = ExprValue;
2080     TheCondState.Ignore = !TheCondState.CondMet;
2081   }
2082
2083   return false;
2084 }
2085
2086 bool AsmParser::ParseDirectiveIfdef(SMLoc DirectiveLoc, bool expect_defined) {
2087   StringRef Name;
2088   TheCondStack.push_back(TheCondState);
2089   TheCondState.TheCond = AsmCond::IfCond;
2090
2091   if (TheCondState.Ignore) {
2092     EatToEndOfStatement();
2093   } else {
2094     if (ParseIdentifier(Name))
2095       return TokError("expected identifier after '.ifdef'");
2096
2097     Lex();
2098
2099     MCSymbol *Sym = getContext().LookupSymbol(Name);
2100
2101     if (expect_defined)
2102       TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
2103     else
2104       TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
2105     TheCondState.Ignore = !TheCondState.CondMet;
2106   }
2107
2108   return false;
2109 }
2110
2111 /// ParseDirectiveElseIf
2112 /// ::= .elseif expression
2113 bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
2114   if (TheCondState.TheCond != AsmCond::IfCond &&
2115       TheCondState.TheCond != AsmCond::ElseIfCond)
2116       Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
2117                           " an .elseif");
2118   TheCondState.TheCond = AsmCond::ElseIfCond;
2119
2120   bool LastIgnoreState = false;
2121   if (!TheCondStack.empty())
2122       LastIgnoreState = TheCondStack.back().Ignore;
2123   if (LastIgnoreState || TheCondState.CondMet) {
2124     TheCondState.Ignore = true;
2125     EatToEndOfStatement();
2126   }
2127   else {
2128     int64_t ExprValue;
2129     if (ParseAbsoluteExpression(ExprValue))
2130       return true;
2131
2132     if (getLexer().isNot(AsmToken::EndOfStatement))
2133       return TokError("unexpected token in '.elseif' directive");
2134
2135     Lex();
2136     TheCondState.CondMet = ExprValue;
2137     TheCondState.Ignore = !TheCondState.CondMet;
2138   }
2139
2140   return false;
2141 }
2142
2143 /// ParseDirectiveElse
2144 /// ::= .else
2145 bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
2146   if (getLexer().isNot(AsmToken::EndOfStatement))
2147     return TokError("unexpected token in '.else' directive");
2148
2149   Lex();
2150
2151   if (TheCondState.TheCond != AsmCond::IfCond &&
2152       TheCondState.TheCond != AsmCond::ElseIfCond)
2153       Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
2154                           ".elseif");
2155   TheCondState.TheCond = AsmCond::ElseCond;
2156   bool LastIgnoreState = false;
2157   if (!TheCondStack.empty())
2158     LastIgnoreState = TheCondStack.back().Ignore;
2159   if (LastIgnoreState || TheCondState.CondMet)
2160     TheCondState.Ignore = true;
2161   else
2162     TheCondState.Ignore = false;
2163
2164   return false;
2165 }
2166
2167 /// ParseDirectiveEndIf
2168 /// ::= .endif
2169 bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
2170   if (getLexer().isNot(AsmToken::EndOfStatement))
2171     return TokError("unexpected token in '.endif' directive");
2172
2173   Lex();
2174
2175   if ((TheCondState.TheCond == AsmCond::NoCond) ||
2176       TheCondStack.empty())
2177     Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
2178                         ".else");
2179   if (!TheCondStack.empty()) {
2180     TheCondState = TheCondStack.back();
2181     TheCondStack.pop_back();
2182   }
2183
2184   return false;
2185 }
2186
2187 /// ParseDirectiveFile
2188 /// ::= .file [number] string
2189 bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
2190   // FIXME: I'm not sure what this is.
2191   int64_t FileNumber = -1;
2192   SMLoc FileNumberLoc = getLexer().getLoc();
2193   if (getLexer().is(AsmToken::Integer)) {
2194     FileNumber = getTok().getIntVal();
2195     Lex();
2196
2197     if (FileNumber < 1)
2198       return TokError("file number less than one");
2199   }
2200
2201   if (getLexer().isNot(AsmToken::String))
2202     return TokError("unexpected token in '.file' directive");
2203
2204   StringRef Filename = getTok().getString();
2205   Filename = Filename.substr(1, Filename.size()-2);
2206   Lex();
2207
2208   if (getLexer().isNot(AsmToken::EndOfStatement))
2209     return TokError("unexpected token in '.file' directive");
2210
2211   if (FileNumber == -1)
2212     getStreamer().EmitFileDirective(Filename);
2213   else {
2214     if (getStreamer().EmitDwarfFileDirective(FileNumber, Filename))
2215       Error(FileNumberLoc, "file number already allocated");
2216   }
2217
2218   return false;
2219 }
2220
2221 /// ParseDirectiveLine
2222 /// ::= .line [number]
2223 bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
2224   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2225     if (getLexer().isNot(AsmToken::Integer))
2226       return TokError("unexpected token in '.line' directive");
2227
2228     int64_t LineNumber = getTok().getIntVal();
2229     (void) LineNumber;
2230     Lex();
2231
2232     // FIXME: Do something with the .line.
2233   }
2234
2235   if (getLexer().isNot(AsmToken::EndOfStatement))
2236     return TokError("unexpected token in '.line' directive");
2237
2238   return false;
2239 }
2240
2241
2242 /// ParseDirectiveLoc
2243 /// ::= .loc FileNumber [LineNumber] [ColumnPos] [basic_block] [prologue_end]
2244 ///                                [epilogue_begin] [is_stmt VALUE] [isa VALUE]
2245 /// The first number is a file number, must have been previously assigned with
2246 /// a .file directive, the second number is the line number and optionally the
2247 /// third number is a column position (zero if not specified).  The remaining
2248 /// optional items are .loc sub-directives.
2249 bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
2250
2251   if (getLexer().isNot(AsmToken::Integer))
2252     return TokError("unexpected token in '.loc' directive");
2253   int64_t FileNumber = getTok().getIntVal();
2254   if (FileNumber < 1)
2255     return TokError("file number less than one in '.loc' directive");
2256   if (!getContext().isValidDwarfFileNumber(FileNumber))
2257     return TokError("unassigned file number in '.loc' directive");
2258   Lex();
2259
2260   int64_t LineNumber = 0;
2261   if (getLexer().is(AsmToken::Integer)) {
2262     LineNumber = getTok().getIntVal();
2263     if (LineNumber < 1)
2264       return TokError("line number less than one in '.loc' directive");
2265     Lex();
2266   }
2267
2268   int64_t ColumnPos = 0;
2269   if (getLexer().is(AsmToken::Integer)) {
2270     ColumnPos = getTok().getIntVal();
2271     if (ColumnPos < 0)
2272       return TokError("column position less than zero in '.loc' directive");
2273     Lex();
2274   }
2275
2276   unsigned Flags = DWARF2_LINE_DEFAULT_IS_STMT ? DWARF2_FLAG_IS_STMT : 0;
2277   unsigned Isa = 0;
2278   int64_t Discriminator = 0;
2279   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2280     for (;;) {
2281       if (getLexer().is(AsmToken::EndOfStatement))
2282         break;
2283
2284       StringRef Name;
2285       SMLoc Loc = getTok().getLoc();
2286       if (getParser().ParseIdentifier(Name))
2287         return TokError("unexpected token in '.loc' directive");
2288
2289       if (Name == "basic_block")
2290         Flags |= DWARF2_FLAG_BASIC_BLOCK;
2291       else if (Name == "prologue_end")
2292         Flags |= DWARF2_FLAG_PROLOGUE_END;
2293       else if (Name == "epilogue_begin")
2294         Flags |= DWARF2_FLAG_EPILOGUE_BEGIN;
2295       else if (Name == "is_stmt") {
2296         SMLoc Loc = getTok().getLoc();
2297         const MCExpr *Value;
2298         if (getParser().ParseExpression(Value))
2299           return true;
2300         // The expression must be the constant 0 or 1.
2301         if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2302           int Value = MCE->getValue();
2303           if (Value == 0)
2304             Flags &= ~DWARF2_FLAG_IS_STMT;
2305           else if (Value == 1)
2306             Flags |= DWARF2_FLAG_IS_STMT;
2307           else
2308             return Error(Loc, "is_stmt value not 0 or 1");
2309         }
2310         else {
2311           return Error(Loc, "is_stmt value not the constant value of 0 or 1");
2312         }
2313       }
2314       else if (Name == "isa") {
2315         SMLoc Loc = getTok().getLoc();
2316         const MCExpr *Value;
2317         if (getParser().ParseExpression(Value))
2318           return true;
2319         // The expression must be a constant greater or equal to 0.
2320         if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2321           int Value = MCE->getValue();
2322           if (Value < 0)
2323             return Error(Loc, "isa number less than zero");
2324           Isa = Value;
2325         }
2326         else {
2327           return Error(Loc, "isa number not a constant value");
2328         }
2329       }
2330       else if (Name == "discriminator") {
2331         if (getParser().ParseAbsoluteExpression(Discriminator))
2332           return true;
2333       }
2334       else {
2335         return Error(Loc, "unknown sub-directive in '.loc' directive");
2336       }
2337
2338       if (getLexer().is(AsmToken::EndOfStatement))
2339         break;
2340     }
2341   }
2342
2343   getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,
2344                                       Isa, Discriminator, StringRef());
2345
2346   return false;
2347 }
2348
2349 /// ParseDirectiveStabs
2350 /// ::= .stabs string, number, number, number
2351 bool GenericAsmParser::ParseDirectiveStabs(StringRef Directive,
2352                                            SMLoc DirectiveLoc) {
2353   return TokError("unsupported directive '" + Directive + "'");
2354 }
2355
2356 /// ParseDirectiveCFISections
2357 /// ::= .cfi_sections section [, section]
2358 bool GenericAsmParser::ParseDirectiveCFISections(StringRef,
2359                                                  SMLoc DirectiveLoc) {
2360   StringRef Name;
2361   bool EH = false;
2362   bool Debug = false;
2363
2364   if (getParser().ParseIdentifier(Name))
2365     return TokError("Expected an identifier");
2366
2367   if (Name == ".eh_frame")
2368     EH = true;
2369   else if (Name == ".debug_frame")
2370     Debug = true;
2371
2372   if (getLexer().is(AsmToken::Comma)) {
2373     Lex();
2374
2375     if (getParser().ParseIdentifier(Name))
2376       return TokError("Expected an identifier");
2377
2378     if (Name == ".eh_frame")
2379       EH = true;
2380     else if (Name == ".debug_frame")
2381       Debug = true;
2382   }
2383
2384   getStreamer().EmitCFISections(EH, Debug);
2385
2386   return false;
2387 }
2388
2389 /// ParseDirectiveCFIStartProc
2390 /// ::= .cfi_startproc
2391 bool GenericAsmParser::ParseDirectiveCFIStartProc(StringRef,
2392                                                   SMLoc DirectiveLoc) {
2393   getStreamer().EmitCFIStartProc();
2394   return false;
2395 }
2396
2397 /// ParseDirectiveCFIEndProc
2398 /// ::= .cfi_endproc
2399 bool GenericAsmParser::ParseDirectiveCFIEndProc(StringRef, SMLoc DirectiveLoc) {
2400   getStreamer().EmitCFIEndProc();
2401   return false;
2402 }
2403
2404 /// ParseRegisterOrRegisterNumber - parse register name or number.
2405 bool GenericAsmParser::ParseRegisterOrRegisterNumber(int64_t &Register,
2406                                                      SMLoc DirectiveLoc) {
2407   unsigned RegNo;
2408
2409   if (getLexer().isNot(AsmToken::Integer)) {
2410     if (getParser().getTargetParser().ParseRegister(RegNo, DirectiveLoc,
2411       DirectiveLoc))
2412       return true;
2413     Register = getContext().getRegisterInfo().getDwarfRegNum(RegNo, true);
2414   } else
2415     return getParser().ParseAbsoluteExpression(Register);
2416
2417   return false;
2418 }
2419
2420 /// ParseDirectiveCFIDefCfa
2421 /// ::= .cfi_def_cfa register,  offset
2422 bool GenericAsmParser::ParseDirectiveCFIDefCfa(StringRef,
2423                                                SMLoc DirectiveLoc) {
2424   int64_t Register = 0;
2425   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2426     return true;
2427
2428   if (getLexer().isNot(AsmToken::Comma))
2429     return TokError("unexpected token in directive");
2430   Lex();
2431
2432   int64_t Offset = 0;
2433   if (getParser().ParseAbsoluteExpression(Offset))
2434     return true;
2435
2436   getStreamer().EmitCFIDefCfa(Register, Offset);
2437   return false;
2438 }
2439
2440 /// ParseDirectiveCFIDefCfaOffset
2441 /// ::= .cfi_def_cfa_offset offset
2442 bool GenericAsmParser::ParseDirectiveCFIDefCfaOffset(StringRef,
2443                                                      SMLoc DirectiveLoc) {
2444   int64_t Offset = 0;
2445   if (getParser().ParseAbsoluteExpression(Offset))
2446     return true;
2447
2448   getStreamer().EmitCFIDefCfaOffset(Offset);
2449   return false;
2450 }
2451
2452 /// ParseDirectiveCFIAdjustCfaOffset
2453 /// ::= .cfi_adjust_cfa_offset adjustment
2454 bool GenericAsmParser::ParseDirectiveCFIAdjustCfaOffset(StringRef,
2455                                                         SMLoc DirectiveLoc) {
2456   int64_t Adjustment = 0;
2457   if (getParser().ParseAbsoluteExpression(Adjustment))
2458     return true;
2459
2460   getStreamer().EmitCFIAdjustCfaOffset(Adjustment);
2461   return false;
2462 }
2463
2464 /// ParseDirectiveCFIDefCfaRegister
2465 /// ::= .cfi_def_cfa_register register
2466 bool GenericAsmParser::ParseDirectiveCFIDefCfaRegister(StringRef,
2467                                                        SMLoc DirectiveLoc) {
2468   int64_t Register = 0;
2469   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2470     return true;
2471
2472   getStreamer().EmitCFIDefCfaRegister(Register);
2473   return false;
2474 }
2475
2476 /// ParseDirectiveCFIOffset
2477 /// ::= .cfi_offset register, offset
2478 bool GenericAsmParser::ParseDirectiveCFIOffset(StringRef, SMLoc DirectiveLoc) {
2479   int64_t Register = 0;
2480   int64_t Offset = 0;
2481
2482   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2483     return true;
2484
2485   if (getLexer().isNot(AsmToken::Comma))
2486     return TokError("unexpected token in directive");
2487   Lex();
2488
2489   if (getParser().ParseAbsoluteExpression(Offset))
2490     return true;
2491
2492   getStreamer().EmitCFIOffset(Register, Offset);
2493   return false;
2494 }
2495
2496 /// ParseDirectiveCFIRelOffset
2497 /// ::= .cfi_rel_offset register, offset
2498 bool GenericAsmParser::ParseDirectiveCFIRelOffset(StringRef,
2499                                                   SMLoc DirectiveLoc) {
2500   int64_t Register = 0;
2501
2502   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2503     return true;
2504
2505   if (getLexer().isNot(AsmToken::Comma))
2506     return TokError("unexpected token in directive");
2507   Lex();
2508
2509   int64_t Offset = 0;
2510   if (getParser().ParseAbsoluteExpression(Offset))
2511     return true;
2512
2513   getStreamer().EmitCFIRelOffset(Register, Offset);
2514   return false;
2515 }
2516
2517 static bool isValidEncoding(int64_t Encoding) {
2518   if (Encoding & ~0xff)
2519     return false;
2520
2521   if (Encoding == dwarf::DW_EH_PE_omit)
2522     return true;
2523
2524   const unsigned Format = Encoding & 0xf;
2525   if (Format != dwarf::DW_EH_PE_absptr && Format != dwarf::DW_EH_PE_udata2 &&
2526       Format != dwarf::DW_EH_PE_udata4 && Format != dwarf::DW_EH_PE_udata8 &&
2527       Format != dwarf::DW_EH_PE_sdata2 && Format != dwarf::DW_EH_PE_sdata4 &&
2528       Format != dwarf::DW_EH_PE_sdata8 && Format != dwarf::DW_EH_PE_signed)
2529     return false;
2530
2531   const unsigned Application = Encoding & 0x70;
2532   if (Application != dwarf::DW_EH_PE_absptr &&
2533       Application != dwarf::DW_EH_PE_pcrel)
2534     return false;
2535
2536   return true;
2537 }
2538
2539 /// ParseDirectiveCFIPersonalityOrLsda
2540 /// ::= .cfi_personality encoding, [symbol_name]
2541 /// ::= .cfi_lsda encoding, [symbol_name]
2542 bool GenericAsmParser::ParseDirectiveCFIPersonalityOrLsda(StringRef IDVal,
2543                                                     SMLoc DirectiveLoc) {
2544   int64_t Encoding = 0;
2545   if (getParser().ParseAbsoluteExpression(Encoding))
2546     return true;
2547   if (Encoding == dwarf::DW_EH_PE_omit)
2548     return false;
2549
2550   if (!isValidEncoding(Encoding))
2551     return TokError("unsupported encoding.");
2552
2553   if (getLexer().isNot(AsmToken::Comma))
2554     return TokError("unexpected token in directive");
2555   Lex();
2556
2557   StringRef Name;
2558   if (getParser().ParseIdentifier(Name))
2559     return TokError("expected identifier in directive");
2560
2561   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
2562
2563   if (IDVal == ".cfi_personality")
2564     getStreamer().EmitCFIPersonality(Sym, Encoding);
2565   else {
2566     assert(IDVal == ".cfi_lsda");
2567     getStreamer().EmitCFILsda(Sym, Encoding);
2568   }
2569   return false;
2570 }
2571
2572 /// ParseDirectiveCFIRememberState
2573 /// ::= .cfi_remember_state
2574 bool GenericAsmParser::ParseDirectiveCFIRememberState(StringRef IDVal,
2575                                                       SMLoc DirectiveLoc) {
2576   getStreamer().EmitCFIRememberState();
2577   return false;
2578 }
2579
2580 /// ParseDirectiveCFIRestoreState
2581 /// ::= .cfi_remember_state
2582 bool GenericAsmParser::ParseDirectiveCFIRestoreState(StringRef IDVal,
2583                                                      SMLoc DirectiveLoc) {
2584   getStreamer().EmitCFIRestoreState();
2585   return false;
2586 }
2587
2588 /// ParseDirectiveCFISameValue
2589 /// ::= .cfi_same_value register
2590 bool GenericAsmParser::ParseDirectiveCFISameValue(StringRef IDVal,
2591                                                   SMLoc DirectiveLoc) {
2592   int64_t Register = 0;
2593
2594   if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
2595     return true;
2596
2597   getStreamer().EmitCFISameValue(Register);
2598
2599   return false;
2600 }
2601
2602 /// ParseDirectiveMacrosOnOff
2603 /// ::= .macros_on
2604 /// ::= .macros_off
2605 bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
2606                                                  SMLoc DirectiveLoc) {
2607   if (getLexer().isNot(AsmToken::EndOfStatement))
2608     return Error(getLexer().getLoc(),
2609                  "unexpected token in '" + Directive + "' directive");
2610
2611   getParser().MacrosEnabled = Directive == ".macros_on";
2612
2613   return false;
2614 }
2615
2616 /// ParseDirectiveMacro
2617 /// ::= .macro name [parameters]
2618 bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
2619                                            SMLoc DirectiveLoc) {
2620   StringRef Name;
2621   if (getParser().ParseIdentifier(Name))
2622     return TokError("expected identifier in directive");
2623
2624   std::vector<StringRef> Parameters;
2625   if (getLexer().isNot(AsmToken::EndOfStatement)) {
2626     for(;;) {
2627       StringRef Parameter;
2628       if (getParser().ParseIdentifier(Parameter))
2629         return TokError("expected identifier in directive");
2630       Parameters.push_back(Parameter);
2631
2632       if (getLexer().isNot(AsmToken::Comma))
2633         break;
2634       Lex();
2635     }
2636   }
2637
2638   if (getLexer().isNot(AsmToken::EndOfStatement))
2639     return TokError("unexpected token in '.macro' directive");
2640
2641   // Eat the end of statement.
2642   Lex();
2643
2644   AsmToken EndToken, StartToken = getTok();
2645
2646   // Lex the macro definition.
2647   for (;;) {
2648     // Check whether we have reached the end of the file.
2649     if (getLexer().is(AsmToken::Eof))
2650       return Error(DirectiveLoc, "no matching '.endmacro' in definition");
2651
2652     // Otherwise, check whether we have reach the .endmacro.
2653     if (getLexer().is(AsmToken::Identifier) &&
2654         (getTok().getIdentifier() == ".endm" ||
2655          getTok().getIdentifier() == ".endmacro")) {
2656       EndToken = getTok();
2657       Lex();
2658       if (getLexer().isNot(AsmToken::EndOfStatement))
2659         return TokError("unexpected token in '" + EndToken.getIdentifier() +
2660                         "' directive");
2661       break;
2662     }
2663
2664     // Otherwise, scan til the end of the statement.
2665     getParser().EatToEndOfStatement();
2666   }
2667
2668   if (getParser().MacroMap.lookup(Name)) {
2669     return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
2670   }
2671
2672   const char *BodyStart = StartToken.getLoc().getPointer();
2673   const char *BodyEnd = EndToken.getLoc().getPointer();
2674   StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
2675   getParser().MacroMap[Name] = new Macro(Name, Body, Parameters);
2676   return false;
2677 }
2678
2679 /// ParseDirectiveEndMacro
2680 /// ::= .endm
2681 /// ::= .endmacro
2682 bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
2683                                            SMLoc DirectiveLoc) {
2684   if (getLexer().isNot(AsmToken::EndOfStatement))
2685     return TokError("unexpected token in '" + Directive + "' directive");
2686
2687   // If we are inside a macro instantiation, terminate the current
2688   // instantiation.
2689   if (!getParser().ActiveMacros.empty()) {
2690     getParser().HandleMacroExit();
2691     return false;
2692   }
2693
2694   // Otherwise, this .endmacro is a stray entry in the file; well formed
2695   // .endmacro directives are handled during the macro definition parsing.
2696   return TokError("unexpected '" + Directive + "' in file, "
2697                   "no current macro definition");
2698 }
2699
2700 bool GenericAsmParser::ParseDirectiveLEB128(StringRef DirName, SMLoc) {
2701   getParser().CheckForValidSection();
2702
2703   const MCExpr *Value;
2704
2705   if (getParser().ParseExpression(Value))
2706     return true;
2707
2708   if (getLexer().isNot(AsmToken::EndOfStatement))
2709     return TokError("unexpected token in directive");
2710
2711   if (DirName[1] == 's')
2712     getStreamer().EmitSLEB128Value(Value);
2713   else
2714     getStreamer().EmitULEB128Value(Value);
2715
2716   return false;
2717 }
2718
2719
2720 /// \brief Create an MCAsmParser instance.
2721 MCAsmParser *llvm::createMCAsmParser(SourceMgr &SM,
2722                                      MCContext &C, MCStreamer &Out,
2723                                      const MCAsmInfo &MAI) {
2724   return new AsmParser(SM, C, Out, MAI);
2725 }