]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.git] / contrib / llvm / include / llvm / MC / MCParser / AsmLexer.h
1 //===- AsmLexer.h - Lexer for Assembly Files --------------------*- C++ -*-===//
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 declares the lexer for assembly files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef ASMLEXER_H
15 #define ASMLEXER_H
16
17 #include "llvm/ADT/StringRef.h"
18 #include "llvm/MC/MCParser/MCAsmLexer.h"
19 #include "llvm/MC/MCAsmInfo.h"
20 #include "llvm/Support/DataTypes.h"
21 #include <string>
22 #include <cassert>
23
24 namespace llvm {
25 class MemoryBuffer;
26 class SMLoc;
27 class MCAsmInfo;
28
29 /// AsmLexer - Lexer class for assembly files.
30 class AsmLexer : public MCAsmLexer {
31   const MCAsmInfo &MAI;
32
33   const char *CurPtr;
34   const MemoryBuffer *CurBuf;
35
36   void operator=(const AsmLexer&); // DO NOT IMPLEMENT
37   AsmLexer(const AsmLexer&);       // DO NOT IMPLEMENT
38
39 protected:
40   /// LexToken - Read the next token and return its code.
41   virtual AsmToken LexToken();
42
43 public:
44   AsmLexer(const MCAsmInfo &MAI);
45   ~AsmLexer();
46
47   void setBuffer(const MemoryBuffer *buf, const char *ptr = NULL);
48
49   virtual StringRef LexUntilEndOfStatement();
50
51   bool isAtStartOfComment(char Char);
52   bool isAtStatementSeparator(const char *Ptr);
53
54   const MCAsmInfo &getMAI() const { return MAI; }
55
56 private:
57   int getNextChar();
58   AsmToken ReturnError(const char *Loc, const std::string &Msg);
59
60   AsmToken LexIdentifier();
61   AsmToken LexSlash();
62   AsmToken LexLineComment();
63   AsmToken LexDigit();
64   AsmToken LexSingleQuote();
65   AsmToken LexQuote();
66   AsmToken LexFloatLiteral();
67 };
68
69 } // end namespace llvm
70
71 #endif