-
Notifications
You must be signed in to change notification settings - Fork 12
/
core.pl
285 lines (251 loc) · 4.58 KB
/
core.pl
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
use strict;
use warnings;
use Data::Dump qw/pp/;
use feature qw/say/;
use Carp qw/carp croak/;
use Storable qw/dclone/;
use List::Util qw/min max uniq/;
use LogOnce;
my $log = LogOnce->new();
my $records = [];
my $tables = [];
my $enums = [];
my $defs = {};
my $seen = {};
my $attributes = {};
my $nodeinfo = {};
my $arch = get_arch();
my $registers = [];
sub attributes { $attributes }
sub nodeinfo { $nodeinfo }
sub registers { $registers }
sub REGISTERS(@) {
my ( $type, $array, $size, $dt ) = @_;
my $last = scalar @$array - 1;
for my $i ( 0 .. $last ) {
my $name = $array->[$i];
push @$registers, {
encoding => $i,
reg => $name,
kind => $type,
size => $size,
datatype => $dt,
is_first => 0 | !$i,
is_last => 0 | ( $i == $last ),
is_even => 0 | ( 0 == ( $i % 2 ) ),
};
}
}
sub NODE(@) {
my $name = shift;
my $value = shift;
$nodeinfo->{$name} = $value;
$value;
}
sub ATTR(@) {
my $name = shift;
my $value = shift;
$attributes->{$name} = $value;
}
sub seen {
my ($what) = @_;
defined $what and $seen = $what;
$seen;
}
sub defs {
my ($what) = @_;
defined $what and $defs = $what;
$defs;
}
sub records {
my ($what) = @_;
defined $what and $records = $what;
$records;
}
sub tables {
my ($what) = @_;
defined $what and $tables = $what;
$tables;
}
sub enums {
my ($what) = @_;
defined $what and $enums = $what;
$enums;
}
sub STRINGIFY($) {
my ($hash) = @_;
$hash->{stringify} = 1;
$hash;
}
sub ORDERED($) {
my ($hash) = @_;
$hash->{ordered} = 1;
$hash;
}
sub OPTIONAL($) {
my ($hash) = @_;
$hash->{optional} = 1;
$hash;
}
sub DEPRECATED($) {
my ($hash) = @_;
$hash->{deprecated} = 1;
$hash;
}
sub NOLONG($) {
# alias for DEPRECATED.
my ($hash) = @_;
$hash->{deprecated} = 1;
$hash;
}
sub UNPREDICTABLE($) {
my ($hash) = @_;
$hash->{unpredictable} = 1;
$hash;
}
sub UNDEFINED($) {
my ($hash) = @_;
$hash->{undefined} = 1;
$hash;
}
sub THROUGH($) {
my ($name) = @_;
return { table => $name };
}
sub FALL($) {
my ($hash) = @_;
$hash;
}
sub SKIP($) {
my ($hash) = @_;
$hash->{skip} = 1;
$hash;
}
sub DEF(@) {
my ( $link, $data ) = @_;
$defs->{$link} = $data;
return $data;
}
sub dereference_binary_values {
my ($items) = @_;
my @items = ();
foreach my $item (@$items) {
unless ( exists $item->{encoding} ) {
push @items, $item;
next;
}
my $value = $item->{encoding};
if ( $value =~ /^0b[01]+$/ ) {
$item->{encoding} = oct $value;
push @items, $item;
}
elsif ( $value =~ /^0b([01x]+)$/ ) {
my ( $min, $max ) = ( $value, $value );
$min =~ s/x/0/g;
$max =~ s/x/1/g;
$min = oct $min;
$max = oct $max;
for my $i ( $min .. $max ) {
( $i & $min ) == $min or next;
my $new = dclone $item;
$new->{encoding} = $i;
push @items, $new;
}
}
else {
push @items, $item;
}
}
return \@items;
}
sub TABLE(@) {
my ( $link, $what ) = @_;
$what = dereference_binary_values($what);
push @$tables,
my $tbl = {
id => $link,
items => $what
};
$seen->{$link} = $tbl;
$tbl;
}
sub ARRAY($) {
my ($what) = @_;
$what->{array} = 1;
$what;
}
sub ENUM(@) {
my ($link) = shift;
my @items = ();
push @items, { name => $_ } foreach (@_);
my $enum = {
id => $link,
items => \@items,
};
push @$enums, $enum;
return $enum;
}
sub parse_docvars {
local ($_) = @_;
my %docvars = ();
$docvars{$2} = $3 while (/\G(\s*([^=]+)\s*=\s*(\S+)\s*)/gc);
return \%docvars;
}
sub parse_array {
local ($_) = @_;
my @array = split(/\s*\|\s*/);
return \@array;
}
my %key2parser = (
docvars => \&parse_docvars,
docvars2 => \&parse_docvars,
metadata => \&parse_docvars,
tags => \&parse_docvars,
iflags => \&parse_docvars,
pstate => \&parse_docvars,
diagram => \&parse_diagram,
exceptions => \&parse_array,
extensions => \&parse_array,
categories => \&parse_array,
);
sub RECORD(@) {
my ( $link, $hash ) = @_;
$hash->{id} = $link;
$seen->{$link} = $hash;
push @$records, $hash;
foreach my $key ( keys %$hash ) {
my $value = $hash->{$key};
if ( exists $key2parser{$key} ) {
my $parser = $key2parser{$key};
$value = $parser->($value);
$hash->{$key} = $value;
}
}
return $hash;
}
sub PAGE(@) {
my $result = RECORD(@_);
$result->{rectype} = 'PAGE';
$result;
}
sub GROUP(@) {
my $result = RECORD(@_);
$result->{rectype} = 'GROUP';
$result;
}
sub ICLASS(@) {
my $result = RECORD(@_);
$result->{rectype} = 'ICLASS';
$result;
}
sub CLASS(@) {
my $result = RECORD(@_);
$result->{rectype} = 'CLASS';
$result;
}
sub ENCODING(@) {
my $result = RECORD(@_);
$result->{rectype} = 'ENCODING';
$result;
}
1;