Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | 9a7e2cc | 2009-07-27 21:49:56 +0000 | [diff] [blame^] | 17 | #include "llvm/ADT/StringRef.h" |
Daniel Dunbar | dbd692a | 2009-07-20 20:01:54 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCAsmLexer.h" |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 19 | #include "llvm/Support/DataTypes.h" |
| 20 | #include <string> |
| 21 | #include <cassert> |
| 22 | |
| 23 | namespace llvm { |
| 24 | class MemoryBuffer; |
| 25 | class SourceMgr; |
| 26 | class SMLoc; |
| 27 | |
| 28 | namespace asmtok { |
| 29 | enum TokKind { |
| 30 | // Markers |
| 31 | Eof, Error, |
| 32 | |
Chris Lattner | 10a907d | 2009-06-21 19:56:35 +0000 | [diff] [blame] | 33 | // String values. |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 34 | Identifier, |
Chris Lattner | 4651bca | 2009-06-21 19:21:25 +0000 | [diff] [blame] | 35 | Register, |
Chris Lattner | 10a907d | 2009-06-21 19:56:35 +0000 | [diff] [blame] | 36 | String, |
| 37 | |
| 38 | // Integer values. |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 39 | IntVal, |
| 40 | |
Chris Lattner | 10a907d | 2009-06-21 19:56:35 +0000 | [diff] [blame] | 41 | // No-value. |
Chris Lattner | 4651bca | 2009-06-21 19:21:25 +0000 | [diff] [blame] | 42 | EndOfStatement, |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 43 | Colon, |
Chris Lattner | 74ec1a3 | 2009-06-22 06:32:03 +0000 | [diff] [blame] | 44 | Plus, Minus, Tilde, |
Chris Lattner | 4651bca | 2009-06-21 19:21:25 +0000 | [diff] [blame] | 45 | Slash, // '/' |
| 46 | LParen, RParen, |
Daniel Dunbar | 475839e | 2009-06-29 20:37:27 +0000 | [diff] [blame] | 47 | Star, Comma, Dollar, Equal, EqualEqual, |
Chris Lattner | 8dfbe6c | 2009-06-23 05:57:07 +0000 | [diff] [blame] | 48 | |
Daniel Dunbar | 475839e | 2009-06-29 20:37:27 +0000 | [diff] [blame] | 49 | Pipe, PipePipe, Caret, |
| 50 | Amp, AmpAmp, Exclaim, ExclaimEqual, Percent, |
| 51 | Less, LessEqual, LessLess, LessGreater, |
| 52 | Greater, GreaterEqual, GreaterGreater |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 53 | }; |
| 54 | } |
| 55 | |
| 56 | /// AsmLexer - Lexer class for assembly files. |
Daniel Dunbar | dbd692a | 2009-07-20 20:01:54 +0000 | [diff] [blame] | 57 | class AsmLexer : public MCAsmLexer { |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 58 | SourceMgr &SrcMgr; |
| 59 | |
| 60 | const char *CurPtr; |
| 61 | const MemoryBuffer *CurBuf; |
Chris Lattner | faf32c1 | 2009-06-24 00:33:19 +0000 | [diff] [blame] | 62 | // A llvm::StringSet<>, which provides uniqued and null-terminated strings. |
| 63 | void *TheStringSet; |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 64 | |
| 65 | // Information about the current token. |
| 66 | const char *TokStart; |
| 67 | asmtok::TokKind CurKind; |
Chris Lattner | faf32c1 | 2009-06-24 00:33:19 +0000 | [diff] [blame] | 68 | const char *CurStrVal; // This is valid for Identifier. |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 69 | int64_t CurIntVal; |
| 70 | |
| 71 | /// CurBuffer - This is the current buffer index we're lexing from as managed |
| 72 | /// by the SourceMgr object. |
| 73 | int CurBuffer; |
| 74 | |
Chris Lattner | faf32c1 | 2009-06-24 00:33:19 +0000 | [diff] [blame] | 75 | void operator=(const AsmLexer&); // DO NOT IMPLEMENT |
| 76 | AsmLexer(const AsmLexer&); // DO NOT IMPLEMENT |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 77 | public: |
| 78 | AsmLexer(SourceMgr &SrcMgr); |
Chris Lattner | faf32c1 | 2009-06-24 00:33:19 +0000 | [diff] [blame] | 79 | ~AsmLexer(); |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 80 | |
| 81 | asmtok::TokKind Lex() { |
| 82 | return CurKind = LexToken(); |
| 83 | } |
| 84 | |
| 85 | asmtok::TokKind getKind() const { return CurKind; } |
Chris Lattner | b0789ed | 2009-06-21 20:54:55 +0000 | [diff] [blame] | 86 | bool is(asmtok::TokKind K) const { return CurKind == K; } |
| 87 | bool isNot(asmtok::TokKind K) const { return CurKind != K; } |
Daniel Dunbar | 9a7e2cc | 2009-07-27 21:49:56 +0000 | [diff] [blame^] | 88 | |
| 89 | /// getCurStrVal - Get the string for the current token, this includes all |
| 90 | /// characters (for example, the quotes on strings) in the token. |
| 91 | /// |
| 92 | /// The returned StringRef points into the source manager's memory buffer, and |
| 93 | /// is safe to store across calls to Lex(). |
| 94 | StringRef getCurStrVal() const { |
Chris Lattner | 10a907d | 2009-06-21 19:56:35 +0000 | [diff] [blame] | 95 | assert((CurKind == asmtok::Identifier || CurKind == asmtok::Register || |
| 96 | CurKind == asmtok::String) && |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 97 | "This token doesn't have a string value"); |
| 98 | return CurStrVal; |
| 99 | } |
| 100 | int64_t getCurIntVal() const { |
| 101 | assert(CurKind == asmtok::IntVal && "This token isn't an integer"); |
| 102 | return CurIntVal; |
| 103 | } |
| 104 | |
| 105 | SMLoc getLoc() const; |
| 106 | |
Chris Lattner | 8e25e2d | 2009-07-16 06:14:39 +0000 | [diff] [blame] | 107 | /// EnterIncludeFile - Enter the specified file. This returns true on failure. |
| 108 | bool EnterIncludeFile(const std::string &Filename); |
| 109 | |
Daniel Dunbar | 3fb7683 | 2009-06-30 00:49:23 +0000 | [diff] [blame] | 110 | void PrintMessage(SMLoc Loc, const std::string &Msg, const char *Type) const; |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 111 | |
| 112 | private: |
| 113 | int getNextChar(); |
Chris Lattner | 4651bca | 2009-06-21 19:21:25 +0000 | [diff] [blame] | 114 | asmtok::TokKind ReturnError(const char *Loc, const std::string &Msg); |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 115 | |
| 116 | /// LexToken - Read the next token and return its code. |
| 117 | asmtok::TokKind LexToken(); |
Chris Lattner | 4651bca | 2009-06-21 19:21:25 +0000 | [diff] [blame] | 118 | asmtok::TokKind LexIdentifier(); |
| 119 | asmtok::TokKind LexPercent(); |
| 120 | asmtok::TokKind LexSlash(); |
Daniel Dunbar | 1ad7edc | 2009-06-29 22:00:57 +0000 | [diff] [blame] | 121 | asmtok::TokKind LexLineComment(); |
Chris Lattner | 4651bca | 2009-06-21 19:21:25 +0000 | [diff] [blame] | 122 | asmtok::TokKind LexDigit(); |
Chris Lattner | 10a907d | 2009-06-21 19:56:35 +0000 | [diff] [blame] | 123 | asmtok::TokKind LexQuote(); |
Chris Lattner | a59e877 | 2009-06-21 07:19:10 +0000 | [diff] [blame] | 124 | }; |
| 125 | |
| 126 | } // end namespace llvm |
| 127 | |
| 128 | #endif |