-
Notifications
You must be signed in to change notification settings - Fork 1
/
YaccPars.pas
581 lines (478 loc) · 18.4 KB
/
YaccPars.pas
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
{
Yacc parse table construction.
Copyright (c) 1990-92 Albert Graef <ag@muwiinfa.geschichte.uni-mainz.de>
Copyright (C) 1996 Berend de Boer <berend@pobox.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Revision: 2 $
$Modtime: 96-07-31 14:09 $
$History: YACCPARS.PAS $
*
* ***************** Version 2 *****************
* User: Berend Date: 96-10-10 Time: 21:16
* Updated in $/Lex and Yacc/tply
* Updated for protected mode, windows and Delphi 1.X and 2.X.
}
unit YaccPars;
interface
procedure parse_table;
(* Constructs the parse table from the information in the state,
transition and reduction table, and writes parse and rule table
information to the output file.
Rules never reduced are detected, and parsing conflicts resolved
according to the usual disambiguting rules:
- by default, shift/reduce conflicts are resolved in favour of
shift, and reduce/reduce conflicts are resolved in favour of
the rule appearing first in the grammar
- in the presence of precedence information, shift/reduce conflicts
are resolved as follows:
- if the rule has higher precedence than the input symbol,
reduce
- if the input symbol has higher precedence than the rule,
shift
- if rule and input symbol have the same precedence, use
associativity to resolve the conflict: if the symbol is
left-associative, reduce; if right-associative, shift;
if nonassociative, error.
The default action for any state is error, unless the state
only has a single reduce action, and no shift (or nonassoc-induced
error) actions, in which case the default action is the reduction.
An accept action is generated for the shift-endmarker action.
If the verbose option is enabled, the parse_table routine also writes
a readable listing of the generated parser to the .LST file, including
descriptions of parse conflicts and rules never reduced.
Parse table actions are encoded as follows:
- positive: next state (shift or goto action)
- negative: rule to reduce (reduce action)
- 0: error (in default action table) or accept (in shift/reduce
action table)
The tables are written out as a collection of typed array constants:
type YYARec = record { action record }
sym, act : Integer; { symbol and action }
end;
YYRRec = record { rule record }
len, sym : Integer; { length and lhs symbol }
end;
const
yynacts = ...; { number of parse table (shift and reduce) actions }
yyngotos = ...; { number of goto actions }
yynstates = ...; { number of states }
yynrules = ...; { number of rules }
yya : array [1..yynacts] of YYARec = ...;
{ shift and reduce actions }
yyg : array [1..yyngotos] of YYARec = ...;
{ goto actions }
yyd : array [0..yynstates-1] of Integer = ...;
{ default actions }
yyal, yyah,
yygl, yygh : array [0..yynstates-1] of Integer = ...;
{ offsets into action and goto table }
yyr : array [1..yynrules] of YYRRec = ...;
*)
var shift_reduce, reduce_reduce, never_reduced : Integer;
(* number of parsing conflicts and unreduced rules detected during
parse table generation *)
implementation
uses YaccBase, YaccTabl;
var reduced : array [1..max_rules] of Boolean;
var yynacts, yyngotos, yynstates : Integer;
yyd : array [0..max_states-1] of Integer;
yyal, yyah, yygl, yygh : array [0..max_states-1] of Integer;
function ruleStr ( i : Integer ) : String;
(* returns print representation of rule number i *)
var str : String; j : Integer;
begin
with rule_table^[i]^ do
begin
str := pname(lhs_sym)+' :';
for j := 1 to rhs_len do
str := str+' '+pname(rhs_sym[j]);
end;
ruleStr := str;
end(*ruleStr*);
function itemStr ( var item_set : ItemSet; i : Integer ) : String;
(* returns print representation of item number i in item_set *)
var str : String; j : Integer;
begin
with item_set, item[i], rule_table^[rule_no]^ do
begin
str := pname(lhs_sym)+' :';
for j := 1 to pos_no-1 do
str := str+' '+pname(rhs_sym[j]);
str := str+' _';
for j := pos_no to rhs_len do
str := str+' '+pname(rhs_sym[j]);
end;
itemStr := str;
end(*itemStr*);
procedure build;
(* build the parse table, resolve conflicts *)
var
i, j, k, s,
n_errors,
n_shifts,
n_gotos,
n_reductions,
n_conflicts : Integer;
item_set : ItemSet;
begin
(* initialize: *)
shift_reduce := 0; reduce_reduce := 0; never_reduced := 0;
for i := 1 to n_rules do reduced[i] := false;
(* traverse the state table: *)
for s := 0 to n_states-1 do with state_table^[s] do
begin
if verbose then
begin
writeln(yylst);
writeln(yylst, 'state ', s, ':');
end;
(* Check shift and reduce actions, resolve conflicts.
The number of error actions generated by nonassoc's is counted
in n_errors, the number of conflicts reported in n_conflicts.
Shift actions ruled out by disambiguating rules are flagged by
setting the corresponding next_state to -1. *)
n_errors := 0; n_conflicts := 0;
for i := trans_lo to trans_hi do with trans_table^[i] do
if sym>=0 then
for j := redns_lo to redns_hi do with redn_table^[j] do
if member(sym, symset^) then
if (sym_prec^[sym]>0) and (rule_prec^[rule_no]>0) then
(* resolve conflict using precedence: *)
if rule_prec^[rule_no]=sym_prec^[sym] then
case prec_table^[sym_prec^[sym]] of
left : (* reduce *)
next_state := -1;
right : (* shift *)
exclude(symset^, sym);
nonassoc : (* error *)
begin
inc(n_errors);
next_state := -1;
exclude(symset^, sym);
end;
end
else if rule_prec^[rule_no]>sym_prec^[sym] then
(* reduce *)
next_state := -1
else
(* shift *)
exclude(symset^, sym)
else
(* shift/reduce conflict: *)
begin
if verbose then
begin
if n_conflicts=0 then
begin
writeln(yylst);
writeln(yylst, tab, '*** conflicts:');
writeln(yylst);
end;
writeln(yylst, tab,
'shift ', next_state, ', ',
'reduce ', rule_no-1, ' on ',
pname(sym));
end;
inc(n_conflicts); inc(shift_reduce);
exclude(symset^, sym);
end;
for i := redns_lo to redns_hi do
for j := i+1 to redns_hi do with redn_table^[j] do
begin
for k := 1 to size(symset^) do
if member(symset^[k], redn_table^[i].symset^) then
(* reduce/reduce conflict: *)
begin
if verbose then
begin
if n_conflicts=0 then
begin
writeln(yylst);
writeln(yylst, tab, '*** conflicts:');
writeln(yylst);
end;
writeln(yylst, tab,
'reduce ',
redn_table^[i].rule_no-1, ', ',
'reduce ', rule_no-1, ' on ',
pname(symset^[k]));
end;
inc(n_conflicts); inc(reduce_reduce);
end;
setminus(symset^, redn_table^[i].symset^);
end;
(* Count goto, shift and reduce actions to generate. *)
n_gotos := 0; n_shifts := 0; n_reductions := 0;
for i := trans_lo to trans_hi do with trans_table^[i] do
if next_state<>-1 then
if sym<0 then
inc(n_gotos)
else
inc(n_shifts);
for i := redns_lo to redns_hi do with redn_table^[i] do
if size(symset^)>0 then
inc(n_reductions);
(* Determine default action. *)
if (n_shifts+n_errors=0) and (n_reductions=1) then
(* default action is the reduction *)
with redn_table^[redns_lo] do
yyd[s] := -(rule_no-1)
else
(* default action is error *)
yyd[s] := 0;
(* Flag reduced rules. *)
for i := redns_lo to redns_hi do
with redn_table^[i] do
reduced[rule_no] := true;
if verbose then
begin
(* List kernel items. *)
writeln(yylst);
get_item_set(s, item_set);
closure(item_set);
sort_item_set(item_set);
with item_set do
begin
for i := 1 to n_items do
with item[i], rule_table^[rule_no]^ do
if (rule_no=1) or (pos_no>1) or (rhs_len=0) then
if pos_no>rhs_len then
writeln(yylst, tab,
itemStr(item_set, i), tab,
'(', rule_no-1, ')')
else
writeln(yylst, tab, itemStr(item_set, i));
end;
(* List parse actions. *)
(* shift, reduce and default actions: *)
if (n_shifts+n_errors=0) and (n_reductions=1) then
(* default action is the reduction *)
with redn_table^[redns_lo] do
begin
writeln(yylst);
writeln(yylst, tab, '.', tab, 'reduce ', rule_no-1 );
end
else
(* default action is error *)
begin
writeln(yylst);
for i := trans_lo to trans_hi do with trans_table^[i] do
if next_state<>-1 then
if sym=0 then
(* accept action *)
writeln(yylst, tab, pname(sym), tab, 'accept')
else if sym>0 then
(* shift action *)
writeln(yylst, tab,
pname(sym), tab, 'shift ', next_state);
for i := redns_lo to redns_hi do
with redn_table^[i] do
for j := 1 to size(symset^) do
(* reduce action *)
writeln(yylst, tab,
pname(symset^[j]), tab, 'reduce ',
rule_no-1);
(* error action *)
writeln(yylst, tab, '.', tab, 'error');
end;
(* goto actions: *)
if n_gotos>0 then
begin
writeln(yylst);
for i := trans_lo to trans_hi do with trans_table^[i] do
if sym<0 then
writeln(yylst, tab,
pname(sym), tab, 'goto ', next_state);
end;
end;
end;
for i := 2 to n_rules do
if not reduced[i] then inc(never_reduced);
if verbose then
begin
writeln(yylst);
if shift_reduce>0 then
writeln(yylst, shift_reduce, ' shift/reduce conflicts.');
if reduce_reduce>0 then
writeln(yylst, reduce_reduce, ' reduce/reduce conflicts.');
if never_reduced>0 then
writeln(yylst, never_reduced, ' rules never reduced.');
end;
(* report rules never reduced: *)
if (never_reduced>0) and verbose then
begin
writeln(yylst);
writeln(yylst, '*** rules never reduced:');
for i := 2 to n_rules do if not reduced[i] then
begin
writeln(yylst);
writeln(yylst, ruleStr(i), tab, '(', i-1, ')');
end;
end;
end(*build*);
procedure counters;
(* initialize counters and offsets *)
var s, i : Integer;
begin
yynstates := n_states; yynacts := 0; yyngotos := 0;
for s := 0 to n_states-1 do with state_table^[s] do
begin
yyal[s] := yynacts+1; yygl[s] := yyngotos+1;
if yyd[s]=0 then
begin
for i := trans_lo to trans_hi do with trans_table^[i] do
if (sym>=0) and (next_state<>-1) then
inc(yynacts);
for i := redns_lo to redns_hi do with redn_table^[i] do
inc(yynacts, size(symset^));
end;
for i := trans_lo to trans_hi do with trans_table^[i] do
if sym<0 then
inc(yyngotos);
yyah[s] := yynacts; yygh[s] := yyngotos;
end;
end(*counters*);
procedure tables;
(* write tables to output file *)
var s, i, j, count : Integer;
begin
writeln(yyout);
writeln(yyout, 'type YYARec = record');
writeln(yyout, ' sym, act : Integer;');
writeln(yyout, ' end;');
writeln(yyout, ' YYRRec = record');
writeln(yyout, ' len, sym : Integer;');
writeln(yyout, ' end;');
writeln(yyout);
writeln(yyout, 'const');
(* counters: *)
writeln(yyout);
writeln(yyout, 'yynacts = ', yynacts, ';');
writeln(yyout, 'yyngotos = ', yyngotos, ';');
writeln(yyout, 'yynstates = ', yynstates, ';');
writeln(yyout, 'yynrules = ', n_rules-1, ';');
(* shift/reduce table: *)
writeln(yyout);
writeln(yyout, 'yya : array [1..yynacts] of YYARec = (');
count := 0;
for s := 0 to n_states-1 do with state_table^[s] do
begin
writeln(yyout, '{ ', s, ': }');
if yyd[s]=0 then
begin
for i := trans_lo to trans_hi do with trans_table^[i] do
if (next_state<>-1) and (sym>=0) then
begin
inc(count);
if sym=0 then
write(yyout, ' ( sym: 0; act: 0 )')
else
write(yyout, ' ( sym: ', sym, '; act: ',
next_state, ' )');
if count<yynacts then write(yyout, ',');
writeln(yyout);
end;
for i := redns_lo to redns_hi do with redn_table^[i] do
for j := 1 to size(symset^) do
begin
inc(count);
write(yyout, ' ( sym: ', symset^[j], '; act: ',
-(rule_no-1), ' )');
if count<yynacts then write(yyout, ',');
writeln(yyout);
end;
end;
end;
writeln(yyout, ');');
(* goto table: *)
writeln(yyout);
writeln(yyout, 'yyg : array [1..yyngotos] of YYARec = (');
count := 0;
for s := 0 to n_states-1 do with state_table^[s] do
begin
writeln(yyout, '{ ', s, ': }');
for i := trans_lo to trans_hi do with trans_table^[i] do
if sym<0 then
begin
inc(count);
write(yyout, ' ( sym: ', sym, '; act: ', next_state, ' )');
if count<yyngotos then write(yyout, ',');
writeln(yyout);
end;
end;
writeln(yyout, ');');
(* default action table: *)
writeln(yyout);
writeln(yyout, 'yyd : array [0..yynstates-1] of Integer = (');
for s := 0 to n_states-1 do
begin
write(yyout, '{ ', s, ': } ', yyd[s]);
if s<n_states-1 then write(yyout, ',');
writeln(yyout);
end;
writeln(yyout, ');');
(* offset tables: *)
writeln(yyout);
writeln(yyout, 'yyal : array [0..yynstates-1] of Integer = (');
for s := 0 to n_states-1 do
begin
write(yyout, '{ ', s, ': } ', yyal[s]);
if s<n_states-1 then write(yyout, ',');
writeln(yyout);
end;
writeln(yyout, ');');
writeln(yyout);
writeln(yyout, 'yyah : array [0..yynstates-1] of Integer = (');
for s := 0 to n_states-1 do
begin
write(yyout, '{ ', s, ': } ', yyah[s]);
if s<n_states-1 then write(yyout, ',');
writeln(yyout);
end;
writeln(yyout, ');');
writeln(yyout);
writeln(yyout, 'yygl : array [0..yynstates-1] of Integer = (');
for s := 0 to n_states-1 do
begin
write(yyout, '{ ', s, ': } ', yygl[s]);
if s<n_states-1 then write(yyout, ',');
writeln(yyout);
end;
writeln(yyout, ');');
writeln(yyout);
writeln(yyout, 'yygh : array [0..yynstates-1] of Integer = (');
for s := 0 to n_states-1 do
begin
write(yyout, '{ ', s, ': } ', yygh[s]);
if s<n_states-1 then write(yyout, ',');
writeln(yyout);
end;
writeln(yyout, ');');
(* rule table: *)
writeln(yyout);
writeln(yyout, 'yyr : array [1..yynrules] of YYRRec = (');
for i := 2 to n_rules do with rule_table^[i]^ do
begin
write(yyout, '{ ', i-1, ': } ', '( len: ', rhs_len,
'; sym: ', lhs_sym, ' )');
if i<n_rules then write(yyout, ',');
writeln(yyout);
end;
writeln(yyout, ');');
writeln(yyout);
end(*tables*);
procedure parse_table;
begin
build; counters; tables;
end(*parse_table*);
end(*YaccParseTable*).