forked from OpenTimer/Parser-Verilog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverilog_data.hpp
254 lines (219 loc) · 6.85 KB
/
verilog_data.hpp
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
#ifndef DATA_VERILOG_HPP_
#define DATA_VERILOG_HPP_
#include <string>
#include <cstddef>
#include <fstream>
#include <iostream>
#include <variant>
#include <experimental/filesystem>
namespace verilog {
enum class ConstantType {
NONE,
INTEGER,
BINARY,
OCTAL,
DECIMAL,
HEX,
REAL,
EXP
};
inline std::ostream& operator<<(std::ostream& os, const ConstantType& t) {
switch(t) {
case ConstantType::NONE: os << "NONE"; break;
case ConstantType::INTEGER: os << "INTEGER"; break;
case ConstantType::BINARY: os << "BINARY"; break;
case ConstantType::OCTAL: os << "OCTAL"; break;
case ConstantType::DECIMAL: os << "DECIMAL"; break;
case ConstantType::HEX: os << "HEX"; break;
case ConstantType::REAL: os << "REAL"; break;
case ConstantType::EXP: os << "EXP"; break;
}
return os;
}
struct Constant {
Constant() = default; // Need this default constructor for return token
Constant(std::string&& v, ConstantType t) : value(std::move(v)), type(t) {}
std::string value;
ConstantType type {ConstantType::NONE};
};
inline std::ostream& operator<<(std::ostream& os, const Constant& c) {
std::cout << " constant value: " << c.value << " type: " << c.type;
return os;
}
enum class PortDirection {
INPUT,
OUTPUT,
INOUT
};
inline std::ostream& operator<<(std::ostream& os, const PortDirection& dir) {
switch(dir){
case PortDirection::INPUT: os << "INPUT"; break;
case PortDirection::OUTPUT: os << "OUTPUT"; break;
case PortDirection::INOUT: os << "INOUT"; break;
}
return os;
}
enum class ConnectionType {
NONE,
WIRE,
REG
};
inline std::ostream& operator<<(std::ostream& os, const ConnectionType& ct) {
switch(ct){
case ConnectionType::NONE: os << "NONE"; break;
case ConnectionType::WIRE: os << "WIRE"; break;
case ConnectionType::REG: os << "REG"; break;
}
return os;
}
struct Port {
std::vector<std::string> names;
int beg {-1};
int end {-1};
PortDirection dir;
ConnectionType type {ConnectionType::NONE};
};
inline std::ostream& operator<<(std::ostream& os, const Port& port) {
os << "beg: " << port.beg << " end: " << port.end << '\n';
os << "Dir: " << port.dir << " type: " << port.type << '\n';
for(const auto& n: port.names){
os << n << '\n';
}
return os;
}
enum class NetType {
NONE,
REG,
WIRE,
WAND,
WOR,
TRI,
TRIOR,
TRIAND,
SUPPLY0,
SUPPLY1
};
inline std::ostream& operator<<(std::ostream& os, const NetType& t) {
switch(t){
case NetType::NONE: os << "NONE"; break;
case NetType::REG: os << "REG"; break;
case NetType::WIRE: os << "WIRE"; break;
case NetType::WAND: os << "WAND"; break;
case NetType::WOR: os << "WOR"; break;
case NetType::TRI: os << "TRI"; break;
case NetType::TRIAND: os << "TRIAND"; break;
case NetType::TRIOR: os << "TRIOR"; break;
case NetType::SUPPLY0: os << "SUPPLY0"; break;
case NetType::SUPPLY1: os << "SUPPLY1"; break;
}
return os;
}
struct Net {
std::vector<std::string> names;
int beg {-1};
int end {-1};
NetType type {NetType::NONE};
};
inline std::ostream& operator<<(std::ostream& os, const Net& net) {
os << "beg: " << net.beg << " end: " << net.end << '\n';
os << "type: " << net.type << '\n';
for(const auto& n: net.names){
os << n << '\n';
}
return os;
}
struct NetBit {
NetBit(std::string&& n, int b): name(std::move(n)), bit(b) {}
std::string name;
int bit {-1};
};
inline std::ostream& operator<<(std::ostream& os, const NetBit& n) {
os << n.name << '[' << n.bit << "] ";
return os;
}
struct NetRange {
NetRange(std::string&& n, int b, int e): name(std::move(n)), beg(b), end(e) {}
std::string name;
int beg {-1};
int end {-1};
};
inline std::ostream& operator<<(std::ostream& os, const NetRange& n) {
os << n.name << '[' << n.beg << ':' << n.end << "] ";
return os;
}
struct Assignment {
// Left hand side can be: a wire, a bit in a wire, a part of a wire
std::vector<std::variant<std::string, NetBit, NetRange>> lhs;
// Right hand side can be: a wire, a bit in a wire, a part of a wire, a constant
std::vector<std::variant<std::string, NetBit, NetRange, Constant>> rhs;
};
inline std::ostream& operator<<(std::ostream& os, const Assignment& ast) {
os << "LHS: ";
for(const auto& l: ast.lhs){
switch(l.index()){
case 0: os << std::get<0>(l) << ' '; break;
case 1: os << std::get<1>(l).name << '/' << std::get<1>(l).bit << ' ';
break;
case 2: os << std::get<2>(l).name << '/' << std::get<2>(l).beg << '/' << std::get<2>(l).end << ' ';
break;
}
}
os << '\n';
os << "RHS: ";
for(const auto& r: ast.rhs){
switch(r.index()){
case 0: os << std::get<0>(r) << ' '; break;
case 1: os << std::get<1>(r).name << '/' << std::get<1>(r).bit << ' ';
break;
case 2: os << std::get<2>(r).name << '/' << std::get<2>(r).beg << '/' << std::get<2>(r).end << ' ';
break;
case 3: os << std::get<3>(r) << ' '; break;
}
}
return os;
}
using NetConcat = std::variant<std::string, NetBit, NetRange, Constant>;
struct Instance {
std::string module_name;
std::string inst_name;
// pin_names might be empty. e.g. my_module m1(net1, net2);
std::vector<std::variant<std::string, NetBit, NetRange>> pin_names;
std::vector<std::vector<NetConcat>> net_names;
};
inline std::ostream& operator<<(std::ostream& os, const Instance& inst) {
os << inst.module_name << ' ' << inst.inst_name << '(';
if(!inst.pin_names.empty()){
for(size_t i=0; i<inst.pin_names.size(); i++){
std::visit([](const auto& name){ std::cout << name << ' '; }, inst.pin_names[i]);
std::cout << '(' ;
if(inst.net_names[i].size() > 1){
std::cout << '{';
}
for(const auto& v: inst.net_names[i]){
std::visit([](const auto& v){ std::cout << v << ' '; }, v);
}
if(inst.net_names[i].size() > 1){
std::cout << '}';
}
std::cout << ") " ;
}
}
else{
for(size_t i=0; i<inst.net_names.size(); i++){
if(inst.net_names[i].size() > 1){
std::cout << '{';
}
for(const auto& v: inst.net_names[i]){
std::visit([](const auto& v){ std::cout << v << ' '; }, v);
}
if(inst.net_names[i].size() > 1){
std::cout << '}';
}
std::cout << ',';
}
}
os << ')';
return os;
}
}
#endif