-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptimize.cc
735 lines (669 loc) · 20.8 KB
/
optimize.cc
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
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
/*
ebnf2tikz
An optimizing compiler to convert (possibly annotated) Extended
Backus–Naur Form (EBNF) to railroad diagrams expressed as LaTeX
TikZ commands.
Copyright (C) 2021 Larry D. Pyeatt
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 3 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, see <https://www.gnu.org/licenses/>.
*/
#include <graph.hh>
#include <nodesize.hh>
#include <algorithm>
using namespace std;
// ------------------------------------------------------------------------
void grammar::optimize()
{
for(auto i=productions.begin();i!=productions.end();i++)
(*i)->optimize();
}
void grammar::mergeRails()
{
for(auto i=productions.begin();i!=productions.end();i++)
(*i)->mergeRails();
}
int node::mergeConcats(int depth)
{
//cout<<"No implementation given for mergeConcats\n";
return 0;
}
int node::mergeChoices(int depth)
{
//cout<<"No implementation given for mergeChoices\n";
return 0;
}
int node::liftConcats(int depth)
{
//cout<<"No implementation given for liftConcats\n";
return 0;
}
int node::analyzeOptLoops(int depth)
{
// cout<<"No implementation given for analyzeOptLoops\n";
return 0;
}
int node::analyzeNonOptLoops(int depth)
{
// cout<<"No implementation given for analyzeNonOptLoops\n";
return 0;
}
// ------------------------------------------------------------------------
int singlenode::liftConcats(int depth)
{
int count = body->liftConcats(depth+1);
if(body->is_concat() && body->numChildren() == 1)
{
node *child = body->getChild(0);
body->forgetChild(0);
delete body;
body = child;
count++;
}
return count;
}
// ------------------------------------------------------------------------
void multinode::mergeRails()
{
for(auto i=nodes.begin();i!=nodes.end();i++)
(*i)->mergeRails();
}
int multinode::liftConcats(int depth)
{
int count = 0;
for(auto i = nodes.begin(); i != nodes.end(); i++)
count += (*i)->liftConcats(depth+1);
for(auto i = nodes.begin(); i != nodes.end(); i++)
{
if((*i)->is_concat() && (*i)->numChildren() == 1)
{
node *child = (*i)->getChild(0);
(*i)->forgetChild(0);
delete *i;
*i = child;
count++;
}
}
return count;
}
int multinode::mergeConcats(int depth)
{
int sum=0;
for(auto i = nodes.begin();i!=nodes.end();i++)
sum += (*i)->mergeConcats(depth+1);
return sum;
}
int multinode::mergeChoices(int depth)
{
int sum=0;
for(auto i = nodes.begin();i!=nodes.end();i++)
sum += (*i)->mergeChoices(depth+1);
return sum;
}
int multinode::analyzeOptLoops(int depth)
{
int sum=0;
for(auto i = nodes.begin();i!=nodes.end();i++)
sum += (*i)->analyzeOptLoops(depth+1);
return sum;
}
int multinode::analyzeNonOptLoops(int depth)
{
int sum=0;
for(auto i = nodes.begin();i!=nodes.end();i++)
sum += (*i)->analyzeNonOptLoops(depth+1);
return sum;
}
// ------------------------------------------------------------------------
void productionnode::optimize()
{
int changes=0,tmp;
// do {
changes = 0;
tmp = body-> analyzeNonOptLoops(0);
//cout <<"-----------------\n";
//cout << latexwrite("emph",name) <<endl;
//cout<<tmp<<" non-optional loops modified\n";
changes += tmp;
//}while(tmp > 0);
do{
tmp = body-> analyzeOptLoops(0);
//cout<<tmp<<" optional loops modified\n";
changes += tmp;
}while(tmp > 0);
do{
// if a child of a choice is a choice, merge it with the parent
tmp = body->mergeChoices(0);
changes += tmp;
//cout<<tmp<<" choices merged\n";
}while(tmp > 0);
do{
// combine consecutive concants
tmp = body->mergeConcats(0);
changes += tmp;
//cout<<tmp<<" concats merged\n";
// if a child of a concat is a concat, lift the child
tmp += body->liftConcats(0);
changes += tmp;
//cout<<tmp<<" concats lifted\n";
}while(tmp > 0);
//cout <<"-----------------\n";
};
// ------------------------------------------------------------------------
int choicenode::mergeChoices(int depth)
{
int sum=0;
auto i = nodes.begin();
choicenode *ip;
concatnode *cp;
// do mergeChoices on all nodes beneath this one
for(i=nodes.begin();i != nodes.end();i++)
sum += (*i)->mergeChoices(depth+1);
// find children that can be merged with this parent
i = nodes.begin();
while(i != nodes.end())
{
if((*i)->is_concat() && (*i)->numChildren()==3 &&
(*i)->getChild(0)->is_rail() &&
(*i)->getChild(1)->is_choice() &&
(*i)->getChild(2)->is_rail())
{
// get pointed to node at i
cp = dynamic_cast<concatnode*>(*i);
ip = dynamic_cast<choicenode*>(cp->getChild(1));
// get pointer to its nodes
vector<node*>* inodes = &(ip->nodes);
// erase i and set i to its replacement
i = nodes.erase(i);
// insert nodes of i into our nodes, at position where i
// used to be, and update i to reference first item inserted
if(inodes->front()->is_null())
{ // don't copy leading null nodes
i= nodes.insert(i,inodes->begin()+1,inodes->end());
delete inodes->front();
inodes->erase(inodes->begin());
}
else
i= nodes.insert(i,inodes->begin(),inodes->end());
// delete the node that used to be at i
inodes->clear();
delete cp;
for(auto j = nodes.begin(); j != nodes.end(); j++)
{
if((*j)->getLeftRail() != NULL)
(*j)->setLeftRail(leftrail);
if((*j)->getRightRail() != NULL)
(*j)->setRightRail(leftrail);
}
sum++;
}
else
i++;
}
return sum;
}
// ------------------------------------------------------------------------
int concatnode::mergeConcats(int depth){
int sum=0;
concatnode *ip,*currp;
int no_newlines=1;
auto curr = nodes.begin();
auto i = nodes.begin();
// do mergeConcats on all children of this concat
for(i = nodes.begin();i!=nodes.end();i++)
sum += (*i)->mergeConcats(depth+1);
// look for pairs of children to merge
i=nodes.begin();
i++; // advance to second node in vector
while(i!=nodes.end())
{
curr = i-1; // get iterator to node coming before i
// if they are both concats, then we can combine them by
// appending nodes of i to nodes of curr and erasing i
if((*i)->is_concat() && (*curr)->is_concat())
{
ip = dynamic_cast<concatnode*>(*i); // get pointer to body of i
currp = dynamic_cast<concatnode*>(*curr); // get pointer to body of curr
// get pointer to nodes in i
vector<node*>* inodes = &(ip->nodes);
// get pointer to nodes in curr
vector<node*> *currnodes = &(currp->nodes);
// append inodes to currnodes
currnodes->insert(currnodes->end(),inodes->begin(),inodes->end());
// erase i from our nodes and free it
// (*curr)->setRightRail((*i)->getRightRail());
i = nodes.erase(i); // make sure to set i to its replacement
ip->nodes.clear();
delete ip;
sum++;
}
else
i++;
}
// check to see if this parent has any newlinenodes
i = nodes.begin();
while(i != nodes.end() && no_newlines)
if((*i)->is_newline())
no_newlines = 0;
else
i++;
if(no_newlines) {
// find children that can be merged with this parent
i = nodes.begin();
while(i != nodes.end())
{
if((*i)->is_concat())
{
// get pointer to node at i ( we know it is a concat )
ip = (concatnode*)(*i);
// get pointer to its nodes
vector<node*>* inodes = &(ip->nodes);
// erase i and set i to its replacement
i = nodes.erase(i);
// insert nodes of i into our nodes, at position where i
// used to be, and update i to reference first item inserted
i = nodes.insert(i,inodes->begin(),inodes->end());
// delete the node that used to be at i beacuse we don't need it
ip->nodes.clear();
delete ip;
sum++;
}
else
i++;
}
}
return sum;
}
// Give reference to parent node vector, iterator to the child's
// location, and child node vector, and iterator that will be set by
// this function to reference the first mismatched node. Matching
// nodes will be deleted from the parent, and wherep will be returned
// still referencing the location of the child. The function returns
// the muber of nodes deleted from the parent.
int concatnode::findAndDeleteMatches(vector<node*> &parentnodes,
vector<node*>::iterator &wherep,
vector<node*> &childnodes,
vector<node*>::iterator &wherec)
{
int numnodes = 0;
//if(wherep != parentnodes.begin())
//{
wherec = childnodes.end()-1; // get iterator to last node in child nodes
while(wherec != childnodes.begin() &&
wherep != parentnodes.begin() &&
*(*wherep) == *(*wherec)) {
wherep--;
wherec--;
numnodes++;
}
// The previous loop could have ended because it hit the end
// of one list or the other. Adjust count, if needed.
if((wherec == childnodes.begin() ||
wherep == parentnodes.begin()) &&
*(*wherep) == *(*wherec))
numnodes++;
// The previous loop may have ended because of a mismatch. If
// so, then move both forward one item.
if(*(*wherep) != *(*wherec)) {
wherep++;
wherec++;
}
// delete matching nodes from this concat
for(int count=0;count<numnodes;count++) {
(*wherep)->makeDead();
wherep++;
}
//}
return numnodes;
}
// does not need to be a member, so just make it static.
static void moveLoop(loopnode *loop, vector<node*>::iterator i)
{
choicenode *option = (choicenode *)*i;
// When we delete the option node, it will delete everything under
// it, recursively. When the concat holding the loop is deleted, we
// don't want it to take the loop with it. Tell the concat to
// forget about the loop. We have to do this now, because we are
// about to change the loop's parent.
loop->getParent()->forgetChild(1);
// link the loop to its new parent and siblings
loop->setParent(option->getParent());
loop->setPrevious(option->getPrevious());
loop->setNext(option->getNext());
// link siblings to the loop
if(loop->getPrevious() != NULL)
loop->getPrevious()->setNext(loop);
if(loop->getNext() != NULL)
loop->getNext()->setPrevious(loop);
// Fix up the rails
loop->setLeftRail(option->getLeftRail());
loop->setRightRail(option->getRightRail());
loop->getLeftRail()->setRailDir(UP);
loop->getRightRail()->setRailDir(DOWN);
// replace the option node with the loop node
*i = loop;
// free the option node
delete option;
}
static void flipChoiceRails(node *j){
concatnode *c=(concatnode*)j;
if(j->is_concat())
{
for(int i = 0; i < c->numChildren(); i++)
if(c->getChild(i)->is_rail())
switch(((railnode*)c->getChild(i))->getRailDir())
{
case DOWN:
((railnode*)c->getChild(i))->setRailDir(UP);
break;
case UP:
((railnode*)c->getChild(i))->setRailDir(DOWN);
break;
}
}
};
// analyze optionloops
// nodea followed by optionnode followed by loop
int concatnode::analyzeOptLoops(int depth)
{
int sum = 0;
vector<node*>::iterator i, prev, j, child_last,oleft,oright;
concatnode *child;
loopnode *loop;
concatnode *gp;
int numnodes;
// do analyzeLoops on every child of this concat
for(i = nodes.begin();i!=nodes.end();i++)
sum += (*i)->analyzeOptLoops(depth+1);
// bury the dead
i = nodes.begin();
while(i!=nodes.end()) {
if((*i)->isDead()) {
//cout<<"found something to delete\n";
if(i != nodes.end()-1)
(*(i+1))->setLeftRail((*i)->getLeftRail());
if(i != nodes.begin())
(*(i-1))->setRightRail((*i)->getRightRail());
delete (*i);
i = nodes.erase(i);
}
else
i++;
}
// The previous loop may have deleted nodes. If we have only one
// node left, then return immediately
if(nodes.size() < 2)
return 0;
// find loops and try to make them better
for(i = nodes.begin()+1;i!=nodes.end();i++) {
// An optionnode is a choicenode with exactly two children, where
// the first child is a nullnode. We want to find optionnodes where
// the second child is a concat containing a loop between two rails..
if( i !=nodes.begin() &&
(*i)->is_choice() && (*i)->numChildren() == 2 &&
(*i)->getChild(0)->is_null() && //&&
(*i)->getChild(1)->is_concat() &&
(*i)->getChild(1)->numChildren() == 3 &&
(*i)->getChild(1)->getChild(0)->is_rail() &&
(*i)->getChild(1)->getChild(1)->is_loop() &&
(*i)->getChild(1)->getChild(2)->is_rail()) {
// Found an optionnode containing a loop node. Can we rebuild it?
sum++;
// get an iterator to the node preceding "this" in its parent's nodes
if(parent->is_concat())
{
gp = (concatnode*)parent;
prev = find(gp->nodes.begin(),gp->nodes.end(),this);
prev--;
}
else
gp = NULL;
// Get the loopnode that we are interested in;
loop = (loopnode*)(*i)->getChild(1)->getChild(1);
// is loop body a concat?
if(loop->getChild(0)->is_concat()) {
// Loop body is a concat. Working back from the end of the
// loop body, find the first node that does not match a
// corresponding node in the nodes of the parent of "this".
// Call findAndDelete to do all of that and delete matching
// nodes the parent
child = (concatnode*)loop->getChild(0);
if(gp != NULL && child != NULL)
numnodes = findAndDeleteMatches(gp->nodes,prev,child->nodes,j);
else
numnodes = 0;
// If there were matching nodes, then we can move stuff around
if(numnodes > 0) {
// THERE WERE MATCHING NODES
// If there is only one node left in the child concat,
if(j-1 == child->nodes.begin()) {
// CHILD HAS ONE REMAINING NODE
//cout << "CHILD HAS ONE REMAINING NODE"<<endl;
// then move it to the repeat part.
loop->setRepeat(*(j-1));
j = child->nodes.erase(j-1);
}
else {
// CHILD HAS MULTIPLE REMAINING NODES
int delcount = 0;
// If there is more than one node left in the child
// concat, then create a new concat node and move all of
// the remaining nodes into it IN REVERSE ORDER. But,
// if I find a rail, then I need to find the matching
// rail and keep them in order.
j--;
concatnode *c = new concatnode(*j);
flipChoiceRails(*j);
do {
j--;
flipChoiceRails(*j);
c->insert(*j);
delcount++;
} while(j!= child->nodes.begin());
// replace the loop repeat node with the new concat
loop->setRepeat(c);
// erase the nodes that were moved from the child concat
for(int i=0;i<delcount+1;i++)
j = child->nodes.erase(j);
}
}
else {
// THERE WERE NO MATCHING NODES
// If there is only one node left in the child concat,
if(child->numChildren()==1) {
// CHILD HAS ONE REMAINING NODE
cout << "CHILD HAS ONE REMAINING NODE"<<endl;
// then swap the body and the repeat.
node *tmp = loop->getChild(0);
loop->nodes[0] = loop->getChild(1);
loop->nodes[1] = tmp;
}
else {
// CHILD HAS MULTIPLE REMAINING NODES
int delcount = 0;
// If there is more than one node left in the child
// concat, then create a new concat node and move all of
// the remaining nodes into it IN REVERSE ORDER.
if(gp == NULL)
j = (child->nodes.end()-1);
if(j == child->nodes.end())
j--;
concatnode *c = new concatnode(*j);
flipChoiceRails(*j);
do
{
j--;
flipChoiceRails(*j);
c->insert(*j);
delcount++;
}
while(j!= child->nodes.begin());
// erase the nodes that were moved from the child concat
for(int k=0;k<delcount+1;k++)
j = child->nodes.erase(j);
// replace the loop repeat node with the new concat
delete loop->nodes[0];
loop->nodes[0] = loop->nodes[1];
loop->nodes[1] = c;
}
}
}
else {
// loop body is NOT a concat.
// if loop body matches previous item in this concat
if(gp != NULL && prev != gp->nodes.end() &&
*(loop->getChild(0)) == **prev) {
// mark matching node for deletion
(*prev)->makeDead();
// replace the option node with the loop node
}
else {
// does not match previous item in this concat
// swap the repeat and the body
node *tmp = loop->getChild(0);
loop->nodes[0] = loop->getChild(1);
loop->nodes[1] = tmp;
// replace the option node with the loop node
}
}
moveLoop(loop,i);
}
// if our first child is a rail and second child is a loop, and our
// parent is a row following a newline, then change the rail's
// beforeskip to zero.
if(nodes[0]->is_rail() &&
nodes[1]->is_loop() &&
parent->is_row() &&
parent->getPrevious()->is_newline())
nodes[0]->setBeforeSkip(0);
}
return sum;
}
// sequence_a followed by loop containing optional separator and sequence_a
// analyze non optionloops
int concatnode::analyzeNonOptLoops(int depth)
{
int sum = 0;
vector<node*>::iterator i, prev, j, child_last;
concatnode *child;
loopnode *loop;
int numnodes;
// do analyzeLoops on everything beneath this concat
for(i = nodes.begin();i!=nodes.end();i++)
sum += (*i)->analyzeNonOptLoops(depth+1);
// find loops and try to make them better
for(i = nodes.begin()+1;i!=nodes.end();i++)
{
if((*i)->is_loop())
{
cout << "found a loop to optimize\n";
(*i)->dump(1);
cout << "preceeded by\n";
(*i)->getPrevious()->dump(1);
// If loop body is a concat
// If the previous thing matches the last thing in the
// concat, then we can move the last item in the loop to
// the first item in the loop and delete the previous thing
// ELSE
// If the previous thing matches the loop body
// then we can delete the loop body.
}
// looking for concat containing a loop
if((*i)->is_concat() &&
(*i)->numChildren() == 3 &&
(*i)->getChild(0)->is_rail() &&
(*i)->getChild(1)->is_loop() &&
(*i)->getChild(2)->is_rail()) {
// Found a loop node. Can we rebuild it?
sum++;
// get an iterator to the node preceding "this" in its parent's nodes
prev = i-1;
loop = (loopnode*)(*i)->getChild(1);
// is loop body a conca?
if(loop->getChild(0)->is_concat()) {
// Loop body is a concat. Working back from the end of the
// child, find the first node that does not match a
// corresponding node in this concat. call findAndDelete to
// do all of that and delete matching fram the parent
child = (concatnode*)loop->getChild(0);
numnodes = findAndDeleteMatches(nodes,prev,child->nodes,j);
// If there were matching nodes, then we can move stuff around
if(numnodes > 0) {
int delcount = 0;
// Create a new concat node and move all of
// the remaining nodes into it IN REVERSE ORDER.
j--;
concatnode *c = new concatnode(*j);
flipChoiceRails(*j);
while(j!= child->nodes.begin())
{
j--;
flipChoiceRails(*j);
c->insert(*j);
delcount++;
}
// replace the loop repeat node with the new concat
loop->setRepeat(c);
// erase the nodes that were moved from the child concat
for(int i=0;i<delcount+1;i++)
j = child->nodes.erase(j);
}
}
else {
// loop body is NOT a concat.
// if loop body matches previous item in this concat
if(*(loop->getChild(0)) == **prev)
{
// erase previous item in this concat
delete *prev;
i = nodes.erase(prev);
}
}
}
}
// if(parent->is_loop())
// nodes[0]->setBeforeSkip(0);
return sum;
}
void concatnode::mergeRails(){
railnode *newrail;
railnode *oldrail;
// We can merge rails if this concat begins with a rail followed by
// a choice or loop, and it is one of the children inside a choice
// or loop with matching left rail.
if((*(nodes.begin()))->is_rail() &&
((*(nodes.begin()+1))->is_choice() || (*(nodes.begin()+1))->is_loop()))
{
oldrail = (railnode*)(*(nodes.begin()));
newrail = parent->getLeftRail();
if(newrail != NULL && newrail->getRailDir() == oldrail->getRailDir())
{
delete nodes.front();
nodes.erase(nodes.begin());
(*(nodes.begin()))->setLeftRail(newrail);
}
}
// We can merge rails if this concat ends with a a choice or loop
// followed by a rail, and it is one of the children inside a choice
// or loop with matching right rail.
if((*(nodes.end()-1))->is_rail() &&
((*(nodes.end()-2))->is_choice() || (*(nodes.end()-2))->is_loop()))
{
oldrail = (railnode*)(*(nodes.end()-1));
newrail = parent->getRightRail();
if(newrail != NULL && newrail->getRailDir() == oldrail->getRailDir())
{
delete nodes.back();
nodes.erase(nodes.end()-1);
(*(nodes.end()-1))->setRightRail(newrail);
}
}
multinode::mergeRails();
}