-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.output
2922 lines (1569 loc) · 76.1 KB
/
parser.output
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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Grammar
0 $accept: Program $end
1 Program: FuncBodies
2 FuncBodies: FuncBodies FuncBody
3 | FuncBody
4 FuncBody: T_FunBegin Stmts
5 Stmts: Stmts Stmt
6 | Stmt
7 Stmt: "(" Note ")"
8 | "(" Barrier ")"
9 | "(" Insn ")"
10 | "(" JumpInsn ")"
11 | "(" Call ")"
12 Note: T_Note T_IntConstant T_IntConstant T_IntConstant T_IntConstant
13 | T_Note T_IntConstant T_IntConstant T_IntConstant
14 Barrier: T_Barrier T_IntConstant T_IntConstant T_IntConstant
15 Integer: "-" T_IntConstant
16 | T_IntConstant
17 Insn: T_Insn T_IntConstant T_IntConstant T_IntConstant "(" MainCmd ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")"
18 MainCmd: PlainCmd
19 | ParallelCmd
20 PlainCmd: ClobberCmd
21 | SetCmd
22 | UseCmd
23 ParallelCmd: T_Parallel Cmds T_EndPara
24 Cmds: Cmds PlainCmd
25 | PlainCmd
26 ClobberCmd: T_Clobber "(" T_Reg T_CCType T_IntConstant T_Flags ")"
27 SetCmd: T_Set "(" Operand ")" "(" Operand ")"
28 UseCmd: T_Use "(" T_Reg ":" Flags TypeInfo T_IntConstant ")"
29 Operand: IntOperand
30 | ExprOperand
31 | ExtendOperand
32 IntOperand: Integer
33 ExprOperand: LocInfo ":" TypeInfo Expr
34 ExtendOperand: T_SiExtend ":" TypeInfo "(" Operand ")"
35 LocInfo: MemType Flags
36 | MemType
37 Flags: Flags Flag
38 | Flag
39 Flag: T_IFlag
40 | T_VFlag
41 | T_FFlag
42 | T_CFlag
43 MemType: T_Mem
44 | T_Reg
45 | T_SymbolRef
46 TypeInfo: T_SIType
47 | T_DIType
48 | T_QIType
49 | T_CCType
50 | T_CCZType
51 | T_CCGCType
52 Expr: IntegerExpr
53 | "(" PlusExpr ")"
54 | "(" MinusExpr ")"
55 | "(" MultExpr ")"
56 | "(" AshiftExpr ")"
57 | "(" SubregExpr ")"
58 | "(" CompareExpr ")"
59 IntegerExpr: Integer
60 PlusExpr: T_Plus TypeInfo "(" Operand ")" "(" Operand ")"
61 MinusExpr: T_Minus TypeInfo "(" Operand ")" "(" Operand ")"
62 MultExpr: T_Mult TypeInfo "(" Operand ")" "(" Operand ")"
63 AshiftExpr: T_Ashift TypeInfo "(" Operand ")" "(" Operand ")"
64 SubregExpr: T_Subreg TypeInfo "(" Operand ")" Integer
65 CompareExpr: T_Compare TypeInfo "(" Operand ")" "(" Operand ")"
66 JumpInsn: T_JumpInsn T_IntConstant T_IntConstant T_IntConstant "(" T_Set "(" T_Pc ")" "(" Dest ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" T_RArrow T_IntConstant
67 Dest: Label
68 | IfThenElse
69 | Pc
70 Label: T_LabelRef T_IntConstant
71 IfThenElse: T_IfThenElse "(" Comparison ")" "(" Dest ")" "(" Dest ")"
72 Pc: T_Pc
73 Comparison: Condition "(" Operand ")" "(" Operand ")"
74 Condition: T_Lt
75 | T_Gt
76 | T_Le
77 | T_Ge
78 | T_Eq
79 | T_Ne
80 Call: RetCall
81 | NoRetCall
82 RetCall: T_CallInsn T_IntConstant T_IntConstant T_IntConstant T_IntConstant "(" T_Set "(" T_Reg ":" TypeInfo T_IntConstant ")" "(" T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
83 NoRetCall: T_CallInsn "(" T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
84 Junk: T_ExprList "(" T_Use "(" T_Reg ":" TypeInfo T_IntConstant ")" ")" "(" T_Nil ")"
Terminals, with rules where they appear
$end (0) 0
error (256)
T_Note (258) 12 13
T_Insn (259) 17
T_JumpInsn (260) 66
T_CallInsn (261) 82 83
T_Call (262) 82 83
T_SymbolRef (263) 45 82 83
T_Flags (264) 26
T_Nil (265) 17 66 82 83 84
T_Parallel (266) 23
T_Clobber (267) 26
T_Set (268) 27 66 82
T_Use (269) 28 84
T_IfThenElse (270) 71
T_ConstInt (271) 82 83
T_Barrier (272) 14
T_Mem (273) 43 82 83
T_Reg (274) 26 28 44 82 84
T_Pc (275) 66 72
T_LabelRef (276) 70
T_IFlag (277) 39
T_VFlag (278) 40
T_FFlag (279) 41
T_CFlag (280) 42
T_SIType (281) 46
T_DIType (282) 47 82 83
T_QIType (283) 48 82 83
T_CCType (284) 26 49
T_CCZType (285) 50
T_CCGCType (286) 51
T_Plus (287) 60
T_Minus (288) 61
T_Mult (289) 62
T_Ashift (290) 63
T_Subreg (291) 64
T_ExprList (292) 84
T_EndPara (293) 23
T_RArrow (294) 66
T_SiExtend (295) 34
T_Compare (296) 65
T_Lt (297) 74
T_Gt (298) 75
T_Le (299) 76
T_Ge (300) 77
T_Eq (301) 78
T_Ne (302) 79
T_StringConstant (303) 17 66 82 83
T_IntConstant (304) 12 13 14 15 16 17 26 28 66 70 82 83 84
T_FunBegin (305) 4
"(" (306) 7 8 9 10 11 17 26 27 28 34 53 54 55 56 57 58 60 61 62 63
64 65 66 71 73 82 83 84
")" (307) 7 8 9 10 11 17 26 27 28 34 53 54 55 56 57 58 60 61 62 63
64 65 66 71 73 82 83 84
"-" (308) 15
":" (309) 17 28 33 34 66 82 83 84
Nonterminals, with rules where they appear
$accept (55)
on left: 0
Program (56)
on left: 1, on right: 0
FuncBodies (57)
on left: 2 3, on right: 1 2
FuncBody (58)
on left: 4, on right: 2 3
Stmts (59)
on left: 5 6, on right: 4 5
Stmt (60)
on left: 7 8 9 10 11, on right: 5 6
Note (61)
on left: 12 13, on right: 7
Barrier (62)
on left: 14, on right: 8
Integer (63)
on left: 15 16, on right: 17 32 59 64 66 82 83
Insn (64)
on left: 17, on right: 9
MainCmd (65)
on left: 18 19, on right: 17
PlainCmd (66)
on left: 20 21 22, on right: 18 24 25
ParallelCmd (67)
on left: 23, on right: 19
Cmds (68)
on left: 24 25, on right: 23 24
ClobberCmd (69)
on left: 26, on right: 20
SetCmd (70)
on left: 27, on right: 21
UseCmd (71)
on left: 28, on right: 22
Operand (72)
on left: 29 30 31, on right: 27 34 60 61 62 63 64 65 73
IntOperand (73)
on left: 32, on right: 29
ExprOperand (74)
on left: 33, on right: 30
ExtendOperand (75)
on left: 34, on right: 31
LocInfo (76)
on left: 35 36, on right: 33
Flags (77)
on left: 37 38, on right: 28 35 37
Flag (78)
on left: 39 40 41 42, on right: 37 38
MemType (79)
on left: 43 44 45, on right: 35 36
TypeInfo (80)
on left: 46 47 48 49 50 51, on right: 28 33 34 60 61 62 63 64 65
82 84
Expr (81)
on left: 52 53 54 55 56 57 58, on right: 33
IntegerExpr (82)
on left: 59, on right: 52
PlusExpr (83)
on left: 60, on right: 53
MinusExpr (84)
on left: 61, on right: 54
MultExpr (85)
on left: 62, on right: 55
AshiftExpr (86)
on left: 63, on right: 56
SubregExpr (87)
on left: 64, on right: 57
CompareExpr (88)
on left: 65, on right: 58
JumpInsn (89)
on left: 66, on right: 10
Dest (90)
on left: 67 68 69, on right: 66 71
Label (91)
on left: 70, on right: 67
IfThenElse (92)
on left: 71, on right: 68
Pc (93)
on left: 72, on right: 69
Comparison (94)
on left: 73, on right: 71
Condition (95)
on left: 74 75 76 77 78 79, on right: 73
Call (96)
on left: 80 81, on right: 11
RetCall (97)
on left: 82, on right: 80
NoRetCall (98)
on left: 83, on right: 81
Junk (99)
on left: 84, on right: 82 83
State 0
0 $accept: . Program $end
T_FunBegin shift, and go to state 1
Program go to state 2
FuncBodies go to state 3
FuncBody go to state 4
State 1
4 FuncBody: T_FunBegin . Stmts
"(" shift, and go to state 5
Stmts go to state 6
Stmt go to state 7
State 2
0 $accept: Program . $end
$end shift, and go to state 8
State 3
1 Program: FuncBodies .
2 FuncBodies: FuncBodies . FuncBody
T_FunBegin shift, and go to state 1
$default reduce using rule 1 (Program)
FuncBody go to state 9
State 4
3 FuncBodies: FuncBody .
$default reduce using rule 3 (FuncBodies)
State 5
7 Stmt: "(" . Note ")"
8 | "(" . Barrier ")"
9 | "(" . Insn ")"
10 | "(" . JumpInsn ")"
11 | "(" . Call ")"
T_Note shift, and go to state 10
T_Insn shift, and go to state 11
T_JumpInsn shift, and go to state 12
T_CallInsn shift, and go to state 13
T_Barrier shift, and go to state 14
Note go to state 15
Barrier go to state 16
Insn go to state 17
JumpInsn go to state 18
Call go to state 19
RetCall go to state 20
NoRetCall go to state 21
State 6
4 FuncBody: T_FunBegin Stmts .
5 Stmts: Stmts . Stmt
"(" shift, and go to state 5
$default reduce using rule 4 (FuncBody)
Stmt go to state 22
State 7
6 Stmts: Stmt .
$default reduce using rule 6 (Stmts)
State 8
0 $accept: Program $end .
$default accept
State 9
2 FuncBodies: FuncBodies FuncBody .
$default reduce using rule 2 (FuncBodies)
State 10
12 Note: T_Note . T_IntConstant T_IntConstant T_IntConstant T_IntConstant
13 | T_Note . T_IntConstant T_IntConstant T_IntConstant
T_IntConstant shift, and go to state 23
State 11
17 Insn: T_Insn . T_IntConstant T_IntConstant T_IntConstant "(" MainCmd ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")"
T_IntConstant shift, and go to state 24
State 12
66 JumpInsn: T_JumpInsn . T_IntConstant T_IntConstant T_IntConstant "(" T_Set "(" T_Pc ")" "(" Dest ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" T_RArrow T_IntConstant
T_IntConstant shift, and go to state 25
State 13
82 RetCall: T_CallInsn . T_IntConstant T_IntConstant T_IntConstant T_IntConstant "(" T_Set "(" T_Reg ":" TypeInfo T_IntConstant ")" "(" T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
83 NoRetCall: T_CallInsn . "(" T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
T_IntConstant shift, and go to state 26
"(" shift, and go to state 27
State 14
14 Barrier: T_Barrier . T_IntConstant T_IntConstant T_IntConstant
T_IntConstant shift, and go to state 28
State 15
7 Stmt: "(" Note . ")"
")" shift, and go to state 29
State 16
8 Stmt: "(" Barrier . ")"
")" shift, and go to state 30
State 17
9 Stmt: "(" Insn . ")"
")" shift, and go to state 31
State 18
10 Stmt: "(" JumpInsn . ")"
")" shift, and go to state 32
State 19
11 Stmt: "(" Call . ")"
")" shift, and go to state 33
State 20
80 Call: RetCall .
$default reduce using rule 80 (Call)
State 21
81 Call: NoRetCall .
$default reduce using rule 81 (Call)
State 22
5 Stmts: Stmts Stmt .
$default reduce using rule 5 (Stmts)
State 23
12 Note: T_Note T_IntConstant . T_IntConstant T_IntConstant T_IntConstant
13 | T_Note T_IntConstant . T_IntConstant T_IntConstant
T_IntConstant shift, and go to state 34
State 24
17 Insn: T_Insn T_IntConstant . T_IntConstant T_IntConstant "(" MainCmd ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")"
T_IntConstant shift, and go to state 35
State 25
66 JumpInsn: T_JumpInsn T_IntConstant . T_IntConstant T_IntConstant "(" T_Set "(" T_Pc ")" "(" Dest ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" T_RArrow T_IntConstant
T_IntConstant shift, and go to state 36
State 26
82 RetCall: T_CallInsn T_IntConstant . T_IntConstant T_IntConstant T_IntConstant "(" T_Set "(" T_Reg ":" TypeInfo T_IntConstant ")" "(" T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
T_IntConstant shift, and go to state 37
State 27
83 NoRetCall: T_CallInsn "(" . T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
T_Call shift, and go to state 38
State 28
14 Barrier: T_Barrier T_IntConstant . T_IntConstant T_IntConstant
T_IntConstant shift, and go to state 39
State 29
7 Stmt: "(" Note ")" .
$default reduce using rule 7 (Stmt)
State 30
8 Stmt: "(" Barrier ")" .
$default reduce using rule 8 (Stmt)
State 31
9 Stmt: "(" Insn ")" .
$default reduce using rule 9 (Stmt)
State 32
10 Stmt: "(" JumpInsn ")" .
$default reduce using rule 10 (Stmt)
State 33
11 Stmt: "(" Call ")" .
$default reduce using rule 11 (Stmt)
State 34
12 Note: T_Note T_IntConstant T_IntConstant . T_IntConstant T_IntConstant
13 | T_Note T_IntConstant T_IntConstant . T_IntConstant
T_IntConstant shift, and go to state 40
State 35
17 Insn: T_Insn T_IntConstant T_IntConstant . T_IntConstant "(" MainCmd ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")"
T_IntConstant shift, and go to state 41
State 36
66 JumpInsn: T_JumpInsn T_IntConstant T_IntConstant . T_IntConstant "(" T_Set "(" T_Pc ")" "(" Dest ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" T_RArrow T_IntConstant
T_IntConstant shift, and go to state 42
State 37
82 RetCall: T_CallInsn T_IntConstant T_IntConstant . T_IntConstant T_IntConstant "(" T_Set "(" T_Reg ":" TypeInfo T_IntConstant ")" "(" T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
T_IntConstant shift, and go to state 43
State 38
83 NoRetCall: T_CallInsn "(" T_Call . "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
"(" shift, and go to state 44
State 39
14 Barrier: T_Barrier T_IntConstant T_IntConstant . T_IntConstant
T_IntConstant shift, and go to state 45
State 40
12 Note: T_Note T_IntConstant T_IntConstant T_IntConstant . T_IntConstant
13 | T_Note T_IntConstant T_IntConstant T_IntConstant .
T_IntConstant shift, and go to state 46
$default reduce using rule 13 (Note)
State 41
17 Insn: T_Insn T_IntConstant T_IntConstant T_IntConstant . "(" MainCmd ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")"
"(" shift, and go to state 47
State 42
66 JumpInsn: T_JumpInsn T_IntConstant T_IntConstant T_IntConstant . "(" T_Set "(" T_Pc ")" "(" Dest ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" T_RArrow T_IntConstant
"(" shift, and go to state 48
State 43
82 RetCall: T_CallInsn T_IntConstant T_IntConstant T_IntConstant . T_IntConstant "(" T_Set "(" T_Reg ":" TypeInfo T_IntConstant ")" "(" T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
T_IntConstant shift, and go to state 49
State 44
83 NoRetCall: T_CallInsn "(" T_Call "(" . T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
T_Mem shift, and go to state 50
State 45
14 Barrier: T_Barrier T_IntConstant T_IntConstant T_IntConstant .
$default reduce using rule 14 (Barrier)
State 46
12 Note: T_Note T_IntConstant T_IntConstant T_IntConstant T_IntConstant .
$default reduce using rule 12 (Note)
State 47
17 Insn: T_Insn T_IntConstant T_IntConstant T_IntConstant "(" . MainCmd ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")"
T_Parallel shift, and go to state 51
T_Clobber shift, and go to state 52
T_Set shift, and go to state 53
T_Use shift, and go to state 54
MainCmd go to state 55
PlainCmd go to state 56
ParallelCmd go to state 57
ClobberCmd go to state 58
SetCmd go to state 59
UseCmd go to state 60
State 48
66 JumpInsn: T_JumpInsn T_IntConstant T_IntConstant T_IntConstant "(" . T_Set "(" T_Pc ")" "(" Dest ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" T_RArrow T_IntConstant
T_Set shift, and go to state 61
State 49
82 RetCall: T_CallInsn T_IntConstant T_IntConstant T_IntConstant T_IntConstant . "(" T_Set "(" T_Reg ":" TypeInfo T_IntConstant ")" "(" T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
"(" shift, and go to state 62
State 50
83 NoRetCall: T_CallInsn "(" T_Call "(" T_Mem . ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
":" shift, and go to state 63
State 51
23 ParallelCmd: T_Parallel . Cmds T_EndPara
T_Clobber shift, and go to state 52
T_Set shift, and go to state 53
T_Use shift, and go to state 54
PlainCmd go to state 64
Cmds go to state 65
ClobberCmd go to state 58
SetCmd go to state 59
UseCmd go to state 60
State 52
26 ClobberCmd: T_Clobber . "(" T_Reg T_CCType T_IntConstant T_Flags ")"
"(" shift, and go to state 66
State 53
27 SetCmd: T_Set . "(" Operand ")" "(" Operand ")"
"(" shift, and go to state 67
State 54
28 UseCmd: T_Use . "(" T_Reg ":" Flags TypeInfo T_IntConstant ")"
"(" shift, and go to state 68
State 55
17 Insn: T_Insn T_IntConstant T_IntConstant T_IntConstant "(" MainCmd . ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")"
")" shift, and go to state 69
State 56
18 MainCmd: PlainCmd .
$default reduce using rule 18 (MainCmd)
State 57
19 MainCmd: ParallelCmd .
$default reduce using rule 19 (MainCmd)
State 58
20 PlainCmd: ClobberCmd .
$default reduce using rule 20 (PlainCmd)
State 59
21 PlainCmd: SetCmd .
$default reduce using rule 21 (PlainCmd)
State 60
22 PlainCmd: UseCmd .
$default reduce using rule 22 (PlainCmd)
State 61
66 JumpInsn: T_JumpInsn T_IntConstant T_IntConstant T_IntConstant "(" T_Set . "(" T_Pc ")" "(" Dest ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" T_RArrow T_IntConstant
"(" shift, and go to state 70
State 62
82 RetCall: T_CallInsn T_IntConstant T_IntConstant T_IntConstant T_IntConstant "(" . T_Set "(" T_Reg ":" TypeInfo T_IntConstant ")" "(" T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
T_Set shift, and go to state 71
State 63
83 NoRetCall: T_CallInsn "(" T_Call "(" T_Mem ":" . T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
T_QIType shift, and go to state 72
State 64
25 Cmds: PlainCmd .
$default reduce using rule 25 (Cmds)
State 65
23 ParallelCmd: T_Parallel Cmds . T_EndPara
24 Cmds: Cmds . PlainCmd
T_Clobber shift, and go to state 52
T_Set shift, and go to state 53
T_Use shift, and go to state 54
T_EndPara shift, and go to state 73
PlainCmd go to state 74
ClobberCmd go to state 58
SetCmd go to state 59
UseCmd go to state 60
State 66
26 ClobberCmd: T_Clobber "(" . T_Reg T_CCType T_IntConstant T_Flags ")"
T_Reg shift, and go to state 75
State 67
27 SetCmd: T_Set "(" . Operand ")" "(" Operand ")"
T_SymbolRef shift, and go to state 76
T_Mem shift, and go to state 77
T_Reg shift, and go to state 78
T_SiExtend shift, and go to state 79
T_IntConstant shift, and go to state 80
"-" shift, and go to state 81
Integer go to state 82
Operand go to state 83
IntOperand go to state 84
ExprOperand go to state 85
ExtendOperand go to state 86
LocInfo go to state 87
MemType go to state 88
State 68
28 UseCmd: T_Use "(" . T_Reg ":" Flags TypeInfo T_IntConstant ")"
T_Reg shift, and go to state 89
State 69
17 Insn: T_Insn T_IntConstant T_IntConstant T_IntConstant "(" MainCmd ")" . T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")"
T_StringConstant shift, and go to state 90
State 70
66 JumpInsn: T_JumpInsn T_IntConstant T_IntConstant T_IntConstant "(" T_Set "(" . T_Pc ")" "(" Dest ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" T_RArrow T_IntConstant
T_Pc shift, and go to state 91
State 71
82 RetCall: T_CallInsn T_IntConstant T_IntConstant T_IntConstant T_IntConstant "(" T_Set . "(" T_Reg ":" TypeInfo T_IntConstant ")" "(" T_Call "(" T_Mem ":" T_QIType "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
"(" shift, and go to state 92
State 72
83 NoRetCall: T_CallInsn "(" T_Call "(" T_Mem ":" T_QIType . "(" T_SymbolRef ":" T_DIType "(" T_StringConstant ")" ")" ")" "(" T_ConstInt Integer ")" ")" T_StringConstant ":" T_IntConstant Integer "(" T_Nil ")" "(" Junk ")"
"(" shift, and go to state 93
State 73
23 ParallelCmd: T_Parallel Cmds T_EndPara .
$default reduce using rule 23 (ParallelCmd)
State 74
24 Cmds: Cmds PlainCmd .
$default reduce using rule 24 (Cmds)
State 75
26 ClobberCmd: T_Clobber "(" T_Reg . T_CCType T_IntConstant T_Flags ")"
T_CCType shift, and go to state 94
State 76
45 MemType: T_SymbolRef .
$default reduce using rule 45 (MemType)
State 77
43 MemType: T_Mem .
$default reduce using rule 43 (MemType)
State 78
44 MemType: T_Reg .
$default reduce using rule 44 (MemType)
State 79
34 ExtendOperand: T_SiExtend . ":" TypeInfo "(" Operand ")"
":" shift, and go to state 95
State 80
16 Integer: T_IntConstant .
$default reduce using rule 16 (Integer)
State 81
15 Integer: "-" . T_IntConstant
T_IntConstant shift, and go to state 96
State 82
32 IntOperand: Integer .
$default reduce using rule 32 (IntOperand)
State 83
27 SetCmd: T_Set "(" Operand . ")" "(" Operand ")"
")" shift, and go to state 97
State 84
29 Operand: IntOperand .
$default reduce using rule 29 (Operand)
State 85
30 Operand: ExprOperand .
$default reduce using rule 30 (Operand)
State 86
31 Operand: ExtendOperand .
$default reduce using rule 31 (Operand)
State 87
33 ExprOperand: LocInfo . ":" TypeInfo Expr
":" shift, and go to state 98
State 88
35 LocInfo: MemType . Flags
36 | MemType .
T_IFlag shift, and go to state 99
T_VFlag shift, and go to state 100
T_FFlag shift, and go to state 101
T_CFlag shift, and go to state 102
$default reduce using rule 36 (LocInfo)
Flags go to state 103
Flag go to state 104