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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
|
functor Parser(P: PPC): PARSER = struct
structure P = P
structure T = P.T
datatype unop =
UnopPreInc |
UnopPreDec |
UnopAddr |
UnopDeref |
UnopPos |
UnopNeg |
UnopComp |
UnopLogNeg |
UnopPostInc |
UnopPostDec
datatype binopReg =
BrSubscript |
BrMul |
BrDiv |
BrMod |
BrSum |
BrSub |
BrShiftLeft |
BrShiftRight |
BrGreater |
BrLess |
BrLessEqual |
BrGreaterEqual |
BrEqual |
BrNotEqual |
BrBitAnd |
BrBitXor |
BrBitOr |
BrLogAnd |
BrLogOr |
BrAssign |
BrMulAssign |
BrDivAssign |
BrModAssign |
BrSumAssign |
BrSubAssign |
BrLeftShiftAssign |
BrRightShiftAssign |
BrBitAndAssign |
BrBitXorAssign |
BrBitOrAssign |
BrComma
val binopTable = [
(BrSubscript, T.Invalid, 0, false),
(BrMul, T.Asterisk, 13, true),
(BrDiv, T.Slash, 13, true),
(BrMod, T.Percent, 13, true),
(BrSum, T.Plus, 12, true),
(BrSub, T.Minus, 12, true),
(BrShiftLeft, T.DoubleLess, 11, true),
(BrShiftRight, T.DoubleGreater, 11, true),
(BrGreater, T.Greater, 10, true),
(BrLess, T.Less, 10, true),
(BrLessEqual, T.LessEqualSign, 10, true),
(BrGreaterEqual, T.GreaterEqualSign, 10, true),
(BrEqual, T.DoubleEqualSign, 9, true),
(BrNotEqual, T.ExclMarkEqualSign, 9, true),
(BrBitAnd, T.Ampersand, 8, true),
(BrBitXor, T.Cap, 7, true),
(BrBitOr, T.VerticalBar, 6, true),
(BrLogAnd, T.DoubleAmpersand, 5, true),
(BrLogOr, T.DoubleVerticalBar, 4, true),
(BrAssign, T.EqualSign, 2, false),
(BrMulAssign, T.AmpersandEqualSign, 2, false),
(BrDivAssign, T.SlashEqualSign, 2, false),
(BrModAssign, T.PercentEqualSign, 2, false),
(BrSumAssign, T.PlusEqualSign, 2, false),
(BrSubAssign, T.MinusEqualSign, 2, false),
(BrLeftShiftAssign, T.DoubleLessEqualSign, 2, false),
(BrRightShiftAssign, T.DoubleGreaterEqualSign, 2, false),
(BrBitAndAssign, T.AmpersandEqualSign, 2, false),
(BrBitXorAssign, T.CapEqualSign, 2, false),
(BrBitOrAssign, T.VerticalBarEqualSign, 2, false),
(BrComma, T.Comma, 1, true)
]
datatype expr =
Enum |
Eid of int |
Estrlit of int |
EmemberByV of int * exprAug |
EmemberByP of int * exprAug |
EfuncCall of exprAug * exprAug list |
ETernary of exprAug * exprAug * exprAug |
Eunop of unop * exprAug |
Ebinop of binop * exprAug * exprAug
and exprAug = EAug of expr * P.tkPos
and binop = BR of binopReg | BinopTernaryIncomplete of exprAug
val (ternaryOpPrio, ternaryOpLeftAssoc) = (2, false)
datatype exprPart =
EPexpr of exprAug |
(* last two are prio and leftAssoc *)
EPbinop of binop * P.tkPos * int * bool
datatype storageSpec =
SpecTypedef |
SpecExtern |
SpecStatic |
SpecRegister
datatype ctype =
void_t |
char_t |
uchar_t |
short_t |
ushort_t |
int_t |
uint_t |
long_t |
ulong_t |
longlong_t |
ulonglong_t |
float_t |
double_t |
pointer_t of int * ctype |
function_t of ctype * ctype list |
array_t of ctype
type def = expr
datatype token =
Tk of T.token |
TkParens of (token * P.tkPos) list |
TkBrackets of (token * P.tkPos) list |
TkBraces of (token * P.tkPos) list |
TkTernary of (token * P.tkPos) list
val PstorSpec = fn z =>
let
fun f (out, s) =
Printf out `(
case s of
SpecTypedef => "typedef"
| SpecExtern => "extern"
| SpecRegister => "register"
| SpecStatic => "static"
) %
in
bind A1 f
end z
val Pctype = fn z =>
let
fun Pctype (out, t) =
let
fun &s = Printf out `s %
in
case t of
void_t => &"void"
| char_t => &"char"
| uchar_t => &"unsigned char"
| short_t => &"short"
| ushort_t => &"usigned short"
| int_t => &"int"
| uint_t => &"unsigned int"
| long_t => &"long"
| ulong_t => &"unsigned long"
| longlong_t => &"long long"
| ulonglong_t => &"unsigned long long"
| float_t => &"float"
| double_t => &"double"
| pointer_t (plevel, t) =>
Printf out `"[" I plevel `"]" A1 Pctype t %
| function_t (ret, params) =>
let
fun Pparams (_, []) = ()
| Pparams (out, [p]) = Printf out A1 Pctype p %
| Pparams (out, (p1 :: p2 :: t)) =
Printf out A1 Pctype p1 `", " A1 Pparams (p2 :: t) %
in
Printf out `"(" A1 Pparams params `") -> " A1 Pctype ret %
end
| array_t el => Printf out `"() -> " A1 Pctype el %
end
in
bind A1 Pctype
end z
fun PtokenL (_, []) = ()
| PtokenL (out, head :: tail) =
let
fun printL list s e =
Printf out `s`"| " A1 PtokenL list `" |"`e `", " A1 PtokenL tail %
val (tk, _) = head
in
case tk of
Tk tk => Printf out P.Ptk tk `"," A1 PtokenL tail %
| TkParens list => printL list "(" ")"
| TkBrackets list => printL list "[" "]"
| TkBraces list => printL list "{" "}"
| TkTernary list => printL list "?" ":"
end
type parseCtx = P.t * (token * P.tkPos) list list
fun createParseCtx fname incDirs =
(P.create { fname, incDirs, debugMode = false }, [])
fun getTokenCtx (ppc, []) =
let
fun first T.RParen = "'('"
| first T.RBracket = "'['"
| first T.RBrace = "'{'"
| first T.Colon = "'?'"
| first _ = raise Unreachable
fun newFrom start pos =
let
fun new con tkEnd = SOME (con, pos, tkEnd, [])
in
case start of
T.LParen => new TkParens T.RParen
| T.LBracket => new TkBrackets T.RBracket
| T.LBrace => new TkBraces T.RBrace
| T.QuestionMark => new TkTernary T.Colon
| _ => NONE
end
fun collect ppc (S as ((con, pos, tkEnd, list) :: tail)) =
let
val (tk, pos1, ppc) = P.getToken ppc
in
if tk = tkEnd then
let
val tk = con (rev $ (Tk T.EOS, pos1) :: list)
in
case tail of
[] => (tk, pos, ppc)
| ((con', pos', tkEnd, list) :: tail) =>
collect ppc ((con', pos', tkEnd, (tk, pos) :: list) :: tail)
end
else
collect ppc (
case newFrom tk pos1 of
SOME layer => (layer :: S)
| NONE => (
case tk of
T.RParen | T.RBracket | T.RBrace | T.Colon =>
P.error pos `"unmatched " `(first tkEnd) %
| _ => (con, pos, tkEnd, (Tk tk, pos1) :: list) :: tail
)
)
end
| collect _ _ = raise Unreachable
val (tk, pos, ppc) = P.getToken ppc
in
case newFrom tk pos of
SOME layer =>
(fn (tk, pos, ppc) => (tk, pos, (ppc, []))) $ collect ppc [layer]
| NONE => (Tk tk, pos, (ppc, []))
end
| getTokenCtx (C as (_, [(Tk T.EOS, pos)] :: _)) =
(Tk T.EOS, pos, C)
| getTokenCtx (_, [_] :: _) = raise Unreachable
| getTokenCtx (_, [] :: _) = raise Unreachable
| getTokenCtx (ppc, ((tk, pos) :: tail) :: layers) =
(tk, pos, (ppc, tail :: layers))
fun ctxWithLayer (ppc, layers) list cl =
let
val ctx = (ppc, list :: layers)
val (v, ctx) = cl ctx
in
(v, (fn (ppc, layers) => (ppc, tl layers)) ctx)
end
val Punop = fn z =>
let
fun Punop (out, unop) =
Printf out `(case unop of
UnopPreInc | UnopPostInc => "++"
| UnopPreDec | UnopPostDec => "--"
| UnopPos => "+"
| UnopNeg => "-"
| UnopAddr => "&"
| UnopDeref => "*"
| UnopComp => "~"
| UnopLogNeg => "!") %
in
bind A1 Punop
end z
val Pbinop = fn z =>
let
fun Pbinop (out, binop) =
case List.find (fn (binop', _, _, _) => binop' = binop) binopTable
of
SOME (_, tk, _, _) => Printf out P.Ptk tk %
| NONE => raise Unreachable
in
bind A1 Pbinop
end z
fun printExpr (out, off, ea) =
let
fun printExpr' (out, off, EAug (e, pos)) =
let
val P = fn z =>
let
fun Ppos out = Printf out `"| " P.PtkPos pos %
in
bind A0 Ppos
end z
fun member (member, ea) s = Printf out
`"(" `s P.?member P `"\n" A2 printExpr' (off + 1) ea `")" %;
in
printf R off %;
case e of
Eid id => Printf out P.?id P %
| Enum => Printf out `"num" P %
| Estrlit s => Printf out P.?s P %
| EmemberByV pair => member pair "."
| EmemberByP pair => member pair "->"
| EfuncCall (func, args) => (
Printf out `"(fcall" P `"\n" A2 printExpr' (off + 1) func `"\n" %;
app (fn arg =>
(Printf out A2 printExpr' (off + 1) arg `"\n" %)) args;
Printf out R off `")" %
)
| Eunop (unop, ea) => Printf out
`"(" Punop unop P `"\n" A2 printExpr' (off + 1) ea `")" %
| Ebinop (BR binop, left, right) =>
let
val binop =
if binop = BrSubscript then
"[]"
else
sprintf Pbinop binop %
in
Printf out `"(" `binop P `"\n"
A2 printExpr (off + 1) left
A2 printExpr' (off + 1) right `")" %
end
| Ebinop(BinopTernaryIncomplete _, _, _) => raise Unreachable
| ETernary (cond, trueBody, falseBody) =>
Printf out `"(?:" P `"\n"
A2 printExpr (off + 1) cond
A2 printExpr (off + 1) trueBody
A2 printExpr' (off + 1) falseBody `")" %
end
in
Printf out A2 printExpr' off ea `"\n" %
end
fun parseUnaryPrefix ctx acc =
let
val unopPreTable = [
(T.DoublePlus, UnopPreInc),
(T.DoubleMinus, UnopPreDec),
(T.Plus, UnopPos),
(T.Minus, UnopNeg),
(T.Ampersand, UnopAddr),
(T.Asterisk, UnopDeref),
(T.Tilde, UnopComp),
(T.ExclMark, UnopLogNeg)
]
val (tk, pos, ctx') = getTokenCtx ctx
in
case tk of
Tk tk => (
case List.find (fn (tk', _) => tk' = tk) unopPreTable of
SOME (_, unop) => parseUnaryPrefix ctx' ((unop, pos) :: acc)
| _ => (acc, ctx)
)
| _ => (acc, ctx)
end
fun parseBinop ctx endTk =
let
val (tk, pos, ctx) = getTokenCtx ctx
in
case tk of
TkTernary list =>
let
val (ea, ctx) = ctxWithLayer ctx list
(fn ctx => parseExpr ctx NONE)
in
SOME (EPbinop (BinopTernaryIncomplete ea, pos,
ternaryOpPrio, ternaryOpLeftAssoc), ctx)
end
| Tk tk =>
if tk = T.EOS orelse (isSome endTk andalso tk = valOf endTk) then
NONE
else (
case List.find (fn (_, tk', _, _) => tk' = tk) binopTable of
SOME (binop, _, prio, leftAssoc) =>
SOME (EPbinop (BR binop, pos, prio, leftAssoc), ctx)
| NONE => P.clerror pos [P.Cbinop]
)
| _ => P.clerror pos [P.Cbinop]
end
and parseFuncCall ctx funcEa list pos =
let
fun collectArgs ctx acc =
let
val (ea, ctx) = parseExpr ctx (SOME T.Comma)
val (tk, _, ctx) = getTokenCtx ctx
in
case tk of
Tk T.EOS => (rev $ ea :: acc, ctx)
| _ => collectArgs ctx (ea :: acc)
end
val (args, ctx) = ctxWithLayer ctx list (fn ctx => collectArgs ctx [])
in
(SOME $ EAug (EfuncCall (funcEa, args), pos), ctx)
end
and parseExprSuffix1 eAug ctx =
let
val (tk, pos1, ctx1) = getTokenCtx ctx
fun formUnop1 unop = (SOME (EAug (Eunop (unop, eAug), pos1)), ctx1)
fun formMemberOp unop =
let
val (tk, pos2, ctx2) = getTokenCtx ctx1
in
case tk of
Tk (T.Id id) => (SOME (EAug (unop (id, eAug), pos1)), ctx2)
| _ => P.clerror pos2 [P.Cid]
end
in
case tk of
Tk T.DoublePlus => formUnop1 UnopPostInc
| Tk T.DoubleMinus => formUnop1 UnopPostDec
| Tk T.Dot => formMemberOp EmemberByV
| Tk T.Arrow => formMemberOp EmemberByP
| TkBrackets list =>
let
val (ea, ctx) =
ctxWithLayer ctx1 list (fn ctx => parseExpr ctx NONE)
in
(SOME $ EAug (Ebinop (BR BrSubscript, eAug, ea), pos1), ctx)
end
| TkParens list => parseFuncCall ctx1 eAug list pos1
| _ => (NONE, ctx)
end
and parseExprSuffix eAug ctx =
let
val (eAug', ctx) = parseExprSuffix1 eAug ctx
in
case eAug' of
SOME eAug => parseExprSuffix eAug ctx
| NONE => (eAug, ctx)
end
and parsePrimaryExpr ctx =
let
val (tk, pos, ctx) = getTokenCtx ctx
fun wrap e = (EAug (e, pos), ctx)
in
case tk of
Tk (T.Id id) => wrap $ Eid id
| Tk (T.Strlit id) => wrap $ Estrlit id
| Tk (T.CharConst _) => raise Unimplemented
| Tk (T.Num _) => wrap Enum
| TkParens list =>
ctxWithLayer ctx list (fn (ctx: parseCtx) => parseExpr ctx NONE)
| _ => P.clerror pos [P.Cid, P.Cconst]
end
and parseUnary ctx =
let
val (prefix, ctx) = parseUnaryPrefix ctx []
val (eAug, ctx) = parsePrimaryExpr ctx
val (eAug, ctx) = parseExprSuffix eAug ctx
val eAug = List.foldl
(fn ((unop, pos), e) => EAug (Eunop (unop, e), pos)) eAug prefix
in
(eAug, ctx)
end
and constructExpr parts =
let
fun shouldTakePrev _ [] = false
| shouldTakePrev (_, _, p, assoc) ((_, _, p') :: _) =
case Int.compare (p', p) of
GREATER => true
| EQUAL => assoc
| LESS => false
fun applyTop vstack opstack =
let
fun take2 (x :: y :: tl) = (x, y, tl)
| take2 _ = raise Unreachable
val (right, left, vstack) = take2 vstack
val (binop, pos, _) = hd opstack
val head = EAug (
case binop of
BR binop => Ebinop (BR binop, left, right)
| BinopTernaryIncomplete trueBody =>
ETernary(left, trueBody, right), pos)
in
(head :: vstack, tl opstack)
end
fun insert (Q as (binop, pos, p, _)) (vstack, opstack) =
if shouldTakePrev Q opstack then
insert Q (applyTop vstack opstack)
else
(vstack, (binop, pos, p) :: opstack)
fun finish ([ea], []) = ea
| finish (_, []) = raise Unreachable
| finish (vstack, opstack) = finish $ applyTop vstack opstack
fun construct (vstack, opstack) (EPexpr ea :: acc) =
construct (ea :: vstack, opstack) acc
| construct stacks (EPbinop Q :: acc) =
construct (insert Q stacks) acc
| construct stacks [] = finish stacks
in
construct ([], []) parts
end
and parseExpr ctx endTk =
let
fun collect ctx expVal acc =
if expVal then
let
val (unary, ctx) = parseUnary ctx
in
collect ctx (not expVal) (EPexpr unary :: acc)
end
else
case parseBinop ctx endTk of
SOME (binop, ctx) => collect ctx (not expVal) (binop :: acc)
| NONE => (rev acc, ctx)
val (parts, ctx) = collect ctx true []
val expr = constructExpr parts
in
(expr, ctx)
end
val typeSpecs = [
T.kwVoid,
T.kwChar,
T.kwShort,
T.kwInt,
T.kwLong,
T.kwFloat,
T.kwDouble,
T.kwSigned,
T.kwUnsigned
]
fun ts2idx ts =
let
fun find _ [] = raise Unreachable
| find idx (ts' :: tss) =
if ts = ts' then
idx
else
find (idx + 1) tss
in
find 0 typeSpecs
end
fun idx2ts idx = List.nth (typeSpecs, idx)
val tsMaxIdxP1 = length typeSpecs
val prefixes = [
(void_t, [[T.kwVoid]]),
(char_t, [[T.kwChar], [T.kwChar, T.kwSigned]]),
(uchar_t, [[T.kwUnsigned, T.kwChar]]),
(short_t, [[T.kwShort], [T.kwSigned, T.kwShort], [T.kwSigned, T.kwInt],
[T.kwSigned, T.kwShort, T.kwInt]]),
(ushort_t, [[T.kwUnsigned, T.kwShort],
[T.kwUnsigned, T.kwShort, T.kwInt]]),
(int_t, [[T.kwInt], [T.kwSigned], [T.kwSigned, T.kwInt]]),
(uint_t, [[T.kwUnsigned], [T.kwUnsigned, T.kwInt]]),
(long_t, [[T.kwLong], [T.kwSigned, T.kwLong], [T.kwLong, T.kwInt],
[T.kwSigned, T.kwLong, T.kwInt]]),
(ulong_t, [[T.kwUnsigned, T.kwLong],
[T.kwUnsigned, T.kwLong, T.kwInt]]),
(longlong_t, [[T.kwLong, T.kwLong], [T.kwSigned, T.kwLong, T.kwLong],
[T.kwLong, T.kwLong, T.kwInt],
[T.kwSigned, T.kwLong, T.kwLong, T.kwInt]]),
(ulonglong_t, [[T.kwUnsigned, T.kwLong, T.kwLong],
[T.kwUnsigned, T.kwLong, T.kwLong, T.kwInt]]),
(float_t, [[T.kwFloat]]),
(double_t, [[T.kwDouble]])
]
fun genReprChildren l =
let
open List
fun genWithoutOne i =
if i = length l then
[]
else
let
val e = nth (l, i)
val bef = take (l, i)
val after = drop (l, i + 1)
in
(e, bef @ after) :: genWithoutOne (i + 1)
end
fun unique acc [] = acc
| unique acc ((e, l) :: tail) =
case List.find (fn (e', _) => e' = e) acc of
NONE => unique ((e, l) :: acc) tail
| SOME _ => unique acc tail
in
unique [] $ genWithoutOne 0
end
fun addRepr repr (P as (repr2id, _)) =
case List.find (fn (repr', _) => repr' = repr) repr2id of
SOME (_, id) => (id, P)
| NONE =>
let
fun createId (repr2id, trs) =
let
val id = length repr2id
in
(id, ((repr, id) :: repr2id, trs))
end
in
if length repr = 1 then
let
val (id, (repr2id, trs)) = createId P
in
(id, (repr2id, (0, ts2idx $ hd repr, id) :: trs))
end
else
let
val children = genReprChildren repr
val (P, ids) = List.foldl (fn ((e, l), (P, ids)) =>
let
val (id, P) = addRepr l P
in
(P, (id, e) :: ids)
end) (P, []) children
val (id, (repr2id, trs)) = createId P
val trs = List.foldl (fn ((id', e), trs) =>
(id', ts2idx e, id) :: trs) trs ids
in
(id, (repr2id, trs))
end
end
fun addTypeRepr ctype repr (repr2id, id2type, trs) =
let
val (id, (repr2id, trs)) = addRepr repr (repr2id, trs)
in
(repr2id, (id, ctype) :: id2type, trs)
end
fun prefixFsmPrint fsm repr2id =
let
fun findRepr id =
case List.find (fn (_, id') => id' = id) repr2id of
SOME (repr, _) => repr
| NONE => raise Unreachable
fun printRepr (out, l) =
let
fun printRepr' (_, []) = ()
| printRepr' (out, [tk]) = Printf out P.Ptk tk %
| printRepr' (out, tk1 :: tk2 :: tail) =
Printf out P.Ptk tk1 `", " A1 printRepr' (tk2 :: tail) %
in
Printf out `"[" A1 printRepr' l `"]" %
end
open Array
fun printRow i =
let
val (ctype, trs) = sub (fsm, i)
fun printTrs () = appi (fn (j, id) =>
if id = ~1 then
()
else
printf P.Ptk (idx2ts j) `" -> " I id `", " %
) trs
fun printType out =
case ctype of
NONE => Printf out `"none" %
| SOME ctype => Printf out Pctype ctype %
in
printf I i `" " A1 printRepr (findRepr i)
`" |" A0 printType `"|: " %;
printTrs ();
printf `"\n" %
end
val i = ref 0
in
while !i < length fsm do (
printRow $ !i;
i := !i + 1
)
end
fun buildPrefixFsm () =
let
val T = ([([], 0)], [], [])
val (repr2id, id2type, trs) = List.foldl (fn ((t, rl), T) =>
List.foldl (fn (r, T) => addTypeRepr t r T) T rl) T prefixes
open Array
fun fsmInit len =
let
val fsm = array (len, (NONE, array (tsMaxIdxP1, ~1)))
val i = ref 1
in
while !i < len do (
update (fsm, !i, (NONE, array (tsMaxIdxP1, ~1)));
i := !i + 1
);
fsm
end
val fsm = fsmInit $ List.length repr2id
val () = List.app (fn (id, ctype) =>
let
val (_, subarray) = sub (fsm, id)
in
update (fsm, id, (SOME ctype, subarray))
end) id2type
val () = List.app (fn (id', n, id) =>
let
val (_, subarray) = sub (fsm, id')
in
update (subarray, n, id)
end) trs
in
(* prefixFsmPrint fsm repr2id; *)
fsm
end
val prefixFsm = buildPrefixFsm ()
fun advanceTypeRepr typeReprId (tk, pos) =
let
open Array
val n = ts2idx tk
val (_, subarray) = sub (prefixFsm, typeReprId)
val id = sub (subarray, n)
in
if id = ~1 then
P.error pos `"unexpected type specifier" %
else
id
end
fun typeRepr2type typeReprId =
valOf o #1 o Array.sub $ (prefixFsm, typeReprId)
datatype specType = StorageSpec of storageSpec | TypeSpec of T.token
fun tryGetSpec ctx =
let
val (tk, pos, ctx') = getTokenCtx ctx
val storageSpecs = [
(T.kwTypedef, SpecTypedef),
(T.kwExtern, SpecExtern),
(T.kwStatic, SpecStatic),
(T.kwRegister, SpecRegister)
]
val cmp = (fn tk' => case tk of Tk tk => tk = tk' | _ => false)
val cmp2 = (fn (tk', _) => case tk of Tk tk => tk = tk' | _ => false)
in
case List.find cmp typeSpecs of
SOME tk => (SOME (TypeSpec tk, pos), ctx')
| NONE => (
case List.find cmp2 storageSpecs of
SOME (_, spec) => (SOME (StorageSpec spec, pos), ctx')
| NONE => (NONE, ctx)
)
end
fun parseDeclPrefix ctx =
let
fun collect ctx (storSpec, typeReprId) =
let
val (spec, ctx) = tryGetSpec ctx
in
case spec of
NONE =>
if typeReprId = 0 then
let
val (_, pos, _) = getTokenCtx ctx
in
P.error pos `"expected type specifier" %
end
else
((storSpec, typeRepr2type typeReprId), ctx)
| SOME (StorageSpec spec, pos) => (
case storSpec of
NONE => collect ctx (SOME spec, typeReprId)
| SOME _ =>
P.error pos `"storage specifier is already provided" %
)
| SOME (TypeSpec tk, pos) =>
collect ctx (storSpec, advanceTypeRepr typeReprId (tk, pos))
end
in
collect ctx (NONE, 0)
end
datatype declParts =
Pointer of int |
Id of int * P.tkPos |
FuncApp of (int option * P.tkPos * ctype) list |
ArrayApplication
fun Ppart (out, part) =
case part of
Pointer plevel => Printf out `"[" I plevel `"] " %
| Id _ => Printf out `"id" %
| FuncApp _ => Printf out `"()" %
| ArrayApplication => Printf out `"[]" %
fun parseFuncParams ctx =
let
fun collect ctx acc =
let
val (prefix, ctx) = parseDeclPrefix ctx
val (parts, ctx) = parseDeclarator (false, true) [] ctx
val declaredId = assembleDeclarator prefix parts
val (tk, pos, ctx) = getTokenCtx ctx
in
case tk of
Tk T.EOS => (rev $ declaredId :: acc, ctx)
| Tk T.Comma => collect ctx (declaredId :: acc)
| _ => P.clerror pos [P.Ctk T.Comma, P.Ctk T.RParen]
end
fun collect2 () =
let
val (tk, _, _) = getTokenCtx ctx
in
case tk of
Tk T.EOS => ([], ctx)
| _ => collect ctx []
end
val (params, ctx) = collect2 ()
val params =
map (fn ((id, pos), _, ctype, _) => (id, pos, ctype)) params
in
(FuncApp params, ctx)
end
and parseDDeclarator (untilEnd, abstractOk) ctx parts =
let
val (tk, pos, ctx) = getTokenCtx ctx
val (parts, ctx) =
case tk of
Tk (T.Id id) => (Id (id, pos) :: parts, ctx)
| TkParens list => ctxWithLayer ctx list
(fn ctx => parseDeclarator (true, abstractOk) parts ctx)
| _ => P.clerror pos [P.Cid, P.Ctk T.LParen]
fun collectTail parts ctx =
let
val (tk, pos, ctx') = getTokenCtx ctx
fun % ctx list f parts =
let
val (part, ctx) = ctxWithLayer ctx list (fn ctx => f ctx)
in
collectTail (part :: parts) ctx
end
in
case tk of
TkParens list => % ctx' list parseFuncParams parts
| TkBrackets _ => collectTail (ArrayApplication :: parts) ctx'
| Tk T.EOS => (parts, ctx)
| _ =>
if untilEnd then
P.clerror pos [P.Ctk T.LParen, P.Ctk T.RParen]
else
(parts, ctx)
end
in
collectTail parts ctx
end
and parseDeclarator conf parts ctx =
let
fun collectPointer plevel ctx =
let
val (tk, pos, ctx') = getTokenCtx ctx
in
case tk of
Tk T.Asterisk => collectPointer (plevel + 1) ctx'
| Tk T.kwConst => P.error pos `"const is not supported" %
| Tk T.kwVolatile => P.error pos `"volatile is not supported" %
| _ => (plevel, ctx)
end
val (plevel, ctx) = collectPointer 0 ctx
val (parts, ctx) = parseDDeclarator conf ctx parts
in
(if plevel > 0 then
Pointer plevel :: parts
else
parts, ctx)
end
and assembleDeclarator (storSpec, ctype) parts =
let
val parts = rev parts
val (id, pos) =
case hd parts of
Id (id, pos) => (id, pos)
| _ => raise Unreachable
fun complete (Pointer plevel :: tail) =
pointer_t (plevel, complete tail)
| complete (FuncApp params :: tail) =
let
(* TODO: check params uniqness *)
val params = map (fn (_, _, ctype) => ctype) params
in
function_t (complete tail, params)
end
| complete (ArrayApplication :: tail) = array_t (complete tail)
| complete [] = ctype
| complete _ = raise Unreachable
val params =
case parts of
_ :: FuncApp p :: _ => SOME $ map (fn (id, pos, _) => (id, pos)) p
| _ => NONE
val idType = complete $ tl parts
in
((SOME id, pos), storSpec, idType, params)
end
fun printDeclaredId ((id, _), storSpec, ctype, params) =
let
fun Pstor (_, NONE) = ()
| Pstor (out, SOME s) = Printf out PstorSpec s %
in
printf A1 Pstor storSpec Popt P.? id `": " Pctype ctype `"\n" %;
case params of
NONE => ()
| SOME params => (
printf `"params: " %;
List.app (fn (id, _) => printf Popt P.?id `", " %) params;
printf `"\n" %
)
end
fun parseDeclaration ctx =
let
val (prefix, ctx) = parseDeclPrefix ctx
fun collectDeclarators acc ctx =
let
val (parts, ctx) = parseDeclarator (false, false) [] ctx
val declaredId = assembleDeclarator prefix parts
val (tk, pos, ctx) = getTokenCtx ctx
in
case tk of
Tk T.Comma => collectDeclarators (declaredId :: acc) ctx
| Tk T.Semicolon => (rev $ declaredId :: acc, ctx)
| _ => P.clerror pos [P.Ctk T.Comma, P.Ctk T.Semicolon]
end
in
collectDeclarators [] ctx
end
fun parseDef ctx =
let
val (decls, _) = parseDeclaration ctx
in
List.app (fn decl => printDeclaredId decl) decls;
raise Unimplemented
end
end
|