blob: 289c38721d0efb80e5f8b9d602ad86fe898d76b4 [file] [log] [blame]
Chris Lattner8e3a8e02007-11-18 08:46:26 +00001//===- LLLexer.h - Lexer for LLVM Assembly Files ----------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner8e3a8e02007-11-18 08:46:26 +00007//
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 Lattnerdf986172009-01-02 07:01:27 +000017#include "LLToken.h"
18#include "llvm/ADT/APSInt.h"
19#include "llvm/ADT/APFloat.h"
20
Chris Lattner8e3a8e02007-11-18 08:46:26 +000021#include <vector>
22#include <string>
23#include <iosfwd>
24
25namespace llvm {
26 class MemoryBuffer;
Chris Lattnerdf986172009-01-02 07:01:27 +000027 class Type;
28 class ParseError;
Misha Brukman9ea40342009-01-02 22:46:48 +000029
Chris Lattner8e3a8e02007-11-18 08:46:26 +000030 class LLLexer {
31 const char *CurPtr;
Chris Lattner8e3a8e02007-11-18 08:46:26 +000032 MemoryBuffer *CurBuf;
Chris Lattnerdf986172009-01-02 07:01:27 +000033 ParseError &ErrorInfo;
34
35 // Information about the current token.
Chris Lattner8e3a8e02007-11-18 08:46:26 +000036 const char *TokStart;
Chris Lattnerdf986172009-01-02 07:01:27 +000037 lltok::Kind CurKind;
38 std::string StrVal;
39 unsigned UIntVal;
40 const Type *TyVal;
41 APFloat APFloatVal;
42 APSInt APSIntVal;
Misha Brukman9ea40342009-01-02 22:46:48 +000043
Chris Lattner8e3a8e02007-11-18 08:46:26 +000044 std::string TheError;
45 public:
Chris Lattnerdf986172009-01-02 07:01:27 +000046 explicit LLLexer(MemoryBuffer *StartBuf, ParseError &);
Chris Lattner8e3a8e02007-11-18 08:46:26 +000047 ~LLLexer() {}
48
Chris Lattnerdf986172009-01-02 07:01:27 +000049 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
Misha Brukman9ea40342009-01-02 22:46:48 +000062
Chris Lattnerdf986172009-01-02 07:01:27 +000063 bool Error(LocTy L, const std::string &Msg) const;
64 bool Error(const std::string &Msg) const { return Error(CurPtr, Msg); }
Chris Lattner8e3a8e02007-11-18 08:46:26 +000065 std::string getFilename() const;
Misha Brukman9ea40342009-01-02 22:46:48 +000066
Chris Lattner8e3a8e02007-11-18 08:46:26 +000067 private:
Chris Lattnerdf986172009-01-02 07:01:27 +000068 lltok::Kind LexToken();
69
Chris Lattner8e3a8e02007-11-18 08:46:26 +000070 int getNextChar();
71 void SkipLineComment();
Chris Lattnerdf986172009-01-02 07:01:27 +000072 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();
Misha Brukman9ea40342009-01-02 22:46:48 +000079
Chris Lattnerdf986172009-01-02 07:01:27 +000080 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]);
Chris Lattner8e3a8e02007-11-18 08:46:26 +000083 };
84} // end namespace llvm
85
86#endif