llvm-mc: Add -show-inst-operands, for dumping the parsed instruction representation...
[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/SmallString.h"
15 #include "llvm/ADT/StringMap.h"
16 #include "llvm/ADT/StringSwitch.h"
17 #include "llvm/ADT/Twine.h"
18 #include "llvm/MC/MCAsmInfo.h"
19 #include "llvm/MC/MCContext.h"
20 #include "llvm/MC/MCExpr.h"
21 #include "llvm/MC/MCInst.h"
22 #include "llvm/MC/MCParser/AsmCond.h"
23 #include "llvm/MC/MCParser/AsmLexer.h"
24 #include "llvm/MC/MCParser/MCAsmParser.h"
25 #include "llvm/MC/MCParser/MCParsedAsmOperand.h"
26 #include "llvm/MC/MCSectionMachO.h"
27 #include "llvm/MC/MCStreamer.h"
28 #include "llvm/MC/MCSymbol.h"
29 #include "llvm/MC/MCDwarf.h"
30 #include "llvm/Support/Compiler.h"
31 #include "llvm/Support/MemoryBuffer.h"
32 #include "llvm/Support/SourceMgr.h"
33 #include "llvm/Support/raw_ostream.h"
34 #include "llvm/Target/TargetAsmParser.h"
35 #include <vector>
36 using namespace llvm;
37
38 namespace {
39
40 /// \brief Helper class for tracking macro definitions.
41 struct Macro {
42   StringRef Name;
43   StringRef Body;
44
45 public:
46   Macro(StringRef N, StringRef B) : Name(N), Body(B) {}
47 };
48
49 /// \brief Helper class for storing information about an active macro
50 /// instantiation.
51 struct MacroInstantiation {
52   /// The macro being instantiated.
53   const Macro *TheMacro;
54
55   /// The macro instantiation with substitutions.
56   MemoryBuffer *Instantiation;
57
58   /// The location of the instantiation.
59   SMLoc InstantiationLoc;
60
61   /// The location where parsing should resume upon instantiation completion.
62   SMLoc ExitLoc;
63
64 public:
65   MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
66                      const std::vector<std::vector<AsmToken> > &A);
67 };
68
69 /// \brief The concrete assembly parser instance.
70 class AsmParser : public MCAsmParser {
71   friend class GenericAsmParser;
72
73   AsmParser(const AsmParser &);   // DO NOT IMPLEMENT
74   void operator=(const AsmParser &);  // DO NOT IMPLEMENT
75 private:
76   AsmLexer Lexer;
77   MCContext &Ctx;
78   MCStreamer &Out;
79   SourceMgr &SrcMgr;
80   MCAsmParserExtension *GenericParser;
81   MCAsmParserExtension *PlatformParser;
82
83   /// This is the current buffer index we're lexing from as managed by the
84   /// SourceMgr object.
85   int CurBuffer;
86
87   AsmCond TheCondState;
88   std::vector<AsmCond> TheCondStack;
89
90   /// DirectiveMap - This is a table handlers for directives.  Each handler is
91   /// invoked after the directive identifier is read and is responsible for
92   /// parsing and validating the rest of the directive.  The handler is passed
93   /// in the directive name and the location of the directive keyword.
94   StringMap<std::pair<MCAsmParserExtension*, DirectiveHandler> > DirectiveMap;
95
96   /// MacroMap - Map of currently defined macros.
97   StringMap<Macro*> MacroMap;
98
99   /// ActiveMacros - Stack of active macro instantiations.
100   std::vector<MacroInstantiation*> ActiveMacros;
101
102   /// Boolean tracking whether macro substitution is enabled.
103   unsigned MacrosEnabled : 1;
104
105 public:
106   AsmParser(const Target &T, SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
107             const MCAsmInfo &MAI);
108   ~AsmParser();
109
110   virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false);
111
112   void AddDirectiveHandler(MCAsmParserExtension *Object,
113                            StringRef Directive,
114                            DirectiveHandler Handler) {
115     DirectiveMap[Directive] = std::make_pair(Object, Handler);
116   }
117
118 public:
119   /// @name MCAsmParser Interface
120   /// {
121
122   virtual SourceMgr &getSourceManager() { return SrcMgr; }
123   virtual MCAsmLexer &getLexer() { return Lexer; }
124   virtual MCContext &getContext() { return Ctx; }
125   virtual MCStreamer &getStreamer() { return Out; }
126
127   virtual void Warning(SMLoc L, const Twine &Meg);
128   virtual bool Error(SMLoc L, const Twine &Msg);
129
130   const AsmToken &Lex();
131
132   bool ParseExpression(const MCExpr *&Res);
133   virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
134   virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
135   virtual bool ParseAbsoluteExpression(int64_t &Res);
136
137   /// }
138
139 private:
140   bool ParseStatement();
141
142   bool HandleMacroEntry(StringRef Name, SMLoc NameLoc, const Macro *M);
143   void HandleMacroExit();
144
145   void PrintMacroInstantiations();
146   void PrintMessage(SMLoc Loc, const std::string &Msg, const char *Type) const;
147     
148   /// EnterIncludeFile - Enter the specified file. This returns true on failure.
149   bool EnterIncludeFile(const std::string &Filename);
150
151   /// \brief Reset the current lexer position to that given by \arg Loc. The
152   /// current token is not set; clients should ensure Lex() is called
153   /// subsequently.
154   void JumpToLoc(SMLoc Loc);
155
156   void EatToEndOfStatement();
157
158   /// \brief Parse up to the end of statement and a return the contents from the
159   /// current token until the end of the statement; the current token on exit
160   /// will be either the EndOfStatement or EOF.
161   StringRef ParseStringToEndOfStatement();
162
163   bool ParseAssignment(StringRef Name);
164
165   bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
166   bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
167   bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
168
169   /// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
170   /// and set \arg Res to the identifier contents.
171   bool ParseIdentifier(StringRef &Res);
172   
173   // Directive Parsing.
174   bool ParseDirectiveAscii(bool ZeroTerminated); // ".ascii", ".asciiz"
175   bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
176   bool ParseDirectiveFill(); // ".fill"
177   bool ParseDirectiveSpace(); // ".space"
178   bool ParseDirectiveSet(); // ".set"
179   bool ParseDirectiveOrg(); // ".org"
180   // ".align{,32}", ".p2align{,w,l}"
181   bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
182
183   /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
184   /// accepts a single symbol (which should be a label or an external).
185   bool ParseDirectiveSymbolAttribute(MCSymbolAttr Attr);
186   bool ParseDirectiveELFType(); // ELF specific ".type"
187
188   bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
189
190   bool ParseDirectiveAbort(); // ".abort"
191   bool ParseDirectiveInclude(); // ".include"
192
193   bool ParseDirectiveIf(SMLoc DirectiveLoc); // ".if"
194   bool ParseDirectiveElseIf(SMLoc DirectiveLoc); // ".elseif"
195   bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else"
196   bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif
197
198   /// ParseEscapedString - Parse the current token as a string which may include
199   /// escaped characters and return the string contents.
200   bool ParseEscapedString(std::string &Data);
201 };
202
203 /// \brief Generic implementations of directive handling, etc. which is shared
204 /// (or the default, at least) for all assembler parser.
205 class GenericAsmParser : public MCAsmParserExtension {
206   template<bool (GenericAsmParser::*Handler)(StringRef, SMLoc)>
207   void AddDirectiveHandler(StringRef Directive) {
208     getParser().AddDirectiveHandler(this, Directive,
209                                     HandleDirective<GenericAsmParser, Handler>);
210   }
211
212 public:
213   GenericAsmParser() {}
214
215   AsmParser &getParser() {
216     return (AsmParser&) this->MCAsmParserExtension::getParser();
217   }
218
219   virtual void Initialize(MCAsmParser &Parser) {
220     // Call the base implementation.
221     this->MCAsmParserExtension::Initialize(Parser);
222
223     // Debugging directives.
224     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveFile>(".file");
225     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLine>(".line");
226     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLoc>(".loc");
227
228     // Macro directives.
229     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
230       ".macros_on");
231     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
232       ".macros_off");
233     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacro>(".macro");
234     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endm");
235     AddDirectiveHandler<&GenericAsmParser::ParseDirectiveEndMacro>(".endmacro");
236   }
237
238   bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
239   bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
240   bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
241
242   bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
243   bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
244   bool ParseDirectiveEndMacro(StringRef, SMLoc DirectiveLoc);
245 };
246
247 }
248
249 namespace llvm {
250
251 extern MCAsmParserExtension *createDarwinAsmParser();
252 extern MCAsmParserExtension *createELFAsmParser();
253
254 }
255
256 enum { DEFAULT_ADDRSPACE = 0 };
257
258 AsmParser::AsmParser(const Target &T, SourceMgr &_SM, MCContext &_Ctx,
259                      MCStreamer &_Out, const MCAsmInfo &_MAI)
260   : Lexer(_MAI), Ctx(_Ctx), Out(_Out), SrcMgr(_SM),
261     GenericParser(new GenericAsmParser), PlatformParser(0),
262     CurBuffer(0), MacrosEnabled(true) {
263   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
264
265   // Initialize the generic parser.
266   GenericParser->Initialize(*this);
267
268   // Initialize the platform / file format parser.
269   //
270   // FIXME: This is a hack, we need to (majorly) cleanup how these objects are
271   // created.
272   if (_MAI.hasSubsectionsViaSymbols()) {
273     PlatformParser = createDarwinAsmParser();
274     PlatformParser->Initialize(*this);
275   } else {
276     PlatformParser = createELFAsmParser();
277     PlatformParser->Initialize(*this);
278   }
279 }
280
281 AsmParser::~AsmParser() {
282   assert(ActiveMacros.empty() && "Unexpected active macro instantiation!");
283
284   // Destroy any macros.
285   for (StringMap<Macro*>::iterator it = MacroMap.begin(),
286          ie = MacroMap.end(); it != ie; ++it)
287     delete it->getValue();
288
289   delete PlatformParser;
290   delete GenericParser;
291 }
292
293 void AsmParser::PrintMacroInstantiations() {
294   // Print the active macro instantiation stack.
295   for (std::vector<MacroInstantiation*>::const_reverse_iterator
296          it = ActiveMacros.rbegin(), ie = ActiveMacros.rend(); it != ie; ++it)
297     PrintMessage((*it)->InstantiationLoc, "while in macro instantiation",
298                  "note");
299 }
300
301 void AsmParser::Warning(SMLoc L, const Twine &Msg) {
302   PrintMessage(L, Msg.str(), "warning");
303   PrintMacroInstantiations();
304 }
305
306 bool AsmParser::Error(SMLoc L, const Twine &Msg) {
307   PrintMessage(L, Msg.str(), "error");
308   PrintMacroInstantiations();
309   return true;
310 }
311
312 void AsmParser::PrintMessage(SMLoc Loc, const std::string &Msg, 
313                              const char *Type) const {
314   SrcMgr.PrintMessage(Loc, Msg, Type);
315 }
316                   
317 bool AsmParser::EnterIncludeFile(const std::string &Filename) {
318   int NewBuf = SrcMgr.AddIncludeFile(Filename, Lexer.getLoc());
319   if (NewBuf == -1)
320     return true;
321   
322   CurBuffer = NewBuf;
323   
324   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
325   
326   return false;
327 }
328
329 void AsmParser::JumpToLoc(SMLoc Loc) {
330   CurBuffer = SrcMgr.FindBufferContainingLoc(Loc);
331   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer), Loc.getPointer());
332 }
333
334 const AsmToken &AsmParser::Lex() {
335   const AsmToken *tok = &Lexer.Lex();
336   
337   if (tok->is(AsmToken::Eof)) {
338     // If this is the end of an included file, pop the parent file off the
339     // include stack.
340     SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
341     if (ParentIncludeLoc != SMLoc()) {
342       JumpToLoc(ParentIncludeLoc);
343       tok = &Lexer.Lex();
344     }
345   }
346     
347   if (tok->is(AsmToken::Error))
348     Error(Lexer.getErrLoc(), Lexer.getErr());
349   
350   return *tok;
351 }
352
353 bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
354   // Create the initial section, if requested.
355   //
356   // FIXME: Target hook & command line option for initial section.
357   if (!NoInitialTextSection)
358     Out.SwitchSection(Ctx.getMachOSection("__TEXT", "__text",
359                                       MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
360                                       0, SectionKind::getText()));
361
362   // Prime the lexer.
363   Lex();
364   
365   bool HadError = false;
366   
367   AsmCond StartingCondState = TheCondState;
368
369   // While we have input, parse each statement.
370   while (Lexer.isNot(AsmToken::Eof)) {
371     if (!ParseStatement()) continue;
372   
373     // We had an error, remember it and recover by skipping to the next line.
374     HadError = true;
375     EatToEndOfStatement();
376   }
377
378   if (TheCondState.TheCond != StartingCondState.TheCond ||
379       TheCondState.Ignore != StartingCondState.Ignore)
380     return TokError("unmatched .ifs or .elses");
381
382   // Check to see there are no empty DwarfFile slots.
383   const std::vector<MCDwarfFile *> &MCDwarfFiles =
384     getContext().getMCDwarfFiles();
385   for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
386     if (!MCDwarfFiles[i]){
387       TokError("unassigned file number: " + Twine(i) + " for .file directives");
388       HadError = true;
389     }
390   }
391   
392   // Finalize the output stream if there are no errors and if the client wants
393   // us to.
394   if (!HadError && !NoFinalize)  
395     Out.Finish();
396
397   return HadError;
398 }
399
400 /// EatToEndOfStatement - Throw away the rest of the line for testing purposes.
401 void AsmParser::EatToEndOfStatement() {
402   while (Lexer.isNot(AsmToken::EndOfStatement) &&
403          Lexer.isNot(AsmToken::Eof))
404     Lex();
405   
406   // Eat EOL.
407   if (Lexer.is(AsmToken::EndOfStatement))
408     Lex();
409 }
410
411 StringRef AsmParser::ParseStringToEndOfStatement() {
412   const char *Start = getTok().getLoc().getPointer();
413
414   while (Lexer.isNot(AsmToken::EndOfStatement) &&
415          Lexer.isNot(AsmToken::Eof))
416     Lex();
417
418   const char *End = getTok().getLoc().getPointer();
419   return StringRef(Start, End - Start);
420 }
421
422 /// ParseParenExpr - Parse a paren expression and return it.
423 /// NOTE: This assumes the leading '(' has already been consumed.
424 ///
425 /// parenexpr ::= expr)
426 ///
427 bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
428   if (ParseExpression(Res)) return true;
429   if (Lexer.isNot(AsmToken::RParen))
430     return TokError("expected ')' in parentheses expression");
431   EndLoc = Lexer.getLoc();
432   Lex();
433   return false;
434 }
435
436 /// ParsePrimaryExpr - Parse a primary expression and return it.
437 ///  primaryexpr ::= (parenexpr
438 ///  primaryexpr ::= symbol
439 ///  primaryexpr ::= number
440 ///  primaryexpr ::= '.'
441 ///  primaryexpr ::= ~,+,- primaryexpr
442 bool AsmParser::ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) {
443   switch (Lexer.getKind()) {
444   default:
445     return TokError("unknown token in expression");
446   case AsmToken::Exclaim:
447     Lex(); // Eat the operator.
448     if (ParsePrimaryExpr(Res, EndLoc))
449       return true;
450     Res = MCUnaryExpr::CreateLNot(Res, getContext());
451     return false;
452   case AsmToken::String:
453   case AsmToken::Identifier: {
454     // This is a symbol reference.
455     std::pair<StringRef, StringRef> Split = getTok().getIdentifier().split('@');
456     MCSymbol *Sym = getContext().GetOrCreateSymbol(Split.first);
457
458     // Mark the symbol as used in an expression.
459     Sym->setUsedInExpr(true);
460
461     // Lookup the symbol variant if used.
462     MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
463     if (Split.first.size() != getTok().getIdentifier().size())
464       Variant = MCSymbolRefExpr::getVariantKindForName(Split.second);
465
466     EndLoc = Lexer.getLoc();
467     Lex(); // Eat identifier.
468
469     // If this is an absolute variable reference, substitute it now to preserve
470     // semantics in the face of reassignment.
471     if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
472       if (Variant)
473         return Error(EndLoc, "unexpected modified on variable reference");
474
475       Res = Sym->getVariableValue();
476       return false;
477     }
478
479     // Otherwise create a symbol ref.
480     Res = MCSymbolRefExpr::Create(Sym, Variant, getContext());
481     return false;
482   }
483   case AsmToken::Integer: {
484     SMLoc Loc = getTok().getLoc();
485     int64_t IntVal = getTok().getIntVal();
486     Res = MCConstantExpr::Create(IntVal, getContext());
487     EndLoc = Lexer.getLoc();
488     Lex(); // Eat token.
489     // Look for 'b' or 'f' following an Integer as a directional label
490     if (Lexer.getKind() == AsmToken::Identifier) {
491       StringRef IDVal = getTok().getString();
492       if (IDVal == "f" || IDVal == "b"){
493         MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
494                                                       IDVal == "f" ? 1 : 0);
495         Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
496                                       getContext());
497         if(IDVal == "b" && Sym->isUndefined())
498           return Error(Loc, "invalid reference to undefined symbol");
499         EndLoc = Lexer.getLoc();
500         Lex(); // Eat identifier.
501       }
502     }
503     return false;
504   }
505   case AsmToken::Dot: {
506     // This is a '.' reference, which references the current PC.  Emit a
507     // temporary label to the streamer and refer to it.
508     MCSymbol *Sym = Ctx.CreateTempSymbol();
509     Out.EmitLabel(Sym);
510     Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, getContext());
511     EndLoc = Lexer.getLoc();
512     Lex(); // Eat identifier.
513     return false;
514   }
515       
516   case AsmToken::LParen:
517     Lex(); // Eat the '('.
518     return ParseParenExpr(Res, EndLoc);
519   case AsmToken::Minus:
520     Lex(); // Eat the operator.
521     if (ParsePrimaryExpr(Res, EndLoc))
522       return true;
523     Res = MCUnaryExpr::CreateMinus(Res, getContext());
524     return false;
525   case AsmToken::Plus:
526     Lex(); // Eat the operator.
527     if (ParsePrimaryExpr(Res, EndLoc))
528       return true;
529     Res = MCUnaryExpr::CreatePlus(Res, getContext());
530     return false;
531   case AsmToken::Tilde:
532     Lex(); // Eat the operator.
533     if (ParsePrimaryExpr(Res, EndLoc))
534       return true;
535     Res = MCUnaryExpr::CreateNot(Res, getContext());
536     return false;
537   }
538 }
539
540 bool AsmParser::ParseExpression(const MCExpr *&Res) {
541   SMLoc EndLoc;
542   return ParseExpression(Res, EndLoc);
543 }
544
545 /// ParseExpression - Parse an expression and return it.
546 /// 
547 ///  expr ::= expr +,- expr          -> lowest.
548 ///  expr ::= expr |,^,&,! expr      -> middle.
549 ///  expr ::= expr *,/,%,<<,>> expr  -> highest.
550 ///  expr ::= primaryexpr
551 ///
552 bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
553   // Parse the expression.
554   Res = 0;
555   if (ParsePrimaryExpr(Res, EndLoc) || ParseBinOpRHS(1, Res, EndLoc))
556     return true;
557
558   // Try to constant fold it up front, if possible.
559   int64_t Value;
560   if (Res->EvaluateAsAbsolute(Value))
561     Res = MCConstantExpr::Create(Value, getContext());
562
563   return false;
564 }
565
566 bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
567   Res = 0;
568   return ParseParenExpr(Res, EndLoc) ||
569          ParseBinOpRHS(1, Res, EndLoc);
570 }
571
572 bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
573   const MCExpr *Expr;
574   
575   SMLoc StartLoc = Lexer.getLoc();
576   if (ParseExpression(Expr))
577     return true;
578
579   if (!Expr->EvaluateAsAbsolute(Res))
580     return Error(StartLoc, "expected absolute expression");
581
582   return false;
583 }
584
585 static unsigned getBinOpPrecedence(AsmToken::TokenKind K, 
586                                    MCBinaryExpr::Opcode &Kind) {
587   switch (K) {
588   default:
589     return 0;    // not a binop.
590
591     // Lowest Precedence: &&, ||
592   case AsmToken::AmpAmp:
593     Kind = MCBinaryExpr::LAnd;
594     return 1;
595   case AsmToken::PipePipe:
596     Kind = MCBinaryExpr::LOr;
597     return 1;
598
599     // Low Precedence: +, -, ==, !=, <>, <, <=, >, >=
600   case AsmToken::Plus:
601     Kind = MCBinaryExpr::Add;
602     return 2;
603   case AsmToken::Minus:
604     Kind = MCBinaryExpr::Sub;
605     return 2;
606   case AsmToken::EqualEqual:
607     Kind = MCBinaryExpr::EQ;
608     return 2;
609   case AsmToken::ExclaimEqual:
610   case AsmToken::LessGreater:
611     Kind = MCBinaryExpr::NE;
612     return 2;
613   case AsmToken::Less:
614     Kind = MCBinaryExpr::LT;
615     return 2;
616   case AsmToken::LessEqual:
617     Kind = MCBinaryExpr::LTE;
618     return 2;
619   case AsmToken::Greater:
620     Kind = MCBinaryExpr::GT;
621     return 2;
622   case AsmToken::GreaterEqual:
623     Kind = MCBinaryExpr::GTE;
624     return 2;
625
626     // Intermediate Precedence: |, &, ^
627     //
628     // FIXME: gas seems to support '!' as an infix operator?
629   case AsmToken::Pipe:
630     Kind = MCBinaryExpr::Or;
631     return 3;
632   case AsmToken::Caret:
633     Kind = MCBinaryExpr::Xor;
634     return 3;
635   case AsmToken::Amp:
636     Kind = MCBinaryExpr::And;
637     return 3;
638
639     // Highest Precedence: *, /, %, <<, >>
640   case AsmToken::Star:
641     Kind = MCBinaryExpr::Mul;
642     return 4;
643   case AsmToken::Slash:
644     Kind = MCBinaryExpr::Div;
645     return 4;
646   case AsmToken::Percent:
647     Kind = MCBinaryExpr::Mod;
648     return 4;
649   case AsmToken::LessLess:
650     Kind = MCBinaryExpr::Shl;
651     return 4;
652   case AsmToken::GreaterGreater:
653     Kind = MCBinaryExpr::Shr;
654     return 4;
655   }
656 }
657
658
659 /// ParseBinOpRHS - Parse all binary operators with precedence >= 'Precedence'.
660 /// Res contains the LHS of the expression on input.
661 bool AsmParser::ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res,
662                               SMLoc &EndLoc) {
663   while (1) {
664     MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
665     unsigned TokPrec = getBinOpPrecedence(Lexer.getKind(), Kind);
666     
667     // If the next token is lower precedence than we are allowed to eat, return
668     // successfully with what we ate already.
669     if (TokPrec < Precedence)
670       return false;
671     
672     Lex();
673     
674     // Eat the next primary expression.
675     const MCExpr *RHS;
676     if (ParsePrimaryExpr(RHS, EndLoc)) return true;
677     
678     // If BinOp binds less tightly with RHS than the operator after RHS, let
679     // the pending operator take RHS as its LHS.
680     MCBinaryExpr::Opcode Dummy;
681     unsigned NextTokPrec = getBinOpPrecedence(Lexer.getKind(), Dummy);
682     if (TokPrec < NextTokPrec) {
683       if (ParseBinOpRHS(Precedence+1, RHS, EndLoc)) return true;
684     }
685
686     // Merge LHS and RHS according to operator.
687     Res = MCBinaryExpr::Create(Kind, Res, RHS, getContext());
688   }
689 }
690
691   
692   
693   
694 /// ParseStatement:
695 ///   ::= EndOfStatement
696 ///   ::= Label* Directive ...Operands... EndOfStatement
697 ///   ::= Label* Identifier OperandList* EndOfStatement
698 bool AsmParser::ParseStatement() {
699   if (Lexer.is(AsmToken::EndOfStatement)) {
700     Out.AddBlankLine();
701     Lex();
702     return false;
703   }
704
705   // Statements always start with an identifier.
706   AsmToken ID = getTok();
707   SMLoc IDLoc = ID.getLoc();
708   StringRef IDVal;
709   int64_t LocalLabelVal = -1;
710   // GUESS allow an integer followed by a ':' as a directional local label
711   if (Lexer.is(AsmToken::Integer)) {
712     LocalLabelVal = getTok().getIntVal();
713     if (LocalLabelVal < 0) {
714       if (!TheCondState.Ignore)
715         return TokError("unexpected token at start of statement");
716       IDVal = "";
717     }
718     else {
719       IDVal = getTok().getString();
720       Lex(); // Consume the integer token to be used as an identifier token.
721       if (Lexer.getKind() != AsmToken::Colon) {
722         if (!TheCondState.Ignore)
723           return TokError("unexpected token at start of statement");
724       }
725     }
726   }
727   else if (ParseIdentifier(IDVal)) {
728     if (!TheCondState.Ignore)
729       return TokError("unexpected token at start of statement");
730     IDVal = "";
731   }
732
733   // Handle conditional assembly here before checking for skipping.  We
734   // have to do this so that .endif isn't skipped in a ".if 0" block for
735   // example.
736   if (IDVal == ".if")
737     return ParseDirectiveIf(IDLoc);
738   if (IDVal == ".elseif")
739     return ParseDirectiveElseIf(IDLoc);
740   if (IDVal == ".else")
741     return ParseDirectiveElse(IDLoc);
742   if (IDVal == ".endif")
743     return ParseDirectiveEndIf(IDLoc);
744     
745   // If we are in a ".if 0" block, ignore this statement.
746   if (TheCondState.Ignore) {
747     EatToEndOfStatement();
748     return false;
749   }
750   
751   // FIXME: Recurse on local labels?
752
753   // See what kind of statement we have.
754   switch (Lexer.getKind()) {
755   case AsmToken::Colon: {
756     // identifier ':'   -> Label.
757     Lex();
758
759     // Diagnose attempt to use a variable as a label.
760     //
761     // FIXME: Diagnostics. Note the location of the definition as a label.
762     // FIXME: This doesn't diagnose assignment to a symbol which has been
763     // implicitly marked as external.
764     MCSymbol *Sym;
765     if (LocalLabelVal == -1)
766       Sym = getContext().GetOrCreateSymbol(IDVal);
767     else
768       Sym = Ctx.CreateDirectionalLocalSymbol(LocalLabelVal);
769     if (!Sym->isUndefined() || Sym->isVariable())
770       return Error(IDLoc, "invalid symbol redefinition");
771     
772     // Emit the label.
773     Out.EmitLabel(Sym);
774    
775     // Consume any end of statement token, if present, to avoid spurious
776     // AddBlankLine calls().
777     if (Lexer.is(AsmToken::EndOfStatement)) {
778       Lex();
779       if (Lexer.is(AsmToken::Eof))
780         return false;
781     }
782
783     return ParseStatement();
784   }
785
786   case AsmToken::Equal:
787     // identifier '=' ... -> assignment statement
788     Lex();
789
790     return ParseAssignment(IDVal);
791
792   default: // Normal instruction or directive.
793     break;
794   }
795
796   // If macros are enabled, check to see if this is a macro instantiation.
797   if (MacrosEnabled)
798     if (const Macro *M = MacroMap.lookup(IDVal))
799       return HandleMacroEntry(IDVal, IDLoc, M);
800
801   // Otherwise, we have a normal instruction or directive.  
802   if (IDVal[0] == '.') {
803     // Assembler features
804     if (IDVal == ".set")
805       return ParseDirectiveSet();
806
807     // Data directives
808
809     if (IDVal == ".ascii")
810       return ParseDirectiveAscii(false);
811     if (IDVal == ".asciz")
812       return ParseDirectiveAscii(true);
813
814     if (IDVal == ".byte")
815       return ParseDirectiveValue(1);
816     if (IDVal == ".short")
817       return ParseDirectiveValue(2);
818     if (IDVal == ".long")
819       return ParseDirectiveValue(4);
820     if (IDVal == ".quad")
821       return ParseDirectiveValue(8);
822
823     if (IDVal == ".align") {
824       bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
825       return ParseDirectiveAlign(IsPow2, /*ExprSize=*/1);
826     }
827     if (IDVal == ".align32") {
828       bool IsPow2 = !getContext().getAsmInfo().getAlignmentIsInBytes();
829       return ParseDirectiveAlign(IsPow2, /*ExprSize=*/4);
830     }
831     if (IDVal == ".balign")
832       return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/1);
833     if (IDVal == ".balignw")
834       return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/2);
835     if (IDVal == ".balignl")
836       return ParseDirectiveAlign(/*IsPow2=*/false, /*ExprSize=*/4);
837     if (IDVal == ".p2align")
838       return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/1);
839     if (IDVal == ".p2alignw")
840       return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/2);
841     if (IDVal == ".p2alignl")
842       return ParseDirectiveAlign(/*IsPow2=*/true, /*ExprSize=*/4);
843
844     if (IDVal == ".org")
845       return ParseDirectiveOrg();
846
847     if (IDVal == ".fill")
848       return ParseDirectiveFill();
849     if (IDVal == ".space")
850       return ParseDirectiveSpace();
851
852     // Symbol attribute directives
853
854     if (IDVal == ".globl" || IDVal == ".global")
855       return ParseDirectiveSymbolAttribute(MCSA_Global);
856     if (IDVal == ".hidden")
857       return ParseDirectiveSymbolAttribute(MCSA_Hidden);
858     if (IDVal == ".indirect_symbol")
859       return ParseDirectiveSymbolAttribute(MCSA_IndirectSymbol);
860     if (IDVal == ".internal")
861       return ParseDirectiveSymbolAttribute(MCSA_Internal);
862     if (IDVal == ".lazy_reference")
863       return ParseDirectiveSymbolAttribute(MCSA_LazyReference);
864     if (IDVal == ".no_dead_strip")
865       return ParseDirectiveSymbolAttribute(MCSA_NoDeadStrip);
866     if (IDVal == ".private_extern")
867       return ParseDirectiveSymbolAttribute(MCSA_PrivateExtern);
868     if (IDVal == ".protected")
869       return ParseDirectiveSymbolAttribute(MCSA_Protected);
870     if (IDVal == ".reference")
871       return ParseDirectiveSymbolAttribute(MCSA_Reference);
872     if (IDVal == ".type")
873       return ParseDirectiveELFType();
874     if (IDVal == ".weak")
875       return ParseDirectiveSymbolAttribute(MCSA_Weak);
876     if (IDVal == ".weak_definition")
877       return ParseDirectiveSymbolAttribute(MCSA_WeakDefinition);
878     if (IDVal == ".weak_reference")
879       return ParseDirectiveSymbolAttribute(MCSA_WeakReference);
880     if (IDVal == ".weak_def_can_be_hidden")
881       return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate);
882
883     if (IDVal == ".comm")
884       return ParseDirectiveComm(/*IsLocal=*/false);
885     if (IDVal == ".lcomm")
886       return ParseDirectiveComm(/*IsLocal=*/true);
887
888     if (IDVal == ".abort")
889       return ParseDirectiveAbort();
890     if (IDVal == ".include")
891       return ParseDirectiveInclude();
892
893     // Look up the handler in the handler table.
894     std::pair<MCAsmParserExtension*, DirectiveHandler> Handler =
895       DirectiveMap.lookup(IDVal);
896     if (Handler.first)
897       return (*Handler.second)(Handler.first, IDVal, IDLoc);
898
899     // Target hook for parsing target specific directives.
900     if (!getTargetParser().ParseDirective(ID))
901       return false;
902
903     Warning(IDLoc, "ignoring directive for now");
904     EatToEndOfStatement();
905     return false;
906   }
907
908   // Canonicalize the opcode to lower case.
909   SmallString<128> Opcode;
910   for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
911     Opcode.push_back(tolower(IDVal[i]));
912   
913   SmallVector<MCParsedAsmOperand*, 8> ParsedOperands;
914   bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc,
915                                                      ParsedOperands);
916   if (!HadError && Lexer.isNot(AsmToken::EndOfStatement))
917     HadError = TokError("unexpected token in argument list");
918
919   // Dump the parsed representation, if requested.
920   if (getShowParsedOperands()) {
921     SmallString<256> Str;
922     raw_svector_ostream OS(Str);
923     OS << "parsed instruction: [";
924     for (unsigned i = 0; i != ParsedOperands.size(); ++i) {
925       if (i != 0)
926         OS << ", ";
927       ParsedOperands[i]->dump(OS);
928     }
929     OS << "]";
930
931     PrintMessage(IDLoc, OS.str(), "note");
932   }
933
934   // If parsing succeeded, match the instruction.
935   if (!HadError) {
936     MCInst Inst;
937     if (!getTargetParser().MatchInstruction(ParsedOperands, Inst)) {
938       // Emit the instruction on success.
939       Out.EmitInstruction(Inst);
940     } else {
941       // Otherwise emit a diagnostic about the match failure and set the error
942       // flag.
943       //
944       // FIXME: We should give nicer diagnostics about the exact failure.
945       Error(IDLoc, "unrecognized instruction");
946       HadError = true;
947     }
948   }
949
950   // If there was no error, consume the end-of-statement token. Otherwise this
951   // will be done by our caller.
952   if (!HadError)
953     Lex();
954
955   // Free any parsed operands.
956   for (unsigned i = 0, e = ParsedOperands.size(); i != e; ++i)
957     delete ParsedOperands[i];
958
959   return HadError;
960 }
961
962 MacroInstantiation::MacroInstantiation(const Macro *M, SMLoc IL, SMLoc EL,
963                                    const std::vector<std::vector<AsmToken> > &A)
964   : TheMacro(M), InstantiationLoc(IL), ExitLoc(EL)
965 {
966   // Macro instantiation is lexical, unfortunately. We construct a new buffer
967   // to hold the macro body with substitutions.
968   SmallString<256> Buf;
969   raw_svector_ostream OS(Buf);
970
971   StringRef Body = M->Body;
972   while (!Body.empty()) {
973     // Scan for the next substitution.
974     std::size_t End = Body.size(), Pos = 0;
975     for (; Pos != End; ++Pos) {
976       // Check for a substitution or escape.
977       if (Body[Pos] != '$' || Pos + 1 == End)
978         continue;
979
980       char Next = Body[Pos + 1];
981       if (Next == '$' || Next == 'n' || isdigit(Next))
982         break;
983     }
984
985     // Add the prefix.
986     OS << Body.slice(0, Pos);
987
988     // Check if we reached the end.
989     if (Pos == End)
990       break;
991
992     switch (Body[Pos+1]) {
993        // $$ => $
994     case '$':
995       OS << '$';
996       break;
997
998       // $n => number of arguments
999     case 'n':
1000       OS << A.size();
1001       break;
1002
1003        // $[0-9] => argument
1004     default: {
1005       // Missing arguments are ignored.
1006       unsigned Index = Body[Pos+1] - '0';
1007       if (Index >= A.size())
1008         break;
1009
1010       // Otherwise substitute with the token values, with spaces eliminated.
1011       for (std::vector<AsmToken>::const_iterator it = A[Index].begin(),
1012              ie = A[Index].end(); it != ie; ++it)
1013         OS << it->getString();
1014       break;
1015     }
1016     }
1017
1018     // Update the scan point.
1019     Body = Body.substr(Pos + 2);
1020   }
1021
1022   // We include the .endmacro in the buffer as our queue to exit the macro
1023   // instantiation.
1024   OS << ".endmacro\n";
1025
1026   Instantiation = MemoryBuffer::getMemBufferCopy(OS.str(), "<instantiation>");
1027 }
1028
1029 bool AsmParser::HandleMacroEntry(StringRef Name, SMLoc NameLoc,
1030                                  const Macro *M) {
1031   // Arbitrarily limit macro nesting depth, to match 'as'. We can eliminate
1032   // this, although we should protect against infinite loops.
1033   if (ActiveMacros.size() == 20)
1034     return TokError("macros cannot be nested more than 20 levels deep");
1035
1036   // Parse the macro instantiation arguments.
1037   std::vector<std::vector<AsmToken> > MacroArguments;
1038   MacroArguments.push_back(std::vector<AsmToken>());
1039   unsigned ParenLevel = 0;
1040   for (;;) {
1041     if (Lexer.is(AsmToken::Eof))
1042       return TokError("unexpected token in macro instantiation");
1043     if (Lexer.is(AsmToken::EndOfStatement))
1044       break;
1045
1046     // If we aren't inside parentheses and this is a comma, start a new token
1047     // list.
1048     if (ParenLevel == 0 && Lexer.is(AsmToken::Comma)) {
1049       MacroArguments.push_back(std::vector<AsmToken>());
1050     } else {
1051       // Adjust the current parentheses level.
1052       if (Lexer.is(AsmToken::LParen))
1053         ++ParenLevel;
1054       else if (Lexer.is(AsmToken::RParen) && ParenLevel)
1055         --ParenLevel;
1056
1057       // Append the token to the current argument list.
1058       MacroArguments.back().push_back(getTok());
1059     }
1060     Lex();
1061   }
1062
1063   // Create the macro instantiation object and add to the current macro
1064   // instantiation stack.
1065   MacroInstantiation *MI = new MacroInstantiation(M, NameLoc,
1066                                                   getTok().getLoc(),
1067                                                   MacroArguments);
1068   ActiveMacros.push_back(MI);
1069
1070   // Jump to the macro instantiation and prime the lexer.
1071   CurBuffer = SrcMgr.AddNewSourceBuffer(MI->Instantiation, SMLoc());
1072   Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer));
1073   Lex();
1074
1075   return false;
1076 }
1077
1078 void AsmParser::HandleMacroExit() {
1079   // Jump to the EndOfStatement we should return to, and consume it.
1080   JumpToLoc(ActiveMacros.back()->ExitLoc);
1081   Lex();
1082
1083   // Pop the instantiation entry.
1084   delete ActiveMacros.back();
1085   ActiveMacros.pop_back();
1086 }
1087
1088 bool AsmParser::ParseAssignment(StringRef Name) {
1089   // FIXME: Use better location, we should use proper tokens.
1090   SMLoc EqualLoc = Lexer.getLoc();
1091
1092   const MCExpr *Value;
1093   if (ParseExpression(Value))
1094     return true;
1095   
1096   if (Lexer.isNot(AsmToken::EndOfStatement))
1097     return TokError("unexpected token in assignment");
1098
1099   // Eat the end of statement marker.
1100   Lex();
1101
1102   // Validate that the LHS is allowed to be a variable (either it has not been
1103   // used as a symbol, or it is an absolute symbol).
1104   MCSymbol *Sym = getContext().LookupSymbol(Name);
1105   if (Sym) {
1106     // Diagnose assignment to a label.
1107     //
1108     // FIXME: Diagnostics. Note the location of the definition as a label.
1109     // FIXME: Diagnose assignment to protected identifier (e.g., register name).
1110     if (Sym->isUndefined() && !Sym->isUsedInExpr())
1111       ; // Allow redefinitions of undefined symbols only used in directives.
1112     else if (!Sym->isUndefined() && !Sym->isAbsolute())
1113       return Error(EqualLoc, "redefinition of '" + Name + "'");
1114     else if (!Sym->isVariable())
1115       return Error(EqualLoc, "invalid assignment to '" + Name + "'");
1116     else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
1117       return Error(EqualLoc, "invalid reassignment of non-absolute variable '" +
1118                    Name + "'");
1119   } else
1120     Sym = getContext().GetOrCreateSymbol(Name);
1121
1122   // FIXME: Handle '.'.
1123
1124   Sym->setUsedInExpr(true);
1125
1126   // Do the assignment.
1127   Out.EmitAssignment(Sym, Value);
1128
1129   return false;
1130 }
1131
1132 /// ParseIdentifier:
1133 ///   ::= identifier
1134 ///   ::= string
1135 bool AsmParser::ParseIdentifier(StringRef &Res) {
1136   if (Lexer.isNot(AsmToken::Identifier) &&
1137       Lexer.isNot(AsmToken::String))
1138     return true;
1139
1140   Res = getTok().getIdentifier();
1141
1142   Lex(); // Consume the identifier token.
1143
1144   return false;
1145 }
1146
1147 /// ParseDirectiveSet:
1148 ///   ::= .set identifier ',' expression
1149 bool AsmParser::ParseDirectiveSet() {
1150   StringRef Name;
1151
1152   if (ParseIdentifier(Name))
1153     return TokError("expected identifier after '.set' directive");
1154   
1155   if (getLexer().isNot(AsmToken::Comma))
1156     return TokError("unexpected token in '.set'");
1157   Lex();
1158
1159   return ParseAssignment(Name);
1160 }
1161
1162 bool AsmParser::ParseEscapedString(std::string &Data) {
1163   assert(getLexer().is(AsmToken::String) && "Unexpected current token!");
1164
1165   Data = "";
1166   StringRef Str = getTok().getStringContents();
1167   for (unsigned i = 0, e = Str.size(); i != e; ++i) {
1168     if (Str[i] != '\\') {
1169       Data += Str[i];
1170       continue;
1171     }
1172
1173     // Recognize escaped characters. Note that this escape semantics currently
1174     // loosely follows Darwin 'as'. Notably, it doesn't support hex escapes.
1175     ++i;
1176     if (i == e)
1177       return TokError("unexpected backslash at end of string");
1178
1179     // Recognize octal sequences.
1180     if ((unsigned) (Str[i] - '0') <= 7) {
1181       // Consume up to three octal characters.
1182       unsigned Value = Str[i] - '0';
1183
1184       if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1185         ++i;
1186         Value = Value * 8 + (Str[i] - '0');
1187
1188         if (i + 1 != e && ((unsigned) (Str[i + 1] - '0')) <= 7) {
1189           ++i;
1190           Value = Value * 8 + (Str[i] - '0');
1191         }
1192       }
1193
1194       if (Value > 255)
1195         return TokError("invalid octal escape sequence (out of range)");
1196
1197       Data += (unsigned char) Value;
1198       continue;
1199     }
1200
1201     // Otherwise recognize individual escapes.
1202     switch (Str[i]) {
1203     default:
1204       // Just reject invalid escape sequences for now.
1205       return TokError("invalid escape sequence (unrecognized character)");
1206
1207     case 'b': Data += '\b'; break;
1208     case 'f': Data += '\f'; break;
1209     case 'n': Data += '\n'; break;
1210     case 'r': Data += '\r'; break;
1211     case 't': Data += '\t'; break;
1212     case '"': Data += '"'; break;
1213     case '\\': Data += '\\'; break;
1214     }
1215   }
1216
1217   return false;
1218 }
1219
1220 /// ParseDirectiveAscii:
1221 ///   ::= ( .ascii | .asciz ) [ "string" ( , "string" )* ]
1222 bool AsmParser::ParseDirectiveAscii(bool ZeroTerminated) {
1223   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1224     for (;;) {
1225       if (getLexer().isNot(AsmToken::String))
1226         return TokError("expected string in '.ascii' or '.asciz' directive");
1227
1228       std::string Data;
1229       if (ParseEscapedString(Data))
1230         return true;
1231
1232       getStreamer().EmitBytes(Data, DEFAULT_ADDRSPACE);
1233       if (ZeroTerminated)
1234         getStreamer().EmitBytes(StringRef("\0", 1), DEFAULT_ADDRSPACE);
1235
1236       Lex();
1237
1238       if (getLexer().is(AsmToken::EndOfStatement))
1239         break;
1240
1241       if (getLexer().isNot(AsmToken::Comma))
1242         return TokError("unexpected token in '.ascii' or '.asciz' directive");
1243       Lex();
1244     }
1245   }
1246
1247   Lex();
1248   return false;
1249 }
1250
1251 /// ParseDirectiveValue
1252 ///  ::= (.byte | .short | ... ) [ expression (, expression)* ]
1253 bool AsmParser::ParseDirectiveValue(unsigned Size) {
1254   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1255     for (;;) {
1256       const MCExpr *Value;
1257       SMLoc ATTRIBUTE_UNUSED StartLoc = getLexer().getLoc();
1258       if (ParseExpression(Value))
1259         return true;
1260
1261       // Special case constant expressions to match code generator.
1262       if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value))
1263         getStreamer().EmitIntValue(MCE->getValue(), Size, DEFAULT_ADDRSPACE);
1264       else
1265         getStreamer().EmitValue(Value, Size, DEFAULT_ADDRSPACE);
1266
1267       if (getLexer().is(AsmToken::EndOfStatement))
1268         break;
1269       
1270       // FIXME: Improve diagnostic.
1271       if (getLexer().isNot(AsmToken::Comma))
1272         return TokError("unexpected token in directive");
1273       Lex();
1274     }
1275   }
1276
1277   Lex();
1278   return false;
1279 }
1280
1281 /// ParseDirectiveSpace
1282 ///  ::= .space expression [ , expression ]
1283 bool AsmParser::ParseDirectiveSpace() {
1284   int64_t NumBytes;
1285   if (ParseAbsoluteExpression(NumBytes))
1286     return true;
1287
1288   int64_t FillExpr = 0;
1289   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1290     if (getLexer().isNot(AsmToken::Comma))
1291       return TokError("unexpected token in '.space' directive");
1292     Lex();
1293     
1294     if (ParseAbsoluteExpression(FillExpr))
1295       return true;
1296
1297     if (getLexer().isNot(AsmToken::EndOfStatement))
1298       return TokError("unexpected token in '.space' directive");
1299   }
1300
1301   Lex();
1302
1303   if (NumBytes <= 0)
1304     return TokError("invalid number of bytes in '.space' directive");
1305
1306   // FIXME: Sometimes the fill expr is 'nop' if it isn't supplied, instead of 0.
1307   getStreamer().EmitFill(NumBytes, FillExpr, DEFAULT_ADDRSPACE);
1308
1309   return false;
1310 }
1311
1312 /// ParseDirectiveFill
1313 ///  ::= .fill expression , expression , expression
1314 bool AsmParser::ParseDirectiveFill() {
1315   int64_t NumValues;
1316   if (ParseAbsoluteExpression(NumValues))
1317     return true;
1318
1319   if (getLexer().isNot(AsmToken::Comma))
1320     return TokError("unexpected token in '.fill' directive");
1321   Lex();
1322   
1323   int64_t FillSize;
1324   if (ParseAbsoluteExpression(FillSize))
1325     return true;
1326
1327   if (getLexer().isNot(AsmToken::Comma))
1328     return TokError("unexpected token in '.fill' directive");
1329   Lex();
1330   
1331   int64_t FillExpr;
1332   if (ParseAbsoluteExpression(FillExpr))
1333     return true;
1334
1335   if (getLexer().isNot(AsmToken::EndOfStatement))
1336     return TokError("unexpected token in '.fill' directive");
1337   
1338   Lex();
1339
1340   if (FillSize != 1 && FillSize != 2 && FillSize != 4 && FillSize != 8)
1341     return TokError("invalid '.fill' size, expected 1, 2, 4, or 8");
1342
1343   for (uint64_t i = 0, e = NumValues; i != e; ++i)
1344     getStreamer().EmitIntValue(FillExpr, FillSize, DEFAULT_ADDRSPACE);
1345
1346   return false;
1347 }
1348
1349 /// ParseDirectiveOrg
1350 ///  ::= .org expression [ , expression ]
1351 bool AsmParser::ParseDirectiveOrg() {
1352   const MCExpr *Offset;
1353   if (ParseExpression(Offset))
1354     return true;
1355
1356   // Parse optional fill expression.
1357   int64_t FillExpr = 0;
1358   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1359     if (getLexer().isNot(AsmToken::Comma))
1360       return TokError("unexpected token in '.org' directive");
1361     Lex();
1362     
1363     if (ParseAbsoluteExpression(FillExpr))
1364       return true;
1365
1366     if (getLexer().isNot(AsmToken::EndOfStatement))
1367       return TokError("unexpected token in '.org' directive");
1368   }
1369
1370   Lex();
1371
1372   // FIXME: Only limited forms of relocatable expressions are accepted here, it
1373   // has to be relative to the current section.
1374   getStreamer().EmitValueToOffset(Offset, FillExpr);
1375
1376   return false;
1377 }
1378
1379 /// ParseDirectiveAlign
1380 ///  ::= {.align, ...} expression [ , expression [ , expression ]]
1381 bool AsmParser::ParseDirectiveAlign(bool IsPow2, unsigned ValueSize) {
1382   SMLoc AlignmentLoc = getLexer().getLoc();
1383   int64_t Alignment;
1384   if (ParseAbsoluteExpression(Alignment))
1385     return true;
1386
1387   SMLoc MaxBytesLoc;
1388   bool HasFillExpr = false;
1389   int64_t FillExpr = 0;
1390   int64_t MaxBytesToFill = 0;
1391   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1392     if (getLexer().isNot(AsmToken::Comma))
1393       return TokError("unexpected token in directive");
1394     Lex();
1395
1396     // The fill expression can be omitted while specifying a maximum number of
1397     // alignment bytes, e.g:
1398     //  .align 3,,4
1399     if (getLexer().isNot(AsmToken::Comma)) {
1400       HasFillExpr = true;
1401       if (ParseAbsoluteExpression(FillExpr))
1402         return true;
1403     }
1404
1405     if (getLexer().isNot(AsmToken::EndOfStatement)) {
1406       if (getLexer().isNot(AsmToken::Comma))
1407         return TokError("unexpected token in directive");
1408       Lex();
1409
1410       MaxBytesLoc = getLexer().getLoc();
1411       if (ParseAbsoluteExpression(MaxBytesToFill))
1412         return true;
1413       
1414       if (getLexer().isNot(AsmToken::EndOfStatement))
1415         return TokError("unexpected token in directive");
1416     }
1417   }
1418
1419   Lex();
1420
1421   if (!HasFillExpr)
1422     FillExpr = 0;
1423
1424   // Compute alignment in bytes.
1425   if (IsPow2) {
1426     // FIXME: Diagnose overflow.
1427     if (Alignment >= 32) {
1428       Error(AlignmentLoc, "invalid alignment value");
1429       Alignment = 31;
1430     }
1431
1432     Alignment = 1ULL << Alignment;
1433   }
1434
1435   // Diagnose non-sensical max bytes to align.
1436   if (MaxBytesLoc.isValid()) {
1437     if (MaxBytesToFill < 1) {
1438       Error(MaxBytesLoc, "alignment directive can never be satisfied in this "
1439             "many bytes, ignoring maximum bytes expression");
1440       MaxBytesToFill = 0;
1441     }
1442
1443     if (MaxBytesToFill >= Alignment) {
1444       Warning(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
1445               "has no effect");
1446       MaxBytesToFill = 0;
1447     }
1448   }
1449
1450   // Check whether we should use optimal code alignment for this .align
1451   // directive.
1452   //
1453   // FIXME: This should be using a target hook.
1454   bool UseCodeAlign = false;
1455   if (const MCSectionMachO *S = dyn_cast<MCSectionMachO>(
1456         getStreamer().getCurrentSection()))
1457     UseCodeAlign = S->hasAttribute(MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS);
1458   if ((!HasFillExpr || Lexer.getMAI().getTextAlignFillValue() == FillExpr) &&
1459       ValueSize == 1 && UseCodeAlign) {
1460     getStreamer().EmitCodeAlignment(Alignment, MaxBytesToFill);
1461   } else {
1462     // FIXME: Target specific behavior about how the "extra" bytes are filled.
1463     getStreamer().EmitValueToAlignment(Alignment, FillExpr, ValueSize,
1464                                        MaxBytesToFill);
1465   }
1466
1467   return false;
1468 }
1469
1470 /// ParseDirectiveSymbolAttribute
1471 ///  ::= { ".globl", ".weak", ... } [ identifier ( , identifier )* ]
1472 bool AsmParser::ParseDirectiveSymbolAttribute(MCSymbolAttr Attr) {
1473   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1474     for (;;) {
1475       StringRef Name;
1476
1477       if (ParseIdentifier(Name))
1478         return TokError("expected identifier in directive");
1479       
1480       MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
1481
1482       getStreamer().EmitSymbolAttribute(Sym, Attr);
1483
1484       if (getLexer().is(AsmToken::EndOfStatement))
1485         break;
1486
1487       if (getLexer().isNot(AsmToken::Comma))
1488         return TokError("unexpected token in directive");
1489       Lex();
1490     }
1491   }
1492
1493   Lex();
1494   return false;  
1495 }
1496
1497 /// ParseDirectiveELFType
1498 ///  ::= .type identifier , @attribute
1499 bool AsmParser::ParseDirectiveELFType() {
1500   StringRef Name;
1501   if (ParseIdentifier(Name))
1502     return TokError("expected identifier in directive");
1503
1504   // Handle the identifier as the key symbol.
1505   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
1506
1507   if (getLexer().isNot(AsmToken::Comma))
1508     return TokError("unexpected token in '.type' directive");
1509   Lex();
1510
1511   if (getLexer().isNot(AsmToken::At))
1512     return TokError("expected '@' before type");
1513   Lex();
1514
1515   StringRef Type;
1516   SMLoc TypeLoc;
1517
1518   TypeLoc = getLexer().getLoc();
1519   if (ParseIdentifier(Type))
1520     return TokError("expected symbol type in directive");
1521
1522   MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Type)
1523     .Case("function", MCSA_ELF_TypeFunction)
1524     .Case("object", MCSA_ELF_TypeObject)
1525     .Case("tls_object", MCSA_ELF_TypeTLS)
1526     .Case("common", MCSA_ELF_TypeCommon)
1527     .Case("notype", MCSA_ELF_TypeNoType)
1528     .Default(MCSA_Invalid);
1529
1530   if (Attr == MCSA_Invalid)
1531     return Error(TypeLoc, "unsupported attribute in '.type' directive");
1532
1533   if (getLexer().isNot(AsmToken::EndOfStatement))
1534     return TokError("unexpected token in '.type' directive");
1535
1536   Lex();
1537
1538   getStreamer().EmitSymbolAttribute(Sym, Attr);
1539
1540   return false;
1541 }
1542
1543 /// ParseDirectiveComm
1544 ///  ::= ( .comm | .lcomm ) identifier , size_expression [ , align_expression ]
1545 bool AsmParser::ParseDirectiveComm(bool IsLocal) {
1546   SMLoc IDLoc = getLexer().getLoc();
1547   StringRef Name;
1548   if (ParseIdentifier(Name))
1549     return TokError("expected identifier in directive");
1550   
1551   // Handle the identifier as the key symbol.
1552   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
1553
1554   if (getLexer().isNot(AsmToken::Comma))
1555     return TokError("unexpected token in directive");
1556   Lex();
1557
1558   int64_t Size;
1559   SMLoc SizeLoc = getLexer().getLoc();
1560   if (ParseAbsoluteExpression(Size))
1561     return true;
1562
1563   int64_t Pow2Alignment = 0;
1564   SMLoc Pow2AlignmentLoc;
1565   if (getLexer().is(AsmToken::Comma)) {
1566     Lex();
1567     Pow2AlignmentLoc = getLexer().getLoc();
1568     if (ParseAbsoluteExpression(Pow2Alignment))
1569       return true;
1570     
1571     // If this target takes alignments in bytes (not log) validate and convert.
1572     if (Lexer.getMAI().getAlignmentIsInBytes()) {
1573       if (!isPowerOf2_64(Pow2Alignment))
1574         return Error(Pow2AlignmentLoc, "alignment must be a power of 2");
1575       Pow2Alignment = Log2_64(Pow2Alignment);
1576     }
1577   }
1578   
1579   if (getLexer().isNot(AsmToken::EndOfStatement))
1580     return TokError("unexpected token in '.comm' or '.lcomm' directive");
1581   
1582   Lex();
1583
1584   // NOTE: a size of zero for a .comm should create a undefined symbol
1585   // but a size of .lcomm creates a bss symbol of size zero.
1586   if (Size < 0)
1587     return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
1588                  "be less than zero");
1589
1590   // NOTE: The alignment in the directive is a power of 2 value, the assembler
1591   // may internally end up wanting an alignment in bytes.
1592   // FIXME: Diagnose overflow.
1593   if (Pow2Alignment < 0)
1594     return Error(Pow2AlignmentLoc, "invalid '.comm' or '.lcomm' directive "
1595                  "alignment, can't be less than zero");
1596
1597   if (!Sym->isUndefined())
1598     return Error(IDLoc, "invalid symbol redefinition");
1599
1600   // '.lcomm' is equivalent to '.zerofill'.
1601   // Create the Symbol as a common or local common with Size and Pow2Alignment
1602   if (IsLocal) {
1603     getStreamer().EmitZerofill(Ctx.getMachOSection(
1604                                  "__DATA", "__bss", MCSectionMachO::S_ZEROFILL,
1605                                  0, SectionKind::getBSS()),
1606                                Sym, Size, 1 << Pow2Alignment);
1607     return false;
1608   }
1609
1610   getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment);
1611   return false;
1612 }
1613
1614 /// ParseDirectiveAbort
1615 ///  ::= .abort [... message ...]
1616 bool AsmParser::ParseDirectiveAbort() {
1617   // FIXME: Use loc from directive.
1618   SMLoc Loc = getLexer().getLoc();
1619
1620   StringRef Str = ParseStringToEndOfStatement();
1621   if (getLexer().isNot(AsmToken::EndOfStatement))
1622     return TokError("unexpected token in '.abort' directive");
1623
1624   Lex();
1625
1626   if (Str.empty())
1627     Error(Loc, ".abort detected. Assembly stopping.");
1628   else
1629     Error(Loc, ".abort '" + Str + "' detected. Assembly stopping.");
1630   // FIXME: Actually abort assembly here.
1631
1632   return false;
1633 }
1634
1635 /// ParseDirectiveInclude
1636 ///  ::= .include "filename"
1637 bool AsmParser::ParseDirectiveInclude() {
1638   if (getLexer().isNot(AsmToken::String))
1639     return TokError("expected string in '.include' directive");
1640   
1641   std::string Filename = getTok().getString();
1642   SMLoc IncludeLoc = getLexer().getLoc();
1643   Lex();
1644
1645   if (getLexer().isNot(AsmToken::EndOfStatement))
1646     return TokError("unexpected token in '.include' directive");
1647   
1648   // Strip the quotes.
1649   Filename = Filename.substr(1, Filename.size()-2);
1650   
1651   // Attempt to switch the lexer to the included file before consuming the end
1652   // of statement to avoid losing it when we switch.
1653   if (EnterIncludeFile(Filename)) {
1654     Error(IncludeLoc, "Could not find include file '" + Filename + "'");
1655     return true;
1656   }
1657
1658   return false;
1659 }
1660
1661 /// ParseDirectiveIf
1662 /// ::= .if expression
1663 bool AsmParser::ParseDirectiveIf(SMLoc DirectiveLoc) {
1664   TheCondStack.push_back(TheCondState);
1665   TheCondState.TheCond = AsmCond::IfCond;
1666   if(TheCondState.Ignore) {
1667     EatToEndOfStatement();
1668   }
1669   else {
1670     int64_t ExprValue;
1671     if (ParseAbsoluteExpression(ExprValue))
1672       return true;
1673
1674     if (getLexer().isNot(AsmToken::EndOfStatement))
1675       return TokError("unexpected token in '.if' directive");
1676     
1677     Lex();
1678
1679     TheCondState.CondMet = ExprValue;
1680     TheCondState.Ignore = !TheCondState.CondMet;
1681   }
1682
1683   return false;
1684 }
1685
1686 /// ParseDirectiveElseIf
1687 /// ::= .elseif expression
1688 bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
1689   if (TheCondState.TheCond != AsmCond::IfCond &&
1690       TheCondState.TheCond != AsmCond::ElseIfCond)
1691       Error(DirectiveLoc, "Encountered a .elseif that doesn't follow a .if or "
1692                           " an .elseif");
1693   TheCondState.TheCond = AsmCond::ElseIfCond;
1694
1695   bool LastIgnoreState = false;
1696   if (!TheCondStack.empty())
1697       LastIgnoreState = TheCondStack.back().Ignore;
1698   if (LastIgnoreState || TheCondState.CondMet) {
1699     TheCondState.Ignore = true;
1700     EatToEndOfStatement();
1701   }
1702   else {
1703     int64_t ExprValue;
1704     if (ParseAbsoluteExpression(ExprValue))
1705       return true;
1706
1707     if (getLexer().isNot(AsmToken::EndOfStatement))
1708       return TokError("unexpected token in '.elseif' directive");
1709     
1710     Lex();
1711     TheCondState.CondMet = ExprValue;
1712     TheCondState.Ignore = !TheCondState.CondMet;
1713   }
1714
1715   return false;
1716 }
1717
1718 /// ParseDirectiveElse
1719 /// ::= .else
1720 bool AsmParser::ParseDirectiveElse(SMLoc DirectiveLoc) {
1721   if (getLexer().isNot(AsmToken::EndOfStatement))
1722     return TokError("unexpected token in '.else' directive");
1723   
1724   Lex();
1725
1726   if (TheCondState.TheCond != AsmCond::IfCond &&
1727       TheCondState.TheCond != AsmCond::ElseIfCond)
1728       Error(DirectiveLoc, "Encountered a .else that doesn't follow a .if or an "
1729                           ".elseif");
1730   TheCondState.TheCond = AsmCond::ElseCond;
1731   bool LastIgnoreState = false;
1732   if (!TheCondStack.empty())
1733     LastIgnoreState = TheCondStack.back().Ignore;
1734   if (LastIgnoreState || TheCondState.CondMet)
1735     TheCondState.Ignore = true;
1736   else
1737     TheCondState.Ignore = false;
1738
1739   return false;
1740 }
1741
1742 /// ParseDirectiveEndIf
1743 /// ::= .endif
1744 bool AsmParser::ParseDirectiveEndIf(SMLoc DirectiveLoc) {
1745   if (getLexer().isNot(AsmToken::EndOfStatement))
1746     return TokError("unexpected token in '.endif' directive");
1747   
1748   Lex();
1749
1750   if ((TheCondState.TheCond == AsmCond::NoCond) ||
1751       TheCondStack.empty())
1752     Error(DirectiveLoc, "Encountered a .endif that doesn't follow a .if or "
1753                         ".else");
1754   if (!TheCondStack.empty()) {
1755     TheCondState = TheCondStack.back();
1756     TheCondStack.pop_back();
1757   }
1758
1759   return false;
1760 }
1761
1762 /// ParseDirectiveFile
1763 /// ::= .file [number] string
1764 bool GenericAsmParser::ParseDirectiveFile(StringRef, SMLoc DirectiveLoc) {
1765   // FIXME: I'm not sure what this is.
1766   int64_t FileNumber = -1;
1767   SMLoc FileNumberLoc = getLexer().getLoc();
1768   if (getLexer().is(AsmToken::Integer)) {
1769     FileNumber = getTok().getIntVal();
1770     Lex();
1771
1772     if (FileNumber < 1)
1773       return TokError("file number less than one");
1774   }
1775
1776   if (getLexer().isNot(AsmToken::String))
1777     return TokError("unexpected token in '.file' directive");
1778
1779   StringRef Filename = getTok().getString();
1780   Filename = Filename.substr(1, Filename.size()-2);
1781   Lex();
1782
1783   if (getLexer().isNot(AsmToken::EndOfStatement))
1784     return TokError("unexpected token in '.file' directive");
1785
1786   if (FileNumber == -1)
1787     getStreamer().EmitFileDirective(Filename);
1788   else {
1789      if (getContext().GetDwarfFile(Filename, FileNumber) == 0)
1790         Error(FileNumberLoc, "file number already allocated");
1791     getStreamer().EmitDwarfFileDirective(FileNumber, Filename);
1792   }
1793
1794   return false;
1795 }
1796
1797 /// ParseDirectiveLine
1798 /// ::= .line [number]
1799 bool GenericAsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
1800   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1801     if (getLexer().isNot(AsmToken::Integer))
1802       return TokError("unexpected token in '.line' directive");
1803
1804     int64_t LineNumber = getTok().getIntVal();
1805     (void) LineNumber;
1806     Lex();
1807
1808     // FIXME: Do something with the .line.
1809   }
1810
1811   if (getLexer().isNot(AsmToken::EndOfStatement))
1812     return TokError("unexpected token in '.line' directive");
1813
1814   return false;
1815 }
1816
1817
1818 /// ParseDirectiveLoc
1819 /// ::= .loc number [number [number]]
1820 bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
1821   if (getLexer().isNot(AsmToken::Integer))
1822     return TokError("unexpected token in '.loc' directive");
1823
1824   // FIXME: What are these fields?
1825   int64_t FileNumber = getTok().getIntVal();
1826   (void) FileNumber;
1827   // FIXME: Validate file.
1828
1829   Lex();
1830   if (getLexer().isNot(AsmToken::EndOfStatement)) {
1831     if (getLexer().isNot(AsmToken::Integer))
1832       return TokError("unexpected token in '.loc' directive");
1833
1834     int64_t Param2 = getTok().getIntVal();
1835     (void) Param2;
1836     Lex();
1837
1838     if (getLexer().isNot(AsmToken::EndOfStatement)) {
1839       if (getLexer().isNot(AsmToken::Integer))
1840         return TokError("unexpected token in '.loc' directive");
1841
1842       int64_t Param3 = getTok().getIntVal();
1843       (void) Param3;
1844       Lex();
1845
1846       // FIXME: Do something with the .loc.
1847     }
1848   }
1849
1850   if (getLexer().isNot(AsmToken::EndOfStatement))
1851     return TokError("unexpected token in '.file' directive");
1852
1853   return false;
1854 }
1855
1856 /// ParseDirectiveMacrosOnOff
1857 /// ::= .macros_on
1858 /// ::= .macros_off
1859 bool GenericAsmParser::ParseDirectiveMacrosOnOff(StringRef Directive,
1860                                                  SMLoc DirectiveLoc) {
1861   if (getLexer().isNot(AsmToken::EndOfStatement))
1862     return Error(getLexer().getLoc(),
1863                  "unexpected token in '" + Directive + "' directive");
1864
1865   getParser().MacrosEnabled = Directive == ".macros_on";
1866
1867   return false;
1868 }
1869
1870 /// ParseDirectiveMacro
1871 /// ::= .macro name
1872 bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
1873                                            SMLoc DirectiveLoc) {
1874   StringRef Name;
1875   if (getParser().ParseIdentifier(Name))
1876     return TokError("expected identifier in directive");
1877
1878   if (getLexer().isNot(AsmToken::EndOfStatement))
1879     return TokError("unexpected token in '.macro' directive");
1880
1881   // Eat the end of statement.
1882   Lex();
1883
1884   AsmToken EndToken, StartToken = getTok();
1885
1886   // Lex the macro definition.
1887   for (;;) {
1888     // Check whether we have reached the end of the file.
1889     if (getLexer().is(AsmToken::Eof))
1890       return Error(DirectiveLoc, "no matching '.endmacro' in definition");
1891
1892     // Otherwise, check whether we have reach the .endmacro.
1893     if (getLexer().is(AsmToken::Identifier) &&
1894         (getTok().getIdentifier() == ".endm" ||
1895          getTok().getIdentifier() == ".endmacro")) {
1896       EndToken = getTok();
1897       Lex();
1898       if (getLexer().isNot(AsmToken::EndOfStatement))
1899         return TokError("unexpected token in '" + EndToken.getIdentifier() +
1900                         "' directive");
1901       break;
1902     }
1903
1904     // Otherwise, scan til the end of the statement.
1905     getParser().EatToEndOfStatement();
1906   }
1907
1908   if (getParser().MacroMap.lookup(Name)) {
1909     return Error(DirectiveLoc, "macro '" + Name + "' is already defined");
1910   }
1911
1912   const char *BodyStart = StartToken.getLoc().getPointer();
1913   const char *BodyEnd = EndToken.getLoc().getPointer();
1914   StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart);
1915   getParser().MacroMap[Name] = new Macro(Name, Body);
1916   return false;
1917 }
1918
1919 /// ParseDirectiveEndMacro
1920 /// ::= .endm
1921 /// ::= .endmacro
1922 bool GenericAsmParser::ParseDirectiveEndMacro(StringRef Directive,
1923                                            SMLoc DirectiveLoc) {
1924   if (getLexer().isNot(AsmToken::EndOfStatement))
1925     return TokError("unexpected token in '" + Directive + "' directive");
1926
1927   // If we are inside a macro instantiation, terminate the current
1928   // instantiation.
1929   if (!getParser().ActiveMacros.empty()) {
1930     getParser().HandleMacroExit();
1931     return false;
1932   }
1933
1934   // Otherwise, this .endmacro is a stray entry in the file; well formed
1935   // .endmacro directives are handled during the macro definition parsing.
1936   return TokError("unexpected '" + Directive + "' in file, "
1937                   "no current macro definition");
1938 }
1939
1940 /// \brief Create an MCAsmParser instance.
1941 MCAsmParser *llvm::createMCAsmParser(const Target &T, SourceMgr &SM,
1942                                      MCContext &C, MCStreamer &Out,
1943                                      const MCAsmInfo &MAI) {
1944   return new AsmParser(T, SM, C, Out, MAI);
1945 }