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