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