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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
// See LICENSE for license details.
#ifndef _RISCV_ISA_PARSER_H
#define _RISCV_ISA_PARSER_H
#include "decode.h"
#include <bitset>
#include <string>
#include <set>
typedef enum {
// 65('A') ~ 90('Z') is reserved for standard isa in misa
EXT_ZFH = 'Z' + 1,
EXT_ZFHMIN,
EXT_ZBA,
EXT_ZBB,
EXT_ZBC,
EXT_ZBS,
EXT_ZBKB,
EXT_ZBKC,
EXT_ZBKX,
EXT_ZCA,
EXT_ZCB,
EXT_ZCD,
EXT_ZCF,
EXT_ZCMP,
EXT_ZCMT,
EXT_ZKND,
EXT_ZKNE,
EXT_ZKNH,
EXT_ZKSED,
EXT_ZKSH,
EXT_ZKR,
EXT_ZMMUL,
EXT_ZBPBO,
EXT_ZPN,
EXT_ZPSFOPERAND,
EXT_ZVFH,
EXT_ZVFHMIN,
EXT_SMEPMP,
EXT_SMSTATEEN,
EXT_SMRNMI,
EXT_SSCOFPMF,
EXT_SVADU,
EXT_SVNAPOT,
EXT_SVPBMT,
EXT_SVINVAL,
EXT_ZDINX,
EXT_ZFA,
EXT_ZFBFMIN,
EXT_ZFINX,
EXT_ZHINX,
EXT_ZHINXMIN,
EXT_ZICBOM,
EXT_ZICBOZ,
EXT_ZICNTR,
EXT_ZICOND,
EXT_ZIHPM,
EXT_ZVBB,
EXT_ZVBC,
EXT_ZVFBFMIN,
EXT_ZVFBFWMA,
EXT_ZVKG,
EXT_ZVKNED,
EXT_ZVKNHA,
EXT_ZVKNHB,
EXT_ZVKSED,
EXT_ZVKSH,
EXT_XZBP,
EXT_XZBS,
EXT_XZBE,
EXT_XZBF,
EXT_XZBC,
EXT_XZBM,
EXT_XZBR,
EXT_XZBT,
EXT_SSTC,
EXT_ZACAS,
EXT_INTERNAL_ZFH_MOVE,
EXT_SMCSRIND,
EXT_SSCSRIND,
EXT_SMCNTRPMF,
EXT_ZCMOP,
NUM_ISA_EXTENSIONS
} isa_extension_t;
typedef enum {
IMPL_MMU_SV32,
IMPL_MMU_SV39,
IMPL_MMU_SV48,
IMPL_MMU_SV57,
IMPL_MMU_SBARE,
IMPL_MMU,
IMPL_MMU_VMID,
IMPL_MMU_ASID,
} impl_extension_t;
class isa_parser_t {
public:
isa_parser_t(const char* str, const char *priv);
~isa_parser_t() {};
unsigned get_max_xlen() const { return max_xlen; }
reg_t get_max_isa() const { return max_isa; }
std::string get_isa_string() const { return isa_string; }
bool extension_enabled(unsigned char ext) const {
return extension_enabled(isa_extension_t(ext));
}
bool extension_enabled(isa_extension_t ext) const {
return extension_table[ext];
}
std::bitset<NUM_ISA_EXTENSIONS> get_extension_table() const { return extension_table; }
const std::set<std::string> &get_extensions() const { return extensions; }
protected:
unsigned max_xlen;
reg_t max_isa;
std::bitset<NUM_ISA_EXTENSIONS> extension_table;
std::string isa_string;
std::set<std::string> extensions;
};
#endif
|