MIR Serialization: Serialize the sub register indices.
[oota-llvm.git] / lib / CodeGen / MIRParser / MILexer.h
1 //===- MILexer.h - Lexer for machine instructions -------------------------===//
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 file declares the function that lexes the machine instruction source
11 // string.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_LIB_CODEGEN_MIRPARSER_MILEXER_H
16 #define LLVM_LIB_CODEGEN_MIRPARSER_MILEXER_H
17
18 #include "llvm/ADT/APSInt.h"
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/ADT/STLExtras.h"
21 #include <functional>
22
23 namespace llvm {
24
25 class Twine;
26
27 /// A token produced by the machine instruction lexer.
28 struct MIToken {
29   enum TokenKind {
30     // Markers
31     Eof,
32     Error,
33
34     // Tokens with no info.
35     comma,
36     equal,
37     underscore,
38     colon,
39
40     // Keywords
41     kw_implicit,
42     kw_implicit_define,
43     kw_dead,
44     kw_killed,
45     kw_undef,
46
47     // Identifier tokens
48     Identifier,
49     NamedRegister,
50     MachineBasicBlock,
51     NamedGlobalValue,
52     GlobalValue,
53
54     // Other tokens
55     IntegerLiteral,
56     VirtualRegister
57   };
58
59 private:
60   TokenKind Kind;
61   unsigned StringOffset;
62   StringRef Range;
63   APSInt IntVal;
64
65 public:
66   MIToken(TokenKind Kind, StringRef Range, unsigned StringOffset = 0)
67       : Kind(Kind), StringOffset(StringOffset), Range(Range) {}
68
69   MIToken(TokenKind Kind, StringRef Range, const APSInt &IntVal,
70           unsigned StringOffset = 0)
71       : Kind(Kind), StringOffset(StringOffset), Range(Range), IntVal(IntVal) {}
72
73   TokenKind kind() const { return Kind; }
74
75   bool isError() const { return Kind == Error; }
76
77   bool isRegister() const {
78     return Kind == NamedRegister || Kind == underscore ||
79            Kind == VirtualRegister;
80   }
81
82   bool isRegisterFlag() const {
83     return Kind == kw_implicit || Kind == kw_implicit_define ||
84            Kind == kw_dead || Kind == kw_killed || Kind == kw_undef;
85   }
86
87   bool is(TokenKind K) const { return Kind == K; }
88
89   bool isNot(TokenKind K) const { return Kind != K; }
90
91   StringRef::iterator location() const { return Range.begin(); }
92
93   StringRef stringValue() const { return Range.drop_front(StringOffset); }
94
95   const APSInt &integerValue() const { return IntVal; }
96
97   bool hasIntegerValue() const {
98     return Kind == IntegerLiteral || Kind == MachineBasicBlock ||
99            Kind == GlobalValue || Kind == VirtualRegister;
100   }
101 };
102
103 /// Consume a single machine instruction token in the given source and return
104 /// the remaining source string.
105 StringRef lexMIToken(
106     StringRef Source, MIToken &Token,
107     function_ref<void(StringRef::iterator, const Twine &)> ErrorCallback);
108
109 } // end namespace llvm
110
111 #endif