-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathbuiltin_attributes.ml
1113 lines (999 loc) · 35.9 KB
/
builtin_attributes.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 *)
(* *)
(* Alain Frisch, LexiFi *)
(* *)
(* Copyright 2012 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 Parsetree
open Ast_helper
module Attribute_table = Hashtbl.Make (struct
type t = string with_loc
let hash : t -> int = Hashtbl.hash
let equal : t -> t -> bool = (=)
end)
let unused_attrs = Attribute_table.create 128
let mark_used t = Attribute_table.remove unused_attrs t
(* [attr_order] is used to issue unused attribute warnings in the order the
attributes occur in the file rather than the random order of the hash table
*)
let attr_order a1 a2 = Location.compare a1.loc a2.loc
let compiler_stops_before_attributes_consumed () =
let stops_before_lambda =
match !Clflags.stop_after with
| None -> false
| Some pass -> Clflags.Compiler_pass.(compare pass Lambda) < 0
in
stops_before_lambda || !Clflags.print_types
let unchecked_zero_alloc_attributes = Attribute_table.create 1
let mark_zero_alloc_attribute_checked txt loc =
Attribute_table.remove unchecked_zero_alloc_attributes { txt; loc }
let register_zero_alloc_attribute attr =
Attribute_table.replace unchecked_zero_alloc_attributes attr ()
let warn_unchecked_zero_alloc_attribute () =
(* When using -i, attributes will not have been translated, so we can't
warn about missing ones. *)
if !Clflags.print_types then ()
else
let keys = List.of_seq (Attribute_table.to_seq_keys unchecked_zero_alloc_attributes) in
let keys = List.sort attr_order keys in
List.iter (fun sloc ->
Location.prerr_warning sloc.loc (Warnings.Unchecked_zero_alloc_attribute))
keys
let warn_unused () =
let keys = List.of_seq (Attribute_table.to_seq_keys unused_attrs) in
Attribute_table.clear unused_attrs;
if not (compiler_stops_before_attributes_consumed ()) then
let keys = List.sort attr_order keys in
List.iter (fun sloc ->
Location.prerr_warning sloc.loc (Warnings.Misplaced_attribute sloc.txt))
keys
(* These are the attributes that are tracked in the builtin_attrs table for
misplaced attribute warnings. *)
let builtin_attrs =
[ "inline"
; "inlined"
; "specialise"
; "specialised"
; "tailcall"
; "unrolled"
; "error"
; "alert"
; "deprecated"
; "deprecated_mutable"
; "warning"
; "warnerror"
; "ppwarning"
; "explicit_arity"
; "warn_on_literal_pattern"
; "immediate"
; "immediate64"
; "boxed"
; "unboxed"
; "principal"
; "noprincipal"
; "nolabels"
; "flambda_oclassic"
; "flambda_o3"
; "afl_inst_ratio"
; "local_opt"
; "curry"; "extension.curry"
(* [local] and [global] are never used and always trigger warning 53 *)
; "global"; "extension.global"
; "local"; "extension.local"
; "nontail"; "extension.nontail"
; "tail"; "extension.tail"
; "noalloc"
; "zero_alloc"
; "untagged"
; "poll"
; "loop"
; "tail_mod_cons"
; "unaliasable"
; "builtin"
; "no_effects"
; "no_coeffects"
; "only_generative_effects"
; "error_message"
; "layout_poly"
; "no_mutable_implied_modalities"
; "or_null_reexport"
; "no_recursive_modalities"
; "jane.non_erasable.instances"
]
let builtin_attrs =
let tbl = Hashtbl.create 128 in
List.iter (fun attr -> Hashtbl.add tbl attr ()) builtin_attrs;
tbl
let drop_ocaml_attr_prefix s =
let len = String.length s in
if String.starts_with ~prefix:"ocaml." s && len > 6 then
String.sub s 6 (len - 6)
else
s
let is_builtin_attr s = Hashtbl.mem builtin_attrs (drop_ocaml_attr_prefix s)
type current_phase = Parser | Invariant_check
let register_attr current_phase name =
match current_phase with
| Parser when !Clflags.all_ppx <> [] -> ()
| Parser | Invariant_check ->
if is_builtin_attr name.txt then
Attribute_table.replace unused_attrs name ()
let ident_of_payload = function
| PStr[{pstr_desc=Pstr_eval({pexp_desc=Pexp_ident {txt=Lident id}},_)}] ->
Some id
| _ -> None
let string_of_cst = function
| Pconst_string(s, _, _) -> Some s
| _ -> None
let int_of_cst = function
| Pconst_integer(i, None) -> Some (int_of_string i)
| _ -> None
let string_of_payload = function
| PStr[{pstr_desc=Pstr_eval({pexp_desc=Pexp_constant c},_)}] ->
string_of_cst c
| _ -> None
let int_of_payload = function
| PStr[{pstr_desc=Pstr_eval({pexp_desc=Pexp_constant c},_)}] ->
int_of_cst c
| _ -> None
let string_of_opt_payload p =
match string_of_payload p with
| Some s -> s
| None -> ""
let error_of_extension ext =
let submessage_from main_loc main_txt = function
| {pstr_desc=Pstr_extension
(({txt = ("ocaml.error"|"error"); loc}, p), _)} ->
begin match p with
| PStr([{pstr_desc=Pstr_eval
({pexp_desc=Pexp_constant(Pconst_string(msg,_,_))}, _)}
]) ->
{ Location.loc; txt = fun ppf -> Format.pp_print_text ppf msg }
| _ ->
{ Location.loc; txt = fun ppf ->
Format.fprintf ppf
"Invalid syntax for sub-message of extension '%s'." main_txt }
end
| {pstr_desc=Pstr_extension (({txt; loc}, _), _)} ->
{ Location.loc; txt = fun ppf ->
Format.fprintf ppf "Uninterpreted extension '%s'." txt }
| _ ->
{ Location.loc = main_loc; txt = fun ppf ->
Format.fprintf ppf
"Invalid syntax for sub-message of extension '%s'." main_txt }
in
match ext with
| ({txt = ("ocaml.error"|"error") as txt; loc}, p) ->
begin match p with
| PStr [] -> raise Location.Already_displayed_error
| PStr({pstr_desc=Pstr_eval
({pexp_desc=Pexp_constant(Pconst_string(msg,_,_))}, _)}::
inner) ->
let sub = List.map (submessage_from loc txt) inner in
Location.error_of_printer ~loc ~sub Format.pp_print_text msg
| _ ->
Location.errorf ~loc "Invalid syntax for extension '%s'." txt
end
| ({txt = "call_pos"; loc}, _) ->
Location.errorf ~loc "[%%call_pos] can only exist as the type of a labelled argument"
| ({txt; loc}, _) ->
Location.errorf ~loc "Uninterpreted extension '%s'." txt
let attr_equals_builtin {attr_name = {txt; _}; _} s =
(* Check for attribute s or ocaml.s. Avoid allocating a fresh string. *)
txt = s ||
( String.length txt = 6 + String.length s
&& String.starts_with ~prefix:"ocaml." txt
&& String.ends_with ~suffix:s txt)
let mark_alert_used a =
if attr_equals_builtin a "deprecated" || attr_equals_builtin a "alert"
then mark_used a.attr_name
let mark_alerts_used l = List.iter mark_alert_used l
let mark_warn_on_literal_pattern_used l =
List.iter (fun a ->
if attr_equals_builtin a "warn_on_literal_pattern"
then mark_used a.attr_name)
l
let mark_deprecated_mutable_used l =
List.iter (fun a ->
if attr_equals_builtin a "deprecated_mutable"
then mark_used a.attr_name)
l
let mark_payload_attrs_used payload =
let iter =
{ Ast_iterator.default_iterator
with attribute = fun self a ->
mark_used a.attr_name;
Ast_iterator.default_iterator.attribute self a
}
in
iter.payload iter payload
let kind_and_message = function
| PStr[
{pstr_desc=
Pstr_eval
({pexp_desc=Pexp_apply
({pexp_desc=Pexp_ident{txt=Longident.Lident id}},
[Nolabel,{pexp_desc=Pexp_constant (Pconst_string(s,_,_))}])
},_)}] ->
Some (id, s)
| PStr[
{pstr_desc=
Pstr_eval
({pexp_desc=Pexp_ident{txt=Longident.Lident id}},_)}] ->
Some (id, "")
| _ -> None
let cat s1 s2 =
if s2 = "" then s1 else s1 ^ "\n" ^ s2
let alert_attr x =
if attr_equals_builtin x "deprecated" then
Some (x, "deprecated", string_of_opt_payload x.attr_payload)
else if attr_equals_builtin x "alert" then
begin match kind_and_message x.attr_payload with
| Some (kind, message) -> Some (x, kind, message)
| None -> None (* note: bad payloads detected by warning_attribute *)
end
else None
let alert_attrs l =
List.filter_map alert_attr l
let alerts_of_attrs l =
List.fold_left
(fun acc (_, kind, message) ->
let upd = function
| None | Some "" -> Some message
| Some s -> Some (cat s message)
in
Misc.Stdlib.String.Map.update kind upd acc
)
Misc.Stdlib.String.Map.empty
(alert_attrs l)
let check_alerts loc attrs s =
Misc.Stdlib.String.Map.iter
(fun kind message -> Location.alert loc ~kind (cat s message))
(alerts_of_attrs attrs)
let check_alerts_inclusion ~def ~use loc attrs1 attrs2 s =
let m2 = alerts_of_attrs attrs2 in
Misc.Stdlib.String.Map.iter
(fun kind msg ->
if not (Misc.Stdlib.String.Map.mem kind m2) then
Location.alert ~def ~use ~kind loc (cat s msg)
)
(alerts_of_attrs attrs1)
let rec deprecated_mutable_of_attrs = function
| [] -> None
| attr :: _ when attr_equals_builtin attr "deprecated_mutable" ->
Some (string_of_opt_payload attr.attr_payload)
| _ :: tl -> deprecated_mutable_of_attrs tl
let check_deprecated_mutable loc attrs s =
match deprecated_mutable_of_attrs attrs with
| None -> ()
| Some txt ->
Location.deprecated loc (Printf.sprintf "mutating field %s" (cat s txt))
let check_deprecated_mutable_inclusion ~def ~use loc attrs1 attrs2 s =
match deprecated_mutable_of_attrs attrs1,
deprecated_mutable_of_attrs attrs2
with
| None, _ | Some _, Some _ -> ()
| Some txt, None ->
Location.deprecated ~def ~use loc
(Printf.sprintf "mutating field %s" (cat s txt))
let rec attrs_of_sig_items = function
| {psig_desc = Psig_attribute a} :: tl ->
a :: attrs_of_sig_items tl
| _ ->
[]
let alerts_of_sig ~mark {psg_items; _} =
let a = attrs_of_sig_items psg_items in
if mark then mark_alerts_used a;
alerts_of_attrs a
let rec attrs_of_str = function
| {pstr_desc = Pstr_attribute a} :: tl ->
a :: attrs_of_str tl
| _ ->
[]
let alerts_of_str ~mark str =
let a = attrs_of_str str in
if mark then mark_alerts_used a;
alerts_of_attrs a
let warn_payload loc txt msg =
Location.prerr_warning loc (Warnings.Attribute_payload (txt, msg))
let warning_attribute ?(ppwarning = true) =
let process loc name errflag payload =
mark_used name;
match string_of_payload payload with
| Some s ->
begin try
Option.iter (Location.prerr_alert loc)
(Warnings.parse_options errflag s)
with Arg.Bad msg -> warn_payload loc name.txt msg
end
| None ->
warn_payload loc name.txt "A single string literal is expected"
in
let process_alert loc name = function
| PStr[{pstr_desc=
Pstr_eval(
{pexp_desc=Pexp_constant(Pconst_string(s,_,_))},
_)
}] ->
begin
mark_used name;
try Warnings.parse_alert_option s
with Arg.Bad msg -> warn_payload loc name.txt msg
end
| k ->
match kind_and_message k with
| Some ("all", _) ->
warn_payload loc name.txt "The alert name 'all' is reserved"
| Some _ ->
(* Do [mark_used] in the [Some] case only if Warning 53 is
disabled. Later, they will be marked used (provided they are in a
valid place) in [compile_common], when they are extracted to be
persisted inside the [.cmi] file. *)
if not (Warnings.is_active (Misplaced_attribute ""))
then mark_used name
| None -> begin
(* Do [mark_used] in the [None] case, which is just malformed and
covered by the "Invalid payload" warning. *)
mark_used name;
warn_payload loc name.txt "Invalid payload"
end
in
fun ({attr_name; attr_loc; attr_payload} as attr) ->
if attr_equals_builtin attr "warning" then
process attr_loc attr_name false attr_payload
else if attr_equals_builtin attr "warnerror" then
process attr_loc attr_name true attr_payload
else if attr_equals_builtin attr "alert" then
process_alert attr_loc attr_name attr_payload
else if ppwarning && attr_equals_builtin attr "ppwarning" then
begin match attr_payload with
| PStr [{ pstr_desc=
Pstr_eval({pexp_desc=Pexp_constant
(Pconst_string (s, _, _))},_);
pstr_loc }] ->
(mark_used attr_name;
Location.prerr_warning pstr_loc (Warnings.Preprocessor s))
| _ ->
(mark_used attr_name;
warn_payload attr_loc attr_name.txt
"A single string literal is expected")
end
let warning_scope ?ppwarning attrs f =
let prev = Warnings.backup () in
try
List.iter (warning_attribute ?ppwarning) (List.rev attrs);
let ret = f () in
Warnings.restore prev;
ret
with exn ->
Warnings.restore prev;
raise exn
let has_attribute nm attrs =
List.exists
(fun a ->
if attr_equals_builtin a nm
then (mark_used a.attr_name; true)
else false)
attrs
type attr_action = Mark_used_only | Return
let select_attributes actions attrs =
List.filter (fun a ->
List.exists (fun (nm, action) ->
attr_equals_builtin a nm &&
begin
mark_used a.attr_name;
action = Return
end)
actions
) attrs
let select_attribute p attributes =
let attributes = select_attributes p attributes in
let attr =
match attributes with
| [] -> None
| [attr] -> Some attr
| attr :: {Parsetree.attr_name = {txt;loc}; _} :: _ ->
Location.prerr_warning loc (Warnings.Duplicated_attribute txt);
Some attr
in
attr
let when_attribute_is nms attr ~f =
if List.mem attr.attr_name.txt nms then begin
mark_used attr.attr_name;
f ()
end
type jkind_attribute =
| Immediate64
| Immediate
let jkind_attribute_of_string = function
| "ocaml.immediate64" | "immediate64" -> Some Immediate64
| "ocaml.immediate" | "immediate" -> Some Immediate
| _ -> None
let jkind_attribute_to_string = function
| Immediate64 -> "immediate64"
| Immediate -> "immediate"
let jkind attrs =
let jkind =
List.find_map
(fun a ->
match jkind_attribute_of_string a.attr_name.txt with
| Some attr -> Some (a, attr)
| None -> None
) attrs
in
match jkind with
| None -> None
| Some (a, l) ->
mark_used a.attr_name;
Some (Location.mkloc l a.attr_loc)
let warn_on_literal_pattern attrs =
has_attribute "warn_on_literal_pattern" attrs
let explicit_arity attrs = has_attribute "explicit_arity" attrs
(* The "ocaml.boxed (default)" and "ocaml.unboxed (default)"
attributes cannot be input by the user, they are added by the
compiler when applying the default setting. This is done to record
in the .cmi the default used by the compiler when compiling the
source file because the default can change between compiler
invocations. *)
let has_unboxed attrs = has_attribute "unboxed" attrs
let has_boxed attrs = has_attribute "boxed" attrs
let has_unsafe_allow_any_mode_crossing attrs =
has_attribute "unsafe_allow_any_mode_crossing" attrs
let parse_empty_payload attr =
match attr.attr_payload with
| PStr [] -> Some ()
| _ ->
warn_payload attr.attr_loc attr.attr_name.txt
"No attribute payload was expected";
None
let parse_int_payload attr =
match int_of_payload attr.attr_payload with
| Some i -> Some i
| None ->
warn_payload attr.attr_loc attr.attr_name.txt
"A constant payload of type int was expected";
None
let parse_ident_payload attr =
match ident_of_payload attr.attr_payload with
| Some i -> Some i
| None ->
warn_payload attr.attr_loc attr.attr_name.txt
"A constant payload of type ident was expected";
None
let clflags_attribute_without_payload attr ~name clflags_ref =
when_attribute_is [name; "ocaml." ^ name] attr ~f:(fun () ->
match parse_empty_payload attr with
| Some () -> clflags_ref := true
| None -> ())
let clflags_attribute_without_payload' attr ~name ~f =
when_attribute_is [name; "ocaml." ^ name] attr ~f:(fun () ->
Option.iter f (parse_empty_payload attr))
let clflags_attribute_with_int_payload attr ~name clflags_ref =
when_attribute_is [name; "ocaml." ^ name] attr ~f:(fun () ->
match parse_int_payload attr with
| Some i -> clflags_ref := i
| None -> ())
let principal_attribute attr =
clflags_attribute_without_payload attr
~name:"principal" Clflags.principal
let noprincipal_attribute attr =
clflags_attribute_without_payload' attr
~name:"noprincipal"
~f:(fun () -> Clflags.principal := false)
let nolabels_attribute attr =
clflags_attribute_without_payload attr
~name:"nolabels" Clflags.classic
let flambda_oclassic_attribute attr =
clflags_attribute_without_payload' attr
~name:"flambda_oclassic"
~f:(fun () ->
if Config.flambda || Config.flambda2 then Clflags.set_oclassic ())
let flambda_o3_attribute attr =
clflags_attribute_without_payload' attr
~name:"flambda_o3"
~f:(fun () -> if Config.flambda || Config.flambda2 then Clflags.set_o3 ())
let inline_attribute attr =
when_attribute_is ["inline"; "ocaml.inline"] attr ~f:(fun () ->
let err_msg =
"Either specify an integer, or the form accepted by '-inline' in quotes"
in
match string_of_payload attr.attr_payload with
| Some s ->
Clflags.Float_arg_helper.parse s err_msg Clflags.inline_threshold
| None ->
match int_of_payload attr.attr_payload with
| Some i ->
let s = string_of_int i in
Clflags.Float_arg_helper.parse s err_msg Clflags.inline_threshold
| None -> warn_payload attr.attr_loc attr.attr_name.txt err_msg)
let parse_attribute_with_ident_payload attr ~name ~f =
when_attribute_is [name; "ocaml." ^ name] attr ~f:(fun () ->
match parse_ident_payload attr with
| Some i -> f i
| None -> ())
let zero_alloc_attribute ~in_signature (attr : Parsetree.attribute) =
let module A = Zero_alloc_annotations in
let msg =
if in_signature then
"Only 'all' and 'all_opt' are supported"
else
"Only 'all', 'all_opt', 'check', 'check_opt', 'check_all', and 'check_none' are supported"
in
let warn () =
warn_payload attr.attr_loc attr.attr_name.txt msg
in
let set_if_not_in_sig r v =
if not in_signature then
r := v
else
warn ()
in
parse_attribute_with_ident_payload attr
~name:"zero_alloc" ~f:(function
| "check" -> set_if_not_in_sig Clflags.zero_alloc_check A.Check.Check_default
| "check_opt" -> set_if_not_in_sig Clflags.zero_alloc_check A.Check.Check_opt_only
| "check_all" -> set_if_not_in_sig Clflags.zero_alloc_check A.Check.Check_all
| "check_none" -> set_if_not_in_sig Clflags.zero_alloc_check A.Check.No_check
| "all" -> Clflags.zero_alloc_assert := A.Assert.Assert_all
| "all_opt" -> Clflags.zero_alloc_assert := A.Assert.Assert_all_opt
| _ ->
warn ())
let attribute_with_ignored_payload name attr =
when_attribute_is [name; "ocaml." ^ name] attr ~f:(fun () -> ())
let unsafe_allow_any_mode_crossing_attribute =
attribute_with_ignored_payload "unsafe_allow_any_mode_crossing"
let afl_inst_ratio_attribute attr =
clflags_attribute_with_int_payload attr
~name:"afl_inst_ratio" Clflags.afl_inst_ratio
let parse_standard_interface_attributes attr =
warning_attribute attr;
principal_attribute attr;
noprincipal_attribute attr;
nolabels_attribute attr;
zero_alloc_attribute ~in_signature:true attr;
unsafe_allow_any_mode_crossing_attribute attr
let parse_standard_implementation_attributes attr =
warning_attribute attr;
principal_attribute attr;
noprincipal_attribute attr;
nolabels_attribute attr;
inline_attribute attr;
afl_inst_ratio_attribute attr;
flambda_o3_attribute attr;
flambda_oclassic_attribute attr;
zero_alloc_attribute ~in_signature:false attr;
unsafe_allow_any_mode_crossing_attribute attr
let has_no_mutable_implied_modalities attrs =
has_attribute "no_mutable_implied_modalities" attrs
let has_local_opt attrs =
has_attribute "local_opt" attrs
let has_layout_poly attrs =
has_attribute "layout_poly" attrs
let curry_attr_name = "extension.curry"
let has_curry attrs =
has_attribute curry_attr_name attrs
|| has_attribute "curry" attrs
let has_or_null_reexport attrs =
has_attribute "or_null_reexport" attrs
let curry_attr loc =
Ast_helper.Attr.mk ~loc:Location.none (Location.mkloc curry_attr_name loc) (PStr [])
;;
let tailcall attr =
let has_nontail = has_attribute "nontail" attr in
let tail_attrs = select_attributes ["tail", Return] attr in
match has_nontail, tail_attrs with
| true, (_ :: _) -> Error `Conflict
| _, (_ :: _ :: _) -> Error `Conflict
| false, [] -> Ok None
| true, [] -> Ok (Some `Nontail)
| false, [{attr_payload = PStr []}] -> Ok (Some `Tail)
| false, [t] ->
match ident_of_payload t.attr_payload with
| Some "hint" -> Ok (Some `Tail_if_possible)
| _ ->
Location.prerr_warning t.attr_loc
(Warnings.Attribute_payload
(t.attr_name.txt, "Only 'hint' is supported"));
Ok (Some `Tail_if_possible)
let error_message_attr l =
let inner x =
match x.attr_name.txt with
| "ocaml.error_message"|"error_message" ->
begin match string_of_payload x.attr_payload with
| Some _ as r ->
mark_used x.attr_name;
r
| None -> warn_payload x.attr_loc x.attr_name.txt
"error_message attribute expects a string argument";
None
end
| _ -> None in
List.find_map inner l
type zero_alloc_check =
{ strict: bool;
opt: bool;
arity: int;
loc: Location.t;
custom_error_msg : string option;
}
type zero_alloc_assume =
{ strict: bool;
never_returns_normally: bool;
never_raises: bool;
arity: int;
loc: Location.t;
}
type zero_alloc_attribute =
| Default_zero_alloc
| Ignore_assert_all
| Check of zero_alloc_check
| Assume of zero_alloc_assume
let is_zero_alloc_check_enabled ~opt =
match !Clflags.zero_alloc_check with
| No_check -> false
| Check_all -> true
| Check_default -> not opt
| Check_opt_only -> opt
let is_zero_alloc_attribute =
[ "zero_alloc", Return ]
let get_payload get_from_exp =
let open Parsetree in
function
| PStr [{pstr_desc = Pstr_eval (exp, [])}] -> get_from_exp exp
| _ -> Result.Error ()
let get_optional_payload get_from_exp =
let open Parsetree in
function
| PStr [] -> Result.Ok None
| other -> Result.map Option.some (get_payload get_from_exp other)
let get_int_from_exp =
let open Parsetree in
function
| { pexp_desc = Pexp_constant (Pconst_integer(s, None)) } ->
begin match Misc.Int_literal_converter.int s with
| n -> Result.Ok n
| exception (Failure _) -> Result.Error ()
end
| _ -> Result.Error ()
let get_construct_from_exp =
let open Parsetree in
function
| { pexp_desc =
Pexp_construct ({ txt = Longident.Lident constr }, None) } ->
Result.Ok constr
| _ -> Result.Error ()
let get_bool_from_exp exp =
Result.bind (get_construct_from_exp exp)
(function
| "true" -> Result.Ok true
| "false" -> Result.Ok false
| _ -> Result.Error ())
let get_int_payload = get_payload get_int_from_exp
let get_optional_bool_payload = get_optional_payload get_bool_from_exp
let get_id_from_exp =
let open Parsetree in
function
| { pexp_desc = Pexp_ident { txt = Longident.Lident id } } -> Result.Ok id
| _ -> Result.Error ()
type parsed_payload =
| Ident
| Const_int
| Const_string
let get_id_or_constant_from_exp =
let open Parsetree in
function
| { pexp_desc = Pexp_ident { txt = Longident.Lident id } } -> Result.Ok (Ident, id)
| { pexp_desc = Pexp_constant (Pconst_integer (s,None)) } -> Result.Ok (Const_int, s)
| { pexp_desc = Pexp_constant (Pconst_string (s,_loc,_so)) } -> Result.Ok (Const_string, s)
| _ -> Result.Error ()
let get_ids_and_constants_from_exp exp =
let open Parsetree in
(match exp with
| { pexp_desc = Pexp_apply (exp, args) } ->
get_id_or_constant_from_exp exp ::
List.map (function
| (Asttypes.Nolabel, arg) -> get_id_or_constant_from_exp arg
| (_, _) -> Result.Error ())
args
| _ -> [get_id_or_constant_from_exp exp])
|> List.fold_left (fun acc r ->
match acc, r with
| Result.Ok ids, Ok id -> Result.Ok (id::ids)
| (Result.Error _ | Ok _), _ -> Result.Error ())
(Ok [])
|> Result.map List.rev
let parse_optional_id_payload txt loc ~empty cases payload =
let[@local] warn () =
let ( %> ) f g x = g (f x) in
let msg =
cases
|> List.map (fst %> Printf.sprintf "'%s'")
|> String.concat ", "
|> Printf.sprintf "It must be either %s or empty"
in
Location.prerr_warning loc (Warnings.Attribute_payload (txt, msg));
Error ()
in
match get_optional_payload get_id_from_exp payload with
| Error () -> warn ()
| Ok None -> Ok empty
| Ok (Some id) ->
match List.assoc_opt id cases with
| Some r -> Ok r
| None -> warn ()
(* Looks for `custom_error_message msg` in payload.
If present, this returns `msg` and an updated payload
with `customer_error_message msg` removed.
Preserves the order of the payload. *)
let filter_custom_error_message payload =
let rec find_msg acc payload =
match payload with
| [] | [_] -> None
| (Ident, "custom_error_message")::(Const_string, msg)::payload ->
Some (msg, (List.rev acc) @ payload)
| s1::payload -> find_msg (s1 :: acc) payload
in
find_msg [] payload
(* Looks for `arity n` in payload. If present, this returns `n` and an updated
payload with `arity n` removed. Note it may change the order of the payload,
which is fine because we sort it later. *)
let filter_arity payload =
let rec find_arity acc payload =
match payload with
| [] | [_] -> None
| (Ident, "arity") as s1 :: ((Const_int, n) :: payload) as payload' ->
(match int_of_string_opt n with
| Some n -> Some (n, acc @ payload)
| None -> find_arity (s1 :: acc) payload')
| s1::payload' -> find_arity (s1 :: acc) payload'
in
find_arity [] payload
(* If "assume_unless_opt" is not found returns None, otherwise
returns the rest of the payload. Note it may change the order of the payload,
which is fine because we sort it later. *)
let filter_assume_unless_opt payload =
let rec find acc payload =
match payload with
| [] -> None
| "assume_unless_opt"::tl -> Some (acc @ tl)
| hd::tl -> find (hd::acc) tl
in
find [] payload
let zero_alloc_lookup_table =
(* These are the possible payloads (sans arity) paired with a function that
returns the corresponding check_attribute, given the arity and the loc. *)
[
(["assume"],
fun arity loc _ ->
Assume { strict = false; never_returns_normally = false;
never_raises = false;
arity; loc; });
(["assume_unless_opt"],
fun arity loc _ ->
(* same as "assume" *)
Assume { strict = false; never_returns_normally = false;
never_raises = false;
arity; loc; });
(["strict"],
fun arity loc custom_error_msg ->
Check { strict = true; opt = false; arity; loc; custom_error_msg; });
(["opt"],
fun arity loc custom_error_msg ->
Check { strict = false; opt = true; arity; loc; custom_error_msg; });
(["opt"; "strict"; ],
fun arity loc custom_error_msg ->
Check { strict = true; opt = true; arity; loc; custom_error_msg; });
(["assume"; "strict"],
fun arity loc _ ->
Assume { strict = true; never_returns_normally = false;
never_raises = false;
arity; loc; });
(["assume"; "never_returns_normally"],
fun arity loc _ ->
Assume { strict = false; never_returns_normally = true;
never_raises = false;
arity; loc; });
(["assume"; "never_returns_normally"; "strict"],
fun arity loc _ ->
Assume { strict = true; never_returns_normally = true;
never_raises = false;
arity; loc; });
(["assume"; "error"],
fun arity loc _ ->
Assume { strict = true; never_returns_normally = true;
never_raises = true;
arity; loc; });
(["ignore"], fun _ _ _ -> Ignore_assert_all)
]
let parse_zero_alloc_payload ~loc ~arity ~custom_error_message
~warn ~empty payload =
(* This parses the remainder of the payload after arity has been parsed
out. *)
match payload with
| [] -> empty
| _ :: _ ->
let payload = List.sort String.compare payload in
match List.assoc_opt payload zero_alloc_lookup_table with
| None -> warn (); Default_zero_alloc
| Some ca -> ca arity loc custom_error_message
let parse_zero_alloc_attribute ~in_signature ~on_application ~default_arity attr =
match attr with
| None -> Default_zero_alloc
| Some {Parsetree.attr_name = {txt; loc}; attr_payload = payload} ->
let warn () =
let ( %> ) f g x = g (f x) in
let msg =
let custom_payloads =
let fail _ _ _ = assert false in
[
(["arity <int_constant>"], fail);
(["custom_error_message <string_constant>"], fail)
]
in
(zero_alloc_lookup_table@custom_payloads)
|> List.map (fst %> String.concat " " %> Printf.sprintf "'%s'")
|> String.concat ", "
|> Printf.sprintf "It must be either %s or empty"
in
Location.prerr_warning loc (Warnings.Attribute_payload (txt, msg))
in
let empty arity custom_error_msg =
Check { strict = false; opt = false; arity; loc; custom_error_msg; }
in
match get_optional_payload get_ids_and_constants_from_exp payload with
| Error () -> warn (); Default_zero_alloc
| Ok None -> empty default_arity None
| Ok (Some payload) ->
let custom_error_message, payload =
match filter_custom_error_message payload with
| None -> None, payload
| Some (custom_error_message, payload) ->
let is_assume = function
| (Ident, ("assume" | "assume_unless_opt")) -> true
| _ -> false
in
if List.exists is_assume payload then
(warn_payload loc txt
"The \"custom_error_message\" payload is not supported with \"assume\".";
None, payload)
else
Some custom_error_message, payload
in
let arity, payload =
match filter_arity payload with
| None -> default_arity, payload
| Some (user_arity, payload) ->
if in_signature then
user_arity, payload
else
(warn_payload loc txt
"The \"arity\" field is only supported on \"zero_alloc\" in \
signatures";
default_arity, payload)
in
let _, payload = List.split payload in
let parse p =
let empty = empty arity custom_error_message in
parse_zero_alloc_payload ~loc ~arity ~custom_error_message ~warn ~empty p
in
match filter_assume_unless_opt payload with
| None -> parse payload
| Some rest ->
if in_signature then
(warn_payload loc txt