Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 1 | //===- LLLexer.h - Lexer for LLVM Assembly Files ----------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This class represents the Lexer for .ll files. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LIB_ASMPARSER_LLLEXER_H |
| 15 | #define LIB_ASMPARSER_LLLEXER_H |
| 16 | |
Chris Lattner | df98617 | 2009-01-02 07:01:27 +0000 | [diff] [blame] | 17 | #include "LLToken.h" |
| 18 | #include "llvm/ADT/APSInt.h" |
| 19 | #include "llvm/ADT/APFloat.h" |
Misha Brukman | 5679d18 | 2009-01-02 22:49:28 +0000 | [diff] [blame] | 20 | #include <string> |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 21 | |
| 22 | namespace llvm { |
| 23 | class MemoryBuffer; |
Chris Lattner | df98617 | 2009-01-02 07:01:27 +0000 | [diff] [blame] | 24 | class Type; |
Chris Lattner | 92bcb42 | 2009-07-02 22:46:18 +0000 | [diff] [blame^] | 25 | class SMDiagnostic; |
Misha Brukman | 9ea4034 | 2009-01-02 22:46:48 +0000 | [diff] [blame] | 26 | |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 27 | class LLLexer { |
| 28 | const char *CurPtr; |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 29 | MemoryBuffer *CurBuf; |
Chris Lattner | 92bcb42 | 2009-07-02 22:46:18 +0000 | [diff] [blame^] | 30 | SMDiagnostic &ErrorInfo; |
Chris Lattner | df98617 | 2009-01-02 07:01:27 +0000 | [diff] [blame] | 31 | |
| 32 | // Information about the current token. |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 33 | const char *TokStart; |
Chris Lattner | df98617 | 2009-01-02 07:01:27 +0000 | [diff] [blame] | 34 | lltok::Kind CurKind; |
| 35 | std::string StrVal; |
| 36 | unsigned UIntVal; |
| 37 | const Type *TyVal; |
| 38 | APFloat APFloatVal; |
| 39 | APSInt APSIntVal; |
Misha Brukman | 9ea4034 | 2009-01-02 22:46:48 +0000 | [diff] [blame] | 40 | |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 41 | std::string TheError; |
| 42 | public: |
Chris Lattner | 92bcb42 | 2009-07-02 22:46:18 +0000 | [diff] [blame^] | 43 | explicit LLLexer(MemoryBuffer *StartBuf, SMDiagnostic &); |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 44 | ~LLLexer() {} |
| 45 | |
Chris Lattner | df98617 | 2009-01-02 07:01:27 +0000 | [diff] [blame] | 46 | lltok::Kind Lex() { |
| 47 | return CurKind = LexToken(); |
| 48 | } |
| 49 | |
| 50 | typedef const char* LocTy; |
| 51 | LocTy getLoc() const { return TokStart; } |
| 52 | lltok::Kind getKind() const { return CurKind; } |
| 53 | const std::string getStrVal() const { return StrVal; } |
| 54 | const Type *getTyVal() const { return TyVal; } |
| 55 | unsigned getUIntVal() const { return UIntVal; } |
| 56 | const APSInt &getAPSIntVal() const { return APSIntVal; } |
| 57 | const APFloat &getAPFloatVal() const { return APFloatVal; } |
| 58 | |
Misha Brukman | 9ea4034 | 2009-01-02 22:46:48 +0000 | [diff] [blame] | 59 | |
Chris Lattner | df98617 | 2009-01-02 07:01:27 +0000 | [diff] [blame] | 60 | bool Error(LocTy L, const std::string &Msg) const; |
| 61 | bool Error(const std::string &Msg) const { return Error(CurPtr, Msg); } |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 62 | std::string getFilename() const; |
Misha Brukman | 9ea4034 | 2009-01-02 22:46:48 +0000 | [diff] [blame] | 63 | |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 64 | private: |
Chris Lattner | df98617 | 2009-01-02 07:01:27 +0000 | [diff] [blame] | 65 | lltok::Kind LexToken(); |
| 66 | |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 67 | int getNextChar(); |
| 68 | void SkipLineComment(); |
Chris Lattner | df98617 | 2009-01-02 07:01:27 +0000 | [diff] [blame] | 69 | lltok::Kind LexIdentifier(); |
| 70 | lltok::Kind LexDigitOrNegative(); |
| 71 | lltok::Kind LexPositive(); |
| 72 | lltok::Kind LexAt(); |
| 73 | lltok::Kind LexPercent(); |
| 74 | lltok::Kind LexQuote(); |
| 75 | lltok::Kind Lex0x(); |
Misha Brukman | 9ea4034 | 2009-01-02 22:46:48 +0000 | [diff] [blame] | 76 | |
Chris Lattner | df98617 | 2009-01-02 07:01:27 +0000 | [diff] [blame] | 77 | uint64_t atoull(const char *Buffer, const char *End); |
| 78 | uint64_t HexIntToVal(const char *Buffer, const char *End); |
| 79 | void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]); |
Dale Johannesen | 1b25cb2 | 2009-03-23 21:16:53 +0000 | [diff] [blame] | 80 | void FP80HexToIntPair(const char *Buff, const char *End, uint64_t Pair[2]); |
Chris Lattner | 8e3a8e0 | 2007-11-18 08:46:26 +0000 | [diff] [blame] | 81 | }; |
| 82 | } // end namespace llvm |
| 83 | |
| 84 | #endif |