switch the .ll parser to use SourceMgr.
[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 #include "llvm/Support/SourceMgr.h"
21 #include <string>
22
23 namespace llvm {
24   class MemoryBuffer;
25   class Type;
26   class SMDiagnostic;
27
28   class LLLexer {
29     const char *CurPtr;
30     MemoryBuffer *CurBuf;
31     SMDiagnostic &ErrorInfo;
32     SourceMgr &SM;
33
34     // Information about the current token.
35     const char *TokStart;
36     lltok::Kind CurKind;
37     std::string StrVal;
38     unsigned UIntVal;
39     const Type *TyVal;
40     APFloat APFloatVal;
41     APSInt  APSIntVal;
42
43     std::string TheError;
44   public:
45     explicit LLLexer(MemoryBuffer *StartBuf, SourceMgr &SM, SMDiagnostic &);
46     ~LLLexer() {}
47
48     lltok::Kind Lex() {
49       return CurKind = LexToken();
50     }
51
52     typedef SMLoc LocTy;
53     LocTy getLoc() const { return SMLoc::getFromPointer(TokStart); }
54     lltok::Kind getKind() const { return CurKind; }
55     const std::string getStrVal() const { return StrVal; }
56     const Type *getTyVal() const { return TyVal; }
57     unsigned getUIntVal() const { return UIntVal; }
58     const APSInt &getAPSIntVal() const { return APSIntVal; }
59     const APFloat &getAPFloatVal() const { return APFloatVal; }
60
61
62     bool Error(LocTy L, const std::string &Msg) const;
63     bool Error(const std::string &Msg) const { return Error(getLoc(), Msg); }
64     std::string getFilename() const;
65
66   private:
67     lltok::Kind LexToken();
68
69     int getNextChar();
70     void SkipLineComment();
71     lltok::Kind LexIdentifier();
72     lltok::Kind LexDigitOrNegative();
73     lltok::Kind LexPositive();
74     lltok::Kind LexAt();
75     lltok::Kind LexPercent();
76     lltok::Kind LexQuote();
77     lltok::Kind Lex0x();
78
79     uint64_t atoull(const char *Buffer, const char *End);
80     uint64_t HexIntToVal(const char *Buffer, const char *End);
81     void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]);
82     void FP80HexToIntPair(const char *Buff, const char *End, uint64_t Pair[2]);
83   };
84 } // end namespace llvm
85
86 #endif