Down with trailing whitespace!
[oota-llvm.git] / lib / AsmParser / LLLexer.h
1 //===- LLLexer.h - Lexer for LLVM 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 represents the Lexer for .ll files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LIB_ASMPARSER_LLLEXER_H
15 #define LIB_ASMPARSER_LLLEXER_H
16
17 #include "LLToken.h"
18 #include "llvm/ADT/APSInt.h"
19 #include "llvm/ADT/APFloat.h"
20
21 #include <vector>
22 #include <string>
23 #include <iosfwd>
24
25 namespace llvm {
26   class MemoryBuffer;
27   class Type;
28   class ParseError;
29
30   class LLLexer {
31     const char *CurPtr;
32     MemoryBuffer *CurBuf;
33     ParseError &ErrorInfo;
34
35     // Information about the current token.
36     const char *TokStart;
37     lltok::Kind CurKind;
38     std::string StrVal;
39     unsigned UIntVal;
40     const Type *TyVal;
41     APFloat APFloatVal;
42     APSInt  APSIntVal;
43
44     std::string TheError;
45   public:
46     explicit LLLexer(MemoryBuffer *StartBuf, ParseError &);
47     ~LLLexer() {}
48
49     lltok::Kind Lex() {
50       return CurKind = LexToken();
51     }
52
53     typedef const char* LocTy;
54     LocTy getLoc() const { return TokStart; }
55     lltok::Kind getKind() const { return CurKind; }
56     const std::string getStrVal() const { return StrVal; }
57     const Type *getTyVal() const { return TyVal; }
58     unsigned getUIntVal() const { return UIntVal; }
59     const APSInt &getAPSIntVal() const { return APSIntVal; }
60     const APFloat &getAPFloatVal() const { return APFloatVal; }
61
62
63     bool Error(LocTy L, const std::string &Msg) const;
64     bool Error(const std::string &Msg) const { return Error(CurPtr, Msg); }
65     std::string getFilename() const;
66
67   private:
68     lltok::Kind LexToken();
69
70     int getNextChar();
71     void SkipLineComment();
72     lltok::Kind LexIdentifier();
73     lltok::Kind LexDigitOrNegative();
74     lltok::Kind LexPositive();
75     lltok::Kind LexAt();
76     lltok::Kind LexPercent();
77     lltok::Kind LexQuote();
78     lltok::Kind Lex0x();
79
80     uint64_t atoull(const char *Buffer, const char *End);
81     uint64_t HexIntToVal(const char *Buffer, const char *End);
82     void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]);
83   };
84 } // end namespace llvm
85
86 #endif