forked from ocaml-flambda/flambda-backend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprintast.ml
1201 lines (1104 loc) · 39.4 KB
/
printast.ml
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
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Damien Doligez, projet Para, INRIA Rocquencourt *)
(* *)
(* Copyright 1999 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
open Asttypes
open Format
open Lexing
open Location
open Parsetree
let fmt_position with_name f l =
let fname = if with_name then l.pos_fname else "" in
if l.pos_lnum = -1
then fprintf f "%s[%d]" fname l.pos_cnum
else fprintf f "%s[%d,%d+%d]" fname l.pos_lnum l.pos_bol
(l.pos_cnum - l.pos_bol)
let fmt_location f loc =
if not !Clflags.locations then ()
else begin
let p_2nd_name = loc.loc_start.pos_fname <> loc.loc_end.pos_fname in
fprintf f "(%a..%a)" (fmt_position true) loc.loc_start
(fmt_position p_2nd_name) loc.loc_end;
if loc.loc_ghost then fprintf f " ghost";
end
let rec fmt_longident_aux f x =
match x with
| Longident.Lident (s) -> fprintf f "%s" s
| Longident.Ldot (y, s) -> fprintf f "%a.%s" fmt_longident_aux y s
| Longident.Lapply (y, z) ->
fprintf f "%a(%a)" fmt_longident_aux y fmt_longident_aux z
let fmt_longident f x = fprintf f "\"%a\"" fmt_longident_aux x
let fmt_longident_loc f (x : Longident.t loc) =
fprintf f "\"%a\" %a" fmt_longident_aux x.txt fmt_location x.loc
let fmt_string_loc f (x : string loc) =
fprintf f "\"%s\" %a" x.txt fmt_location x.loc
let fmt_str_opt_loc f (x : string option loc) =
fprintf f "\"%s\" %a" (Option.value x.txt ~default:"_") fmt_location x.loc
let fmt_char_option f = function
| None -> fprintf f "None"
| Some c -> fprintf f "Some %c" c
let fmt_constant f x =
match x with
| Pconst_integer (i,m) -> fprintf f "PConst_int (%s,%a)" i fmt_char_option m
| Pconst_unboxed_integer (i,m) -> fprintf f "PConst_unboxed_int (%s,%c)" i m
| Pconst_char (c) -> fprintf f "PConst_char %02x" (Char.code c)
| Pconst_string (s, strloc, None) ->
fprintf f "PConst_string(%S,%a,None)" s fmt_location strloc
| Pconst_string (s, strloc, Some delim) ->
fprintf f "PConst_string (%S,%a,Some %S)" s fmt_location strloc delim
| Pconst_float (s,m) -> fprintf f "PConst_float (%s,%a)" s fmt_char_option m
| Pconst_unboxed_float (s,m) ->
fprintf f "PConst_unboxed_float (%s,%a)" s fmt_char_option m
let fmt_mutable_flag f x =
match x with
| Immutable -> fprintf f "Immutable"
| Mutable -> fprintf f "Mutable"
let fmt_virtual_flag f x =
match x with
| Virtual -> fprintf f "Virtual"
| Concrete -> fprintf f "Concrete"
let fmt_override_flag f x =
match x with
| Override -> fprintf f "Override"
| Fresh -> fprintf f "Fresh"
let fmt_closed_flag f x =
match x with
| Closed -> fprintf f "Closed"
| Open -> fprintf f "Open"
let fmt_rec_flag f x =
match x with
| Nonrecursive -> fprintf f "Nonrec"
| Recursive -> fprintf f "Rec"
let fmt_direction_flag f x =
match x with
| Upto -> fprintf f "Up"
| Downto -> fprintf f "Down"
let fmt_private_flag f x =
match x with
| Public -> fprintf f "Public"
| Private -> fprintf f "Private"
let line i f s (*...*) =
fprintf f "%s" (String.make ((2*i) mod 72) ' ');
fprintf f s (*...*)
let list i f ppf l =
match l with
| [] -> line i ppf "[]\n"
| _ :: _ ->
line i ppf "[\n";
List.iter (f (i+1) ppf) l;
line i ppf "]\n"
let option i f ppf x =
match x with
| None -> line i ppf "None\n"
| Some x ->
line i ppf "Some\n";
f (i+1) ppf x
let longident_loc i ppf li = line i ppf "%a\n" fmt_longident_loc li
let string i ppf s = line i ppf "\"%s\"\n" s
let string_loc i ppf s = line i ppf "%a\n" fmt_string_loc s
let str_opt_loc i ppf s = line i ppf "%a\n" fmt_str_opt_loc s
let arg_label i ppf = function
| Nolabel -> line i ppf "Nolabel\n"
| Optional s -> line i ppf "Optional \"%s\"\n" s
| Labelled s -> line i ppf "Labelled \"%s\"\n" s
let modality i ppf modality =
line i ppf "modality %a\n" fmt_string_loc
(Location.map (fun (Modality x) -> x) modality)
let modalities i ppf modalities =
List.iter (fun m -> modality i ppf m) modalities
let mode i ppf mode =
line i ppf "mode %a\n" fmt_string_loc
(Location.map (fun (Mode x) -> x) mode)
let modes i ppf modes =
List.iter (fun m -> mode i ppf m) modes
let include_kind i ppf = function
| Structure -> line i ppf "Structure\n"
| Functor -> line i ppf "Functor\n"
let labeled_tuple_element f i ppf (l, ct) =
option i string ppf l;
f i ppf ct
let rec core_type i ppf x =
line i ppf "core_type %a\n" fmt_location x.ptyp_loc;
attributes i ppf x.ptyp_attributes;
let i = i+1 in
match x.ptyp_desc with
| Ptyp_any jkind ->
line i ppf "Ptyp_any\n";
jkind_annotation_opt (i+1) ppf jkind
| Ptyp_var (s, jkind) ->
line i ppf "Ptyp_var %s\n" s;
jkind_annotation_opt (i+1) ppf jkind
| Ptyp_arrow (l, ct1, ct2, m1, m2) ->
line i ppf "Ptyp_arrow\n";
arg_label i ppf l;
core_type i ppf ct1;
modes i ppf m1;
core_type i ppf ct2;
modes i ppf m2;
| Ptyp_tuple l ->
line i ppf "Ptyp_tuple\n";
list i (labeled_tuple_element core_type) ppf l;
| Ptyp_unboxed_tuple l ->
line i ppf "Ptyp_unboxed_tuple\n";
list i (labeled_tuple_element core_type) ppf l
| Ptyp_constr (li, l) ->
line i ppf "Ptyp_constr %a\n" fmt_longident_loc li;
list i core_type ppf l;
| Ptyp_variant (l, closed, low) ->
line i ppf "Ptyp_variant closed=%a\n" fmt_closed_flag closed;
list i label_x_bool_x_core_type_list ppf l;
option i (fun i -> list i string) ppf low
| Ptyp_object (l, c) ->
line i ppf "Ptyp_object %a\n" fmt_closed_flag c;
let i = i + 1 in
List.iter (fun field ->
match field.pof_desc with
| Otag (l, t) ->
line i ppf "method %s\n" l.txt;
attributes i ppf field.pof_attributes;
core_type (i + 1) ppf t
| Oinherit ct ->
line i ppf "Oinherit\n";
core_type (i + 1) ppf ct
) l
| Ptyp_class (li, l) ->
line i ppf "Ptyp_class %a\n" fmt_longident_loc li;
list i core_type ppf l
| Ptyp_alias (ct, s, jkind) ->
line i ppf "Ptyp_alias %a\n"
(fun ppf -> function
| None -> fprintf ppf "_"
| Some name -> fprintf ppf "\"%s\"" name.txt)
s;
core_type i ppf ct;
jkind_annotation_opt i ppf jkind
| Ptyp_poly (sl, ct) ->
line i ppf "Ptyp_poly\n";
list i typevar ppf sl;
core_type i ppf ct;
| Ptyp_package (s, l) ->
line i ppf "Ptyp_package %a\n" fmt_longident_loc s;
list i package_with ppf l;
| Ptyp_open (mod_ident, t) ->
line i ppf "Ptyp_open \"%a\"\n" fmt_longident_loc mod_ident;
core_type i ppf t
| Ptyp_extension (s, arg) ->
line i ppf "Ptyp_extension \"%s\"\n" s.txt;
payload i ppf arg
and typevar i ppf (s, jkind) =
line i ppf "var: %s\n" s.txt;
jkind_annotation_opt (i+1) ppf jkind
and package_with i ppf (s, t) =
line i ppf "with type %a\n" fmt_longident_loc s;
core_type i ppf t
and pattern i ppf x =
line i ppf "pattern %a\n" fmt_location x.ppat_loc;
attributes i ppf x.ppat_attributes;
let i = i+1 in
match x.ppat_desc with
| Ppat_any -> line i ppf "Ppat_any\n";
| Ppat_var (s) -> line i ppf "Ppat_var %a\n" fmt_string_loc s;
| Ppat_alias (p, s) ->
line i ppf "Ppat_alias %a\n" fmt_string_loc s;
pattern i ppf p;
| Ppat_constant (c) -> line i ppf "Ppat_constant %a\n" fmt_constant c;
| Ppat_interval (c1, c2) ->
line i ppf "Ppat_interval %a..%a\n" fmt_constant c1 fmt_constant c2;
| Ppat_tuple (l, c) ->
line i ppf "Ppat_tuple\n %a\n" fmt_closed_flag c;
list i (labeled_tuple_element pattern) ppf l
| Ppat_unboxed_tuple (l, c) ->
line i ppf "Ppat_unboxed_tuple %a\n" fmt_closed_flag c;
list i (labeled_tuple_element pattern) ppf l
| Ppat_construct (li, po) ->
line i ppf "Ppat_construct %a\n" fmt_longident_loc li;
option i
(fun i ppf (vl, p) ->
list i string_loc ppf vl;
pattern i ppf p)
ppf po
| Ppat_variant (l, po) ->
line i ppf "Ppat_variant \"%s\"\n" l;
option i pattern ppf po;
| Ppat_record (l, c) ->
line i ppf "Ppat_record %a\n" fmt_closed_flag c;
list i longident_x_pattern ppf l;
| Ppat_record_unboxed_product (l, c) ->
line i ppf "Ppat_record_unboxed_product %a\n" fmt_closed_flag c;
list i longident_x_pattern ppf l;
| Ppat_array (mut, l) ->
line i ppf "Ppat_array %a\n" fmt_mutable_flag mut;
list i pattern ppf l;
| Ppat_or (p1, p2) ->
line i ppf "Ppat_or\n";
pattern i ppf p1;
pattern i ppf p2;
| Ppat_lazy p ->
line i ppf "Ppat_lazy\n";
pattern i ppf p;
| Ppat_constraint (p, ct, m) ->
line i ppf "Ppat_constraint\n";
pattern i ppf p;
Option.iter (core_type i ppf) ct;
modes i ppf m;
| Ppat_type (li) ->
line i ppf "Ppat_type\n";
longident_loc i ppf li
| Ppat_unpack s ->
line i ppf "Ppat_unpack %a\n" fmt_str_opt_loc s;
| Ppat_exception p ->
line i ppf "Ppat_exception\n";
pattern i ppf p
| Ppat_open (m,p) ->
line i ppf "Ppat_open \"%a\"\n" fmt_longident_loc m;
pattern i ppf p
| Ppat_extension (s, arg) ->
line i ppf "Ppat_extension \"%s\"\n" s.txt;
payload i ppf arg
and expression i ppf x =
line i ppf "expression %a\n" fmt_location x.pexp_loc;
attributes i ppf x.pexp_attributes;
let i = i+1 in
match x.pexp_desc with
| Pexp_ident (li) -> line i ppf "Pexp_ident %a\n" fmt_longident_loc li;
| Pexp_constant (c) -> line i ppf "Pexp_constant %a\n" fmt_constant c;
| Pexp_let (rf, l, e) ->
line i ppf "Pexp_let %a\n" fmt_rec_flag rf;
list i value_binding ppf l;
expression i ppf e;
| Pexp_function (params, c, body) ->
line i ppf "Pexp_function\n";
list i function_param ppf params;
function_constraint i ppf c;
function_body i ppf body
| Pexp_apply (e, l) ->
line i ppf "Pexp_apply\n";
expression i ppf e;
list i label_x_expression ppf l;
| Pexp_match (e, l) ->
line i ppf "Pexp_match\n";
expression i ppf e;
list i case ppf l;
| Pexp_try (e, l) ->
line i ppf "Pexp_try\n";
expression i ppf e;
list i case ppf l;
| Pexp_tuple (l) ->
line i ppf "Pexp_tuple\n";
list i (labeled_tuple_element expression) ppf l;
| Pexp_unboxed_tuple (l) ->
line i ppf "Pexp_unboxed_tuple\n";
list i (labeled_tuple_element expression) ppf l;
| Pexp_construct (li, eo) ->
line i ppf "Pexp_construct %a\n" fmt_longident_loc li;
option i expression ppf eo;
| Pexp_variant (l, eo) ->
line i ppf "Pexp_variant \"%s\"\n" l;
option i expression ppf eo;
| Pexp_record (l, eo) ->
line i ppf "Pexp_record\n";
list i longident_x_expression ppf l;
option i expression ppf eo;
| Pexp_record_unboxed_product (l, eo) ->
line i ppf "Pexp_record_unboxed_product\n";
list i longident_x_expression ppf l;
option i expression ppf eo;
| Pexp_field (e, li) ->
line i ppf "Pexp_field\n";
expression i ppf e;
longident_loc i ppf li;
| Pexp_unboxed_field (e, li) ->
line i ppf "Pexp_unboxed_field\n";
expression i ppf e;
longident_loc i ppf li;
| Pexp_setfield (e1, li, e2) ->
line i ppf "Pexp_setfield\n";
expression i ppf e1;
longident_loc i ppf li;
expression i ppf e2;
| Pexp_array (mut, l) ->
line i ppf "Pexp_array %a\n" fmt_mutable_flag mut;
list i expression ppf l;
| Pexp_ifthenelse (e1, e2, eo) ->
line i ppf "Pexp_ifthenelse\n";
expression i ppf e1;
expression i ppf e2;
option i expression ppf eo;
| Pexp_sequence (e1, e2) ->
line i ppf "Pexp_sequence\n";
expression i ppf e1;
expression i ppf e2;
| Pexp_while (e1, e2) ->
line i ppf "Pexp_while\n";
expression i ppf e1;
expression i ppf e2;
| Pexp_for (p, e1, e2, df, e3) ->
line i ppf "Pexp_for %a\n" fmt_direction_flag df;
pattern i ppf p;
expression i ppf e1;
expression i ppf e2;
expression i ppf e3;
| Pexp_constraint (e, ct, m) ->
line i ppf "Pexp_constraint\n";
expression i ppf e;
Option.iter (core_type i ppf) ct;
modes i ppf m;
| Pexp_coerce (e, cto1, cto2) ->
line i ppf "Pexp_coerce\n";
expression i ppf e;
option i core_type ppf cto1;
core_type i ppf cto2;
| Pexp_send (e, s) ->
line i ppf "Pexp_send \"%s\"\n" s.txt;
expression i ppf e;
| Pexp_new (li) -> line i ppf "Pexp_new %a\n" fmt_longident_loc li;
| Pexp_setinstvar (s, e) ->
line i ppf "Pexp_setinstvar %a\n" fmt_string_loc s;
expression i ppf e;
| Pexp_override (l) ->
line i ppf "Pexp_override\n";
list i string_x_expression ppf l;
| Pexp_letmodule (s, me, e) ->
line i ppf "Pexp_letmodule %a\n" fmt_str_opt_loc s;
module_expr i ppf me;
expression i ppf e;
| Pexp_letexception (cd, e) ->
line i ppf "Pexp_letexception\n";
extension_constructor i ppf cd;
expression i ppf e;
| Pexp_assert (e) ->
line i ppf "Pexp_assert\n";
expression i ppf e;
| Pexp_lazy (e) ->
line i ppf "Pexp_lazy\n";
expression i ppf e;
| Pexp_poly (e, cto) ->
line i ppf "Pexp_poly\n";
expression i ppf e;
option i core_type ppf cto;
| Pexp_object s ->
line i ppf "Pexp_object\n";
class_structure i ppf s
| Pexp_newtype (s, jkind, e) ->
line i ppf "Pexp_newtype \"%s\"\n" s.txt;
jkind_annotation_opt i ppf jkind;
expression i ppf e
| Pexp_pack me ->
line i ppf "Pexp_pack\n";
module_expr i ppf me
| Pexp_open (o, e) ->
line i ppf "Pexp_open %a\n" fmt_override_flag o.popen_override;
module_expr i ppf o.popen_expr;
expression i ppf e
| Pexp_letop {let_; ands; body} ->
line i ppf "Pexp_letop\n";
binding_op i ppf let_;
list i binding_op ppf ands;
expression i ppf body
| Pexp_extension (s, arg) ->
line i ppf "Pexp_extension \"%s\"\n" s.txt;
payload i ppf arg
| Pexp_unreachable ->
line i ppf "Pexp_unreachable"
| Pexp_stack e ->
line i ppf "Pexp_stack\n";
expression i ppf e
| Pexp_comprehension c ->
line i ppf "Pexp_comprehension\n";
comprehension_expression i ppf c
| Pexp_overwrite (e1, e2) ->
line i ppf "Pexp_overwrite\n";
expression i ppf e1;
expression i ppf e2;
| Pexp_hole ->
line i ppf "Pexp_hole"
and comprehension_expression i ppf = function
| Pcomp_array_comprehension (m, c) ->
line i ppf "Pcomp_array_comprehension %a\n" fmt_mutable_flag m;
comprehension i ppf c
| Pcomp_list_comprehension c ->
line i ppf "Pcomp_list_comprehension\n";
comprehension i ppf c
and comprehension i ppf ({ pcomp_body; pcomp_clauses } : comprehension) =
list i comprehension_clause ppf pcomp_clauses;
expression i ppf pcomp_body
and comprehension_clause i ppf = function
| Pcomp_for cbs ->
line i ppf "Pcomp_for\n";
list i comprehension_clause_binding ppf cbs
| Pcomp_when exp ->
line i ppf "Pcomp_when\n";
expression i ppf exp
and comprehension_clause_binding i ppf
{ pcomp_cb_pattern; pcomp_cb_iterator; pcomp_cb_attributes }
=
pattern i ppf pcomp_cb_pattern;
comprehension_iterator (i+1) ppf pcomp_cb_iterator;
attributes i ppf pcomp_cb_attributes
and comprehension_iterator i ppf = function
| Pcomp_range { start; stop; direction } ->
line i ppf "Pcomp_range %a\n" fmt_direction_flag direction;
expression i ppf start;
expression i ppf stop;
| Pcomp_in exp ->
line i ppf "Pcomp_in\n";
expression i ppf exp
and jkind_annotation_opt i ppf jkind =
match jkind with
| None -> ()
| Some jkind -> jkind_annotation (i+1) ppf jkind
and jkind_annotation i ppf (jkind : jkind_annotation) =
line i ppf "jkind %a\n" fmt_location jkind.pjkind_loc;
match jkind.pjkind_desc with
| Default -> line i ppf "Default\n"
| Abbreviation jkind ->
line i ppf "Abbreviation \"%s\"\n" jkind
| Mod (jkind, m) ->
line i ppf "Mod\n";
jkind_annotation (i+1) ppf jkind;
modes (i+1) ppf m
| With (jkind, type_) ->
line i ppf "With\n";
jkind_annotation (i+1) ppf jkind;
core_type (i+1) ppf type_
| Kind_of type_ ->
line i ppf "Kind_of\n";
core_type (i+1) ppf type_
| Product jkinds ->
line i ppf "Product\n";
list i jkind_annotation ppf jkinds
and function_param i ppf { pparam_desc = desc; pparam_loc = loc } =
match desc with
| Pparam_val (l, eo, p) ->
line i ppf "Pparam_val %a\n" fmt_location loc;
arg_label (i+1) ppf l;
option (i+1) expression ppf eo;
pattern (i+1) ppf p
| Pparam_newtype (ty, jkind) ->
line i ppf "Pparam_newtype \"%s\" %a\n" ty.txt fmt_location loc;
jkind_annotation_opt (i+1) ppf jkind
and function_body i ppf body =
match body with
| Pfunction_body e ->
line i ppf "Pfunction_body\n";
expression (i+1) ppf e
| Pfunction_cases (cases, loc, attrs) ->
line i ppf "Pfunction_cases %a\n" fmt_location loc;
attributes (i+1) ppf attrs;
list (i+1) case ppf cases
and type_constraint i ppf type_constraint =
match type_constraint with
| Pconstraint ty ->
line i ppf "Pconstraint\n";
core_type (i+1) ppf ty
| Pcoerce (ty1, ty2) ->
line i ppf "Pcoerce\n";
option (i+1) core_type ppf ty1;
core_type (i+1) ppf ty2
and function_constraint i ppf { ret_type_constraint; ret_mode_annotations; mode_annotations = _ } =
option i type_constraint ppf ret_type_constraint;
modes i ppf ret_mode_annotations
and value_description i ppf x =
line i ppf "value_description %a %a\n" fmt_string_loc
x.pval_name fmt_location x.pval_loc;
attributes i ppf x.pval_attributes;
core_type (i+1) ppf x.pval_type;
modalities (i+1) ppf x.pval_modalities;
list (i+1) string ppf x.pval_prim
and type_parameter i ppf (x, _variance) = core_type i ppf x
and type_declaration i ppf x =
line i ppf "type_declaration %a %a\n" fmt_string_loc x.ptype_name
fmt_location x.ptype_loc;
attributes i ppf x.ptype_attributes;
let i = i+1 in
line i ppf "ptype_params =\n";
list (i+1) type_parameter ppf x.ptype_params;
line i ppf "ptype_cstrs =\n";
list (i+1) core_type_x_core_type_x_location ppf x.ptype_cstrs;
line i ppf "ptype_kind =\n";
type_kind (i+1) ppf x.ptype_kind;
line i ppf "ptype_private = %a\n" fmt_private_flag x.ptype_private;
line i ppf "ptype_manifest =\n";
option (i+1) core_type ppf x.ptype_manifest
and attribute i ppf k a =
line i ppf "%s \"%s\"\n" k a.attr_name.txt;
payload i ppf a.attr_payload;
and attributes i ppf l =
let i = i + 1 in
List.iter (fun a ->
line i ppf "attribute \"%s\"\n" a.attr_name.txt;
payload (i + 1) ppf a.attr_payload;
) l;
and payload i ppf = function
| PStr x -> structure i ppf x
| PSig x -> signature i ppf x
| PTyp x -> core_type i ppf x
| PPat (x, None) -> pattern i ppf x
| PPat (x, Some g) ->
pattern i ppf x;
line i ppf "<when>\n";
expression (i + 1) ppf g
and type_kind i ppf x =
match x with
| Ptype_abstract ->
line i ppf "Ptype_abstract\n"
| Ptype_variant l ->
line i ppf "Ptype_variant\n";
list (i+1) constructor_decl ppf l;
| Ptype_record l ->
line i ppf "Ptype_record\n";
list (i+1) label_decl ppf l;
| Ptype_record_unboxed_product l ->
line i ppf "Ptype_record_unboxed_product\n";
list (i+1) label_decl ppf l;
| Ptype_open ->
line i ppf "Ptype_open\n";
and type_extension i ppf x =
line i ppf "type_extension\n";
attributes i ppf x.ptyext_attributes;
let i = i+1 in
line i ppf "ptyext_path = %a\n" fmt_longident_loc x.ptyext_path;
line i ppf "ptyext_params =\n";
list (i+1) type_parameter ppf x.ptyext_params;
line i ppf "ptyext_constructors =\n";
list (i+1) extension_constructor ppf x.ptyext_constructors;
line i ppf "ptyext_private = %a\n" fmt_private_flag x.ptyext_private;
and type_exception i ppf x =
line i ppf "type_exception\n";
attributes i ppf x.ptyexn_attributes;
let i = i+1 in
line i ppf "ptyext_constructor =\n";
let i = i+1 in
extension_constructor i ppf x.ptyexn_constructor
and extension_constructor i ppf x =
line i ppf "extension_constructor %a\n" fmt_location x.pext_loc;
attributes i ppf x.pext_attributes;
let i = i + 1 in
line i ppf "pext_name = \"%s\"\n" x.pext_name.txt;
line i ppf "pext_kind =\n";
extension_constructor_kind (i + 1) ppf x.pext_kind;
and extension_constructor_kind i ppf x =
match x with
Pext_decl(v, a, r) ->
line i ppf "Pext_decl\n";
list (i+1) typevar ppf v;
constructor_arguments (i+1) ppf a;
option (i+1) core_type ppf r;
| Pext_rebind li ->
line i ppf "Pext_rebind\n";
line (i+1) ppf "%a\n" fmt_longident_loc li;
and class_type i ppf x =
line i ppf "class_type %a\n" fmt_location x.pcty_loc;
attributes i ppf x.pcty_attributes;
let i = i+1 in
match x.pcty_desc with
| Pcty_constr (li, l) ->
line i ppf "Pcty_constr %a\n" fmt_longident_loc li;
list i core_type ppf l;
| Pcty_signature (cs) ->
line i ppf "Pcty_signature\n";
class_signature i ppf cs;
| Pcty_arrow (l, co, cl) ->
line i ppf "Pcty_arrow\n";
arg_label i ppf l;
core_type i ppf co;
class_type i ppf cl;
| Pcty_extension (s, arg) ->
line i ppf "Pcty_extension \"%s\"\n" s.txt;
payload i ppf arg
| Pcty_open (o, e) ->
line i ppf "Pcty_open %a %a\n" fmt_override_flag o.popen_override
fmt_longident_loc o.popen_expr;
class_type i ppf e
and class_signature i ppf cs =
line i ppf "class_signature\n";
core_type (i+1) ppf cs.pcsig_self;
list (i+1) class_type_field ppf cs.pcsig_fields;
and class_type_field i ppf x =
line i ppf "class_type_field %a\n" fmt_location x.pctf_loc;
let i = i+1 in
attributes i ppf x.pctf_attributes;
match x.pctf_desc with
| Pctf_inherit (ct) ->
line i ppf "Pctf_inherit\n";
class_type i ppf ct;
| Pctf_val (s, mf, vf, ct) ->
line i ppf "Pctf_val \"%s\" %a %a\n" s.txt fmt_mutable_flag mf
fmt_virtual_flag vf;
core_type (i+1) ppf ct;
| Pctf_method (s, pf, vf, ct) ->
line i ppf "Pctf_method \"%s\" %a %a\n" s.txt fmt_private_flag pf
fmt_virtual_flag vf;
core_type (i+1) ppf ct;
| Pctf_constraint (ct1, ct2) ->
line i ppf "Pctf_constraint\n";
core_type (i+1) ppf ct1;
core_type (i+1) ppf ct2;
| Pctf_attribute a ->
attribute i ppf "Pctf_attribute" a
| Pctf_extension (s, arg) ->
line i ppf "Pctf_extension \"%s\"\n" s.txt;
payload i ppf arg
and class_description i ppf x =
line i ppf "class_description %a\n" fmt_location x.pci_loc;
attributes i ppf x.pci_attributes;
let i = i+1 in
line i ppf "pci_virt = %a\n" fmt_virtual_flag x.pci_virt;
line i ppf "pci_params =\n";
list (i+1) type_parameter ppf x.pci_params;
line i ppf "pci_name = %a\n" fmt_string_loc x.pci_name;
line i ppf "pci_expr =\n";
class_type (i+1) ppf x.pci_expr;
and class_type_declaration i ppf x =
line i ppf "class_type_declaration %a\n" fmt_location x.pci_loc;
attributes i ppf x.pci_attributes;
let i = i+1 in
line i ppf "pci_virt = %a\n" fmt_virtual_flag x.pci_virt;
line i ppf "pci_params =\n";
list (i+1) type_parameter ppf x.pci_params;
line i ppf "pci_name = %a\n" fmt_string_loc x.pci_name;
line i ppf "pci_expr =\n";
class_type (i+1) ppf x.pci_expr;
and class_expr i ppf x =
line i ppf "class_expr %a\n" fmt_location x.pcl_loc;
attributes i ppf x.pcl_attributes;
let i = i+1 in
match x.pcl_desc with
| Pcl_constr (li, l) ->
line i ppf "Pcl_constr %a\n" fmt_longident_loc li;
list i core_type ppf l;
| Pcl_structure (cs) ->
line i ppf "Pcl_structure\n";
class_structure i ppf cs;
| Pcl_fun (l, eo, p, e) ->
line i ppf "Pcl_fun\n";
arg_label i ppf l;
option i expression ppf eo;
pattern i ppf p;
class_expr i ppf e;
| Pcl_apply (ce, l) ->
line i ppf "Pcl_apply\n";
class_expr i ppf ce;
list i label_x_expression ppf l;
| Pcl_let (rf, l, ce) ->
line i ppf "Pcl_let %a\n" fmt_rec_flag rf;
list i value_binding ppf l;
class_expr i ppf ce;
| Pcl_constraint (ce, ct) ->
line i ppf "Pcl_constraint\n";
class_expr i ppf ce;
class_type i ppf ct;
| Pcl_extension (s, arg) ->
line i ppf "Pcl_extension \"%s\"\n" s.txt;
payload i ppf arg
| Pcl_open (o, e) ->
line i ppf "Pcl_open %a %a\n" fmt_override_flag o.popen_override
fmt_longident_loc o.popen_expr;
class_expr i ppf e
and class_structure i ppf { pcstr_self = p; pcstr_fields = l } =
line i ppf "class_structure\n";
pattern (i+1) ppf p;
list (i+1) class_field ppf l;
and class_field i ppf x =
line i ppf "class_field %a\n" fmt_location x.pcf_loc;
let i = i + 1 in
attributes i ppf x.pcf_attributes;
match x.pcf_desc with
| Pcf_inherit (ovf, ce, so) ->
line i ppf "Pcf_inherit %a\n" fmt_override_flag ovf;
class_expr (i+1) ppf ce;
option (i+1) string_loc ppf so;
| Pcf_val (s, mf, k) ->
line i ppf "Pcf_val %a\n" fmt_mutable_flag mf;
line (i+1) ppf "%a\n" fmt_string_loc s;
class_field_kind (i+1) ppf k
| Pcf_method (s, pf, k) ->
line i ppf "Pcf_method %a\n" fmt_private_flag pf;
line (i+1) ppf "%a\n" fmt_string_loc s;
class_field_kind (i+1) ppf k
| Pcf_constraint (ct1, ct2) ->
line i ppf "Pcf_constraint\n";
core_type (i+1) ppf ct1;
core_type (i+1) ppf ct2;
| Pcf_initializer (e) ->
line i ppf "Pcf_initializer\n";
expression (i+1) ppf e;
| Pcf_attribute a ->
attribute i ppf "Pcf_attribute" a
| Pcf_extension (s, arg) ->
line i ppf "Pcf_extension \"%s\"\n" s.txt;
payload i ppf arg
and class_field_kind i ppf = function
| Cfk_concrete (o, e) ->
line i ppf "Concrete %a\n" fmt_override_flag o;
expression i ppf e
| Cfk_virtual t ->
line i ppf "Virtual\n";
core_type i ppf t
and class_declaration i ppf x =
line i ppf "class_declaration %a\n" fmt_location x.pci_loc;
attributes i ppf x.pci_attributes;
let i = i+1 in
line i ppf "pci_virt = %a\n" fmt_virtual_flag x.pci_virt;
line i ppf "pci_params =\n";
list (i+1) type_parameter ppf x.pci_params;
line i ppf "pci_name = %a\n" fmt_string_loc x.pci_name;
line i ppf "pci_expr =\n";
class_expr (i+1) ppf x.pci_expr;
and module_type i ppf x =
line i ppf "module_type %a\n" fmt_location x.pmty_loc;
attributes i ppf x.pmty_attributes;
let i = i+1 in
(* Print raw AST, without interpreting extensions *)
match x.pmty_desc with
| Pmty_ident li -> line i ppf "Pmty_ident %a\n" fmt_longident_loc li;
| Pmty_alias li -> line i ppf "Pmty_alias %a\n" fmt_longident_loc li;
| Pmty_signature (s) ->
line i ppf "Pmty_signature\n";
signature i ppf s;
| Pmty_functor (Unit, mt2, mm2) ->
line i ppf "Pmty_functor ()\n";
module_type i ppf mt2;
modes i ppf mm2
| Pmty_functor (Named (s, mt1, mm1), mt2, mm2) ->
line i ppf "Pmty_functor %a\n" fmt_str_opt_loc s;
module_type i ppf mt1;
modes i ppf mm1;
module_type i ppf mt2;
modes i ppf mm2
| Pmty_with (mt, l) ->
line i ppf "Pmty_with\n";
module_type i ppf mt;
list i with_constraint ppf l;
| Pmty_typeof m ->
line i ppf "Pmty_typeof\n";
module_expr i ppf m;
| Pmty_extension (s, arg) ->
line i ppf "Pmod_extension \"%s\"\n" s.txt;
payload i ppf arg
| Pmty_strengthen (m, lid) ->
line i ppf "Pmty_strengthen %a\n" fmt_longident lid.txt;
module_type i ppf m
and signature i ppf {psg_items; psg_modalities} =
modalities i ppf psg_modalities;
list i signature_item ppf psg_items
and signature_item i ppf x =
line i ppf "signature_item %a\n" fmt_location x.psig_loc;
let i = i+1 in
match x.psig_desc with
| Psig_value vd ->
line i ppf "Psig_value\n";
value_description i ppf vd;
| Psig_type (rf, l) ->
line i ppf "Psig_type %a\n" fmt_rec_flag rf;
list i type_declaration ppf l;
| Psig_typesubst l ->
line i ppf "Psig_typesubst\n";
list i type_declaration ppf l;
| Psig_typext te ->
line i ppf "Psig_typext\n";
type_extension i ppf te
| Psig_exception te ->
line i ppf "Psig_exception\n";
type_exception i ppf te
| Psig_module pmd ->
line i ppf "Psig_module %a\n" fmt_str_opt_loc pmd.pmd_name;
attributes i ppf pmd.pmd_attributes;
module_type i ppf pmd.pmd_type;
modalities i ppf pmd.pmd_modalities
| Psig_modsubst pms ->
line i ppf "Psig_modsubst %a = %a\n"
fmt_string_loc pms.pms_name
fmt_longident_loc pms.pms_manifest;
attributes i ppf pms.pms_attributes;
| Psig_recmodule decls ->
line i ppf "Psig_recmodule\n";
list i module_declaration ppf decls;
| Psig_modtype x ->
line i ppf "Psig_modtype %a\n" fmt_string_loc x.pmtd_name;
attributes i ppf x.pmtd_attributes;
modtype_declaration i ppf x.pmtd_type
| Psig_modtypesubst x ->
line i ppf "Psig_modtypesubst %a\n" fmt_string_loc x.pmtd_name;
attributes i ppf x.pmtd_attributes;
modtype_declaration i ppf x.pmtd_type
| Psig_open od ->
line i ppf "Psig_open %a %a\n" fmt_override_flag od.popen_override
fmt_longident_loc od.popen_expr;
attributes i ppf od.popen_attributes
| Psig_include (incl, m) ->
line i ppf "Psig_include\n";
include_kind i ppf incl.pincl_kind;
module_type i ppf incl.pincl_mod;
modalities i ppf m;
attributes i ppf incl.pincl_attributes
| Psig_class (l) ->
line i ppf "Psig_class\n";
list i class_description ppf l;
| Psig_class_type (l) ->
line i ppf "Psig_class_type\n";
list i class_type_declaration ppf l;
| Psig_extension ((s, arg), attrs) ->
line i ppf "Psig_extension \"%s\"\n" s.txt;
attributes i ppf attrs;
payload i ppf arg
| Psig_attribute a ->
attribute i ppf "Psig_attribute" a
| Psig_kind_abbrev (name, jkind) ->
line i ppf "Psig_kind_abbrev \"%s\"\n" name.txt;
jkind_annotation i ppf jkind
and modtype_declaration i ppf = function
| None -> line i ppf "#abstract"
| Some mt -> module_type (i+1) ppf mt
and with_constraint i ppf x =
match x with
| Pwith_type (lid, td) ->
line i ppf "Pwith_type %a\n" fmt_longident_loc lid;
type_declaration (i+1) ppf td;
| Pwith_typesubst (lid, td) ->
line i ppf "Pwith_typesubst %a\n" fmt_longident_loc lid;
type_declaration (i+1) ppf td;
| Pwith_module (lid1, lid2) ->
line i ppf "Pwith_module %a = %a\n"
fmt_longident_loc lid1
fmt_longident_loc lid2;
| Pwith_modsubst (lid1, lid2) ->
line i ppf "Pwith_modsubst %a = %a\n"
fmt_longident_loc lid1
fmt_longident_loc lid2;
| Pwith_modtype (lid1, mty) ->
line i ppf "Pwith_modtype %a\n"
fmt_longident_loc lid1;
module_type (i+1) ppf mty
| Pwith_modtypesubst (lid1, mty) ->
line i ppf "Pwith_modtypesubst %a\n"
fmt_longident_loc lid1;
module_type (i+1) ppf mty
and module_expr i ppf x =
line i ppf "module_expr %a\n" fmt_location x.pmod_loc;
attributes i ppf x.pmod_attributes;
let i = i+1 in
match x.pmod_desc with
| Pmod_ident (li) -> line i ppf "Pmod_ident %a\n" fmt_longident_loc li;
| Pmod_structure (s) ->
line i ppf "Pmod_structure\n";
structure i ppf s;
| Pmod_functor (Unit, me) ->
line i ppf "Pmod_functor ()\n";
module_expr i ppf me;
| Pmod_functor (Named (s, mt, mm), me) ->
line i ppf "Pmod_functor %a\n" fmt_str_opt_loc s;
module_type i ppf mt;
modes i ppf mm;
module_expr i ppf me;
| Pmod_apply (me1, me2) ->
line i ppf "Pmod_apply\n";
module_expr i ppf me1;
module_expr i ppf me2;
| Pmod_apply_unit me1 ->
line i ppf "Pmod_apply_unit\n";
module_expr i ppf me1
| Pmod_constraint (me, mt, mm) ->
line i ppf "Pmod_constraint\n";
module_expr i ppf me;
Option.iter (module_type i ppf) mt;
modes i ppf mm
| Pmod_unpack (e) ->
line i ppf "Pmod_unpack\n";
expression i ppf e;
| Pmod_extension (s, arg) ->
line i ppf "Pmod_extension \"%s\"\n" s.txt;
payload i ppf arg
| Pmod_instance instance ->
line i ppf "Pmod_instance\n";
module_instance i ppf instance
and module_instance i ppf { pmod_instance_head; pmod_instance_args } =
line i ppf "head=%s\n" pmod_instance_head;
list i (fun i ppf (name, arg) ->
line i ppf "name=%s\n" name;