-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken.h
86 lines (56 loc) · 1.45 KB
/
token.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#ifndef __token_h__
#define __token_h__
#include <cstdint>
#include "include/variant.h"
#include "types.h"
#include "dp_register.h"
#include "Instruction.h"
#include "branch.h"
struct Location {
identifier file = nullptr;
int line = 0;
};
struct Token {
Token() = default;
Token(const Token &) = default;
Token(Token &&) = default;
Token(unsigned l, identifier i) : line(l), id(i)
{}
template <class T>
Token(unsigned l, T &&t) : line(l), value(std::forward<T>(t))
{}
template <class T>
Token(unsigned l, identifier i, T &&t) : line(l), id(i), value(std::forward<T>(t))
{}
~Token() = default;
Token& operator=(const Token &) = default;
Token& operator=(Token &&) = default;
unsigned type = 0;
unsigned line = 0;
identifier id = nullptr;
identifier file = nullptr;
variant<uint32_t, dp_register, Instruction, Mnemonic, ExpressionPtr, branch::branch_type> value;
const std::string &string_value() const noexcept {
static std::string empty;
return id ? *id : empty;
}
uint32_t int_value() const {
return get<uint32_t>(value);
}
inline dp_register register_value() const {
return get<dp_register>(value);
}
Mnemonic mnemonic_value() const {
return get<Mnemonic>(value);
}
Instruction instruction_value() const {
return get<Instruction>(value);
}
ExpressionPtr expr_value() const {
return get<ExpressionPtr>(value);
}
branch::branch_type branch_value() const {
return get<branch::branch_type>(value);
}
};
#endif