Newer
Older
(**************************************************************************)
(* *)
(* This file is part of WP plug-in of Frama-C. *)
(* *)
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
(* CEA (Commissariat a l'energie atomique et aux energies *)
(* alternatives) *)
(* *)
(* you can redistribute it and/or modify it under the terms of the GNU *)
(* Lesser General Public License as published by the Free Software *)
(* Foundation, version 2.1. *)
(* *)
(* It is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *)
(* GNU Lesser General Public License for more details. *)
(* *)
(* See the GNU Lesser General Public License version 2.1 *)
(* for more details (enclosed in the file licenses/LGPLv2.1). *)
(* *)
(**************************************************************************)
module Fc_config = Config
module STRING = String
let () = Plugin.is_share_visible ()
let () = Plugin.is_session_visible ()
include Plugin.Register
(struct
let name = "WP"
let shortname = "wp"
let help = "Proof by Weakest Precondition Calculus"
end)
(* localize all warnings inside WP *)
let warning ?wkey ?current = match current with
| None -> warning ?wkey ~current:true
| Some b -> warning ?wkey ~current:b
let resetdemon = ref []
let on_reset f = resetdemon := f :: !resetdemon
let reset () = List.iter (fun f -> f ()) !resetdemon
let has_dkey (k:category) = is_debug_key_enabled k
(* ------------------------------------------------------------------------ *)
(* --- WP Generation --- *)
(* ------------------------------------------------------------------------ *)
let wp_generation = add_group "Goal Selection"
let () = Parameter_customize.set_group wp_generation
let () = Parameter_customize.do_not_save ()
module WP =
Action(struct
let option_name = "-wp"
let help = "Generate proof obligations for all (selected) properties."
end)
let () = on_reset WP.clear
let () = Parameter_customize.set_group wp_generation
let () = Parameter_customize.do_not_save ()
module Functions =
Kernel_function_set
(struct
let option_name = "-wp-fct"
let arg_name = "f,..."
let help = "Select properties of given functions (defaults to all functions)."
end)
let () = on_reset Functions.clear
let () = Parameter_customize.set_group wp_generation
let () = Parameter_customize.do_not_save ()
module SkipFunctions =
Kernel_function_set
(struct
let option_name = "-wp-skip-fct"
let arg_name = "f,..."
let help = "Skip the specified functions (defaults to none)."
end)
let () = on_reset SkipFunctions.clear
let () = Parameter_customize.set_group wp_generation
let () = Parameter_customize.do_not_save ()
module Behaviors =
String_list
(struct
let option_name = "-wp-bhv"
let arg_name = "b,..."
let help = "Select properties of the given behaviors (defaults to all behaviors) of the selected functions."
end)
let () = on_reset Behaviors.clear
let () = Parameter_customize.set_group wp_generation
let () = Parameter_customize.do_not_save ()
let () = Parameter_customize.no_category ()
module Properties =
String_list
(struct
let option_name = "-wp-prop"
let arg_name = "p,..."
let help = "Select properties having the one of the given tagnames (defaults to all properties).\n\
You may also replace the tagname by '@category' for the selection of all properties of the given category.\n\
Accepted categories are: lemmas, requires, assigns, ensures, exits, complete_behaviors, disjoint_behaviors, assert, check, invariant, variant, breaks, continues, returns.\n\
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
Starts by a minus character to remove properties from the selection."
end)
let () = on_reset Properties.clear
type job =
| WP_None
| WP_All
| WP_SkipFct of Cil_datatype.Kf.Set.t
| WP_Fct of Cil_datatype.Kf.Set.t
let job () =
if WP.get () || not (Functions.is_empty()) ||
not (Behaviors.is_empty()) || not (Properties.is_empty())
then
if Functions.is_empty() then
if SkipFunctions.is_empty () then WP_All
else WP_SkipFct (SkipFunctions.get())
else
WP_Fct (Cil_datatype.Kf.Set.diff (Functions.get()) (SkipFunctions.get()))
else WP_None
let () = Parameter_customize.set_group wp_generation
module StatusAll =
False(struct
let option_name = "-wp-status-all"
let help = "Select properties with any status."
end)
let () = Parameter_customize.set_group wp_generation
module StatusTrue =
False(struct
let option_name = "-wp-status-valid"
let help = "Select properties with status 'Valid'."
end)
let () = Parameter_customize.set_group wp_generation
module StatusFalse =
False(struct
let option_name = "-wp-status-invalid"
let help = "Select properties with status 'Invalid'."
end)
let () = Parameter_customize.set_group wp_generation
module StatusMaybe =
True(struct
let option_name = "-wp-status-maybe"
let help = "Select properties with status 'Maybe'."
end)
(* ------------------------------------------------------------------------ *)
(* --- Memory Models --- *)
(* ------------------------------------------------------------------------ *)
let wp_model = add_group "Model Selection"
let () = Parameter_customize.set_group wp_model
module Model =
String_list
(struct
let option_name = "-wp-model"
let arg_name = "model+..."
let help = "Memory model selection. Available selectors:\n\
* 'Hoare' logic variables only\n\
* 'Typed' typed pointers only\n\
* '+nocast' no pointer cast\n\
* '+cast' unsafe pointer casts\n\
* '+raw' no logic variable\n\
* '+ref' by-reference-style pointers detection\n\
* '+nat/+int' natural / machine-integers arithmetics\n\
* '+real/+float' real / IEEE floating point arithmetics"
end)
let () = Parameter_customize.set_group wp_model
module ByValue =
String_set
(struct
let option_name = "-wp-unalias-vars"
let arg_name = "var,..."
let help = "Consider variable names non-aliased."
end)
let () = Parameter_customize.set_group wp_model
module ByRef =
String_set
(struct
let option_name = "-wp-ref-vars"
let arg_name = "var,..."
let help = "Consider variable names by reference."
end)
let () = Parameter_customize.set_group wp_model
module InHeap =
String_set
(struct
let option_name = "-wp-alias-vars"
let arg_name = "var,..."
let help = "Consider variable names aliased."
end)
let () = Parameter_customize.set_group wp_model
module AliasInit =
False(struct
let option_name = "-wp-alias-init"
let help = "Use initializers for aliasing propagation."
end)
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
let () = Parameter_customize.set_group wp_model
module InCtxt =
String_set
(struct
let option_name = "-wp-context-vars"
let arg_name = "var,..."
let help = "Consider variable names in isolated context."
end)
let () = Parameter_customize.set_group wp_model
module ExternArrays =
False(struct
let option_name = "-wp-extern-arrays"
let help = "Put some default size for extern arrays."
end)
let () = Parameter_customize.set_group wp_model
module Overflows =
False(struct
let option_name = "-wp-overflows"
let help = "Collect hypotheses for absence of overflow and downcast\n\
(incompatible with RTE generator plug-in)"
end)
let () = Parameter_customize.set_group wp_model
module Literals =
False(struct
let option_name = "-wp-literals"
let help = "Export content of string literals."
end)
let () = Parameter_customize.set_group wp_model
module Volatile =
True(struct
let option_name = "-wp-volatile"
let help = "Sound modeling of volatile access.\n\
Use -wp-no-volatile to ignore volatile attributes."
end)
(* ------------------------------------------------------------------------ *)
(* --- WP Strategy --- *)
(* ------------------------------------------------------------------------ *)
let wp_strategy = add_group "Computation Strategies"
let () = Parameter_customize.set_group wp_strategy
module Init =
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
let option_name = "-wp-init-const"
let help = "Use initializers for global const variables."
end)
let () = Parameter_customize.set_group wp_strategy
module CalleePreCond =
True(struct
let option_name = "-wp-callee-precond"
let help = "Use pre-conditions of callee."
end)
let () = Parameter_customize.set_group wp_strategy
module RTE =
False(struct
let option_name = "-wp-rte"
let help = "Generate RTE guards before WP."
end)
let () = Parameter_customize.set_group wp_strategy
module Split =
False(struct
let option_name = "-wp-split"
let help = "Split conjunctions into sub-goals."
end)
let () = Parameter_customize.set_group wp_strategy
module UnfoldAssigns =
False(struct
let option_name = "-wp-unfold-assigns"
let help = "Unfold aggregates in assigns."
end)
let () = Parameter_customize.set_group wp_strategy
module SplitDepth =
Int(struct
let option_name = "-wp-split-depth"
let default = 0
let arg_name = "p"
let help = "Set depth of exploration for splitting conjunctions into sub-goals.\n\
Value `-1` means an unlimited depth."
end)
let () = Parameter_customize.set_group wp_strategy
module DynCall =
True(struct
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
let option_name = "-wp-dynamic"
let help = "Handle dynamic calls with specific annotations."
end)
let () = Parameter_customize.set_group wp_strategy
module PrecondWeakening =
False(struct
let option_name = "-wp-precond-weakening"
let help = "Discard pre-conditions of side behaviours (sound but incomplete optimisation)."
end)
(* ------------------------------------------------------------------------ *)
(* --- Qed Simplifications --- *)
(* ------------------------------------------------------------------------ *)
let wp_simplifier = add_group "Qed Simplifications"
let () = Parameter_customize.set_group wp_simplifier
module Simpl =
True(struct
let option_name = "-wp-simpl"
let help = "Enable Qed Simplifications."
end)
let () = Parameter_customize.set_group wp_simplifier
module Let =
True(struct
let option_name = "-wp-let"
let help = "Use variable elimination."
end)
let () = Parameter_customize.set_group wp_simplifier
module Core =
True(struct
let option_name = "-wp-core"
let help = "Lift core facts through branches."
end)
let () = Parameter_customize.set_group wp_simplifier
module Prune =
True(struct
let option_name = "-wp-pruning"
let help = "Prune trivial branches."
end)
let () = Parameter_customize.set_group wp_simplifier
module Clean =
True(struct
let option_name = "-wp-clean"
let help = "Use a simple cleaning in case of -wp-no-let."
end)
let () = Parameter_customize.set_group wp_simplifier
module Ground =
True(struct
let option_name = "-wp-ground"
let help = "Use aggressive ground simplifications."
end)
let () = Parameter_customize.set_group wp_simplifier
module Reduce =
True(struct
let option_name = "-wp-reduce"
let help = "Reduce function equalities with precedence to constructors."
end)
let () = Parameter_customize.set_group wp_simplifier
module ExtEqual =
True(struct
let option_name = "-wp-extensional"
let help = "Use extensional equality on compounds (hypotheses only)."
end)
let () = Parameter_customize.set_group wp_simplifier
module Filter =
True(struct
let option_name = "-wp-filter"
let help = "Filter non-used variables and related hypotheses."
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
end)
let () = Parameter_customize.set_group wp_simplifier
module Parasite =
True(struct
let option_name = "-wp-parasite"
let help = "Use singleton-variable filtering."
end)
let () = Parameter_customize.set_group wp_simplifier
module Prenex =
False(struct
let option_name = "-wp-prenex"
let help = "Normalize nested foralls into prenex-form"
end)
let () = Parameter_customize.set_group wp_simplifier
module Bits =
True(struct
let option_name = "-wp-bits"
let help = "Use bit-test simplifications."
end)
let () = Parameter_customize.set_group wp_simplifier
module SimplifyIsCint =
True(struct
let option_name = "-wp-simplify-is-cint"
let help = "Remove redundant machine integer range hypothesis."
end)
let () = Parameter_customize.set_group wp_simplifier
module SimplifyLandMask =
True(struct
let option_name = "-wp-simplify-land-mask"
let help = "Tight logical masks on unsigned integers."
end)
let () = Parameter_customize.set_group wp_simplifier
module SimplifyForall =
False(struct
let option_name = "-wp-simplify-forall"
let help = "Remove machine integer ranges in quantifiers."
end)
let () = Parameter_customize.set_group wp_simplifier
module SimplifyType =
False(struct
let option_name = "-wp-simplify-type"
let help = "Remove all `Type` constraints."
end)
let () = Parameter_customize.set_group wp_simplifier
module InitWithForall =
True(struct
let option_name = "-wp-init-summarize-array"
let help = "Summarize contiguous initializers with quantifiers."
end)
let () = Parameter_customize.set_group wp_simplifier
module BoundForallUnfolding =
Int(struct
let option_name = "-wp-bound-forall-unfolding"
let help = "Instantiate up to <n> forall-integers hypotheses."
let arg_name="n"
let default = 1000
end)
(* ------------------------------------------------------------------------ *)
(* --- Prover Interface --- *)
(* ------------------------------------------------------------------------ *)
let wp_prover = add_group "Prover Interface"
let () = Parameter_customize.set_group wp_prover
module Provers = String_list
(struct
let option_name = "-wp-prover"
let arg_name = "dp,..."
let help =
"Submit proof obligations to external prover(s):\n\
- 'none' to skip provers\n\
- 'script' (session scripts only)\n\
- 'tip' (failed scripts only)\n\
- 'alt-ergo' (default)\n\
- 'altgr-ergo' (gui)\n\
- 'coq', 'coqide' (see also -wp-coq-script)\n\
- 'why3:<dp>' or '<dp>' (why3 prover, see -wp-detect)\n\
let () = Parameter_customize.set_group wp_prover
module Cache = String
(struct
let option_name = "-wp-cache"
let arg_name = "mode"
let help =
"WP cache mode:\n\
- 'none': no cache, run provers (default)\n\
- 'update': use cache or run provers and update cache\n\
- 'cleanup': update mode with garbage collection\n\
- 'replay': update mode with no cache update\n\
- 'rebuild': always run provers and update cache\n\
- 'offline': use cache but never run provers\n\
This option is overriden by environment variable FRAMAC_WP_CACHE.\
"
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
let () = Parameter_customize.set_group wp_prover
module Generate = False
(struct
let option_name = "-wp-gen"
let help = "Only generate prover files (default: no)."
end)
let () = on_reset Generate.clear
let () = Parameter_customize.set_group wp_prover
module Detect = Action
(struct
let option_name = "-wp-detect"
let help = "List installed provers."
end)
let () = on_reset Detect.clear
let () = Parameter_customize.set_group wp_prover
module Drivers =
String_list
(struct
let option_name = "-wp-driver"
let arg_name = "file,..."
let help = "Load drivers for linking to external libraries"
end)
let () = Parameter_customize.set_group wp_prover
module Steps =
Int(struct
let option_name = "-wp-steps"
let default = 0
let arg_name = "n"
let help = "Set number of steps for provers."
end)
let () = Parameter_customize.set_group wp_prover
module Timeout =
Int(struct
let option_name = "-wp-timeout"
let default = 10
let arg_name = "n"
let help =
Printf.sprintf
"Set the timeout (in seconds) for provers (default: %d)." default
end)
let () = Parameter_customize.set_group wp_prover
module TimeExtra =
Int(struct
let option_name = "-wp-time-extra"
let default = 5
let arg_name = "n"
let help =
Printf.sprintf
"Set extra-time (in seconds) for proof replay (default: %d)." default
end)
let () = Parameter_customize.set_group wp_prover
module TimeMargin =
Int(struct
let option_name = "-wp-time-margin"
let default = 2
let arg_name = "n"
let help =
Printf.sprintf
"Set margin-time (in seconds) for considering a proof automatic.\n\
When using the 'tip' prover, scripts are created or cancelled\n\
if the proof time is greater or lower than (timeout - margin).\n\
(default: %d)." default
end)
let () = Parameter_customize.set_group wp_prover
module Procs =
Int(struct
let option_name = "-wp-par"
let arg_name = "p"
let default = 4
let help =
Printf.sprintf
"Number of parallel proof process (default: %d)" default
end)
let () = Parameter_customize.set_group wp_prover
module ProofTrace =
False
(struct
let option_name = "-wp-proof-trace"
let help = "Keeps output of provers for valid POs (default: no)"
end)
(* ------------------------------------------------------------------------ *)
(* --- Prover Options --- *)
(* ------------------------------------------------------------------------ *)
let wp_prover_options = add_group "Prover Options"
let () = Parameter_customize.set_group wp_prover
module Auto = String_list
(struct
let option_name = "-wp-auto"
let arg_name = "s"
let help =
"Activate auto-search with strategy <s>.\n\
Use '-wp-auto <?>' for available strategies."
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
end)
let () = Parameter_customize.set_group wp_prover
module AutoDepth = Int
(struct
let option_name = "-wp-auto-depth"
let arg_name = "n"
let default = 5
let help =
"Depth of auto-search (-wp-auto only, default 5).\n\
Limits the number of nested level in strategies."
end)
let () = Parameter_customize.set_group wp_prover
module AutoWidth = Int
(struct
let option_name = "-wp-auto-width"
let arg_name = "n"
let default = 10
let help =
"Width of auto-search (-wp-auto only, default 10).\n\
Limits the number of pending goals in strategies."
end)
let () = Parameter_customize.set_group wp_prover
module BackTrack = Int
(struct
let option_name = "-wp-auto-backtrack"
let arg_name = "n"
let default = 0
let help =
"Backtracking limit (-wp-auto only, de-activated by default).\n\
Limits backtracking when applying strategies."
end)
let () = Parameter_customize.set_group wp_prover_options
module Script =
String(struct
let option_name = "-wp-coq-script"
let arg_name = "f.script"
let default = ""
let help = "Set user's file for Coq proofs."
end)
let () = Parameter_customize.set_group wp_prover_options
module UpdateScript =
True(struct
let option_name = "-wp-update-coq-script"
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
let help = "If turned off, do not save or modify user's proofs."
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqTimeout =
Int(struct
let option_name = "-wp-coq-timeout"
let default = 30
let arg_name = "n"
let help =
Printf.sprintf
"Set the timeout (in seconds) for Coq (default: %d)." default
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqCompiler =
String(struct
let option_name = "-wp-coqc"
let default = "coqc"
let arg_name = "cmd"
let help =
Printf.sprintf
"Set the command line to run Coq Compiler (default 'coqc')."
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqIde =
String(struct
let option_name = "-wp-coqide"
let default = "coqide"
let arg_name = "cmd"
let help =
Printf.sprintf
"Set the command line to run CoqIde (default 'coqide')\n\
If the command-line contains 'emacs' (case insentive),\n\
a coq-project file is used instead of coq options."
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqProject =
String(struct
let option_name = "-wp-coq-project"
let default = "_CoqProject"
let arg_name = "file"
let help =
Printf.sprintf
"Set the Coq-Project file to used with Proof General (default '_CoqProject')"
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqTactic =
String
(struct
let option_name = "-wp-coq-tactic"
let arg_name = "proof"
let default = "auto with zarith"
let help = "Default tactic for Coq"
end)
let () = Parameter_customize.set_group wp_prover_options
module TryHints =
False
(struct
let option_name = "-wp-coq-tryhints"
let help = "Try scripts from other goals (see also -wp-hints)"
end)
let () = Parameter_customize.set_group wp_prover_options
module Hints =
Int
(struct
let option_name = "-wp-coq-hints"
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
let arg_name = "n"
let default = 3
let help = "Maximum number of proposed Coq scripts (default 3)"
end)
let () = Parameter_customize.set_group wp_prover_options
module Includes =
String_list
(struct
let option_name = "-wp-include"
let arg_name = "dir,...,++sharedir"
let help = "Directory where to find libraries and drivers for provers"
end)
let () = Parameter_customize.set_group wp_prover_options
module CoqLibs =
String_list
(struct
let option_name = "-wp-coq-lib"
let arg_name = "*.v,*.vo"
let help = "Additional libraries for Coq"
end)
let () = Parameter_customize.set_group wp_prover_options
module Why3 =
String(struct
let option_name = "-wp-why3"
let default = "why3"
let arg_name = "cmd"
let help = "Command to run Why-3 (default: 'why3')"
end)
let () = Parameter_customize.set_group wp_prover_options
let () = Parameter_customize.no_category ()
module WhyFlags =
String_list
(struct
let option_name = "-wp-why-opt"
let arg_name = "option,..."
let help = "Additional options for Why3"
end)
let () = Parameter_customize.set_group wp_prover_options
module AltErgo =
String(struct
let option_name = "-wp-alt-ergo"
let default = "alt-ergo"
let arg_name = "<cmd>"
let help = "Command to run alt-ergo (default: 'alt-ergo')"
end)
let () = Parameter_customize.set_group wp_prover_options
module AltGrErgo =
String(struct
let option_name = "-wp-altgr-ergo"
let default = "altgr-ergo"
let arg_name = "<cmd>"
let help = "Command to run alt-ergo user interface (default: 'altgr-ergo')"
end)
let () = Parameter_customize.set_group wp_prover_options
module AltErgoLibs =
String_list
(struct
let option_name = "-wp-alt-ergo-lib"
let arg_name = "*.mlw"
let help = "Additional library file for Alt-Ergo"
end)
let () = Parameter_customize.set_group wp_prover_options
let () = Parameter_customize.no_category ()
module AltErgoFlags =
String_list
(struct
let option_name = "-wp-alt-ergo-opt"
let arg_name = "option,..."
let help = "Additional options for Alt-Ergo"
end)
(* ------------------------------------------------------------------------ *)
(* --- PO Management --- *)
(* ------------------------------------------------------------------------ *)
let wp_po = add_group "Proof Obligations"
let () = Parameter_customize.set_group wp_po
module TruncPropIdFileName =
Int(struct
let option_name = "-wp-filename-truncation"
let default = 60
let arg_name = "n"
let help =
"Truncate basename of proof obligation files after <n> characters.\n\
Since numbers can be added as suffixes to make theses names unique,\n\
filename lengths can be highter to <n>. No truncation is performed\n\
when the value equals to zero (default: 60)."
end)
let () = Parameter_customize.set_group wp_po
let () = Parameter_customize.do_not_save ()
module Print =
Action(struct
let option_name = "-wp-print"
let help = "Pretty-prints proof obligations on standard output."
end)
let () = on_reset Print.clear
let () = Parameter_customize.set_group wp_po
let () = Parameter_customize.do_not_save ()
module Report =
String_list
(struct
let option_name = "-wp-report"
let arg_name = "report,..."
let help = "Report specification file(s)"
end)
let () = Parameter_customize.set_group wp_po
let () = Parameter_customize.do_not_save ()
module ReportJson =
String
(struct
let option_name = "-wp-report-json"
let arg_name = "file.json"
let default = ""
let help =
"Output report in json format into given file.\n\
If the file already exists, it is used for\n\
stabilizing range of steps in other reports."
end)
let () = Parameter_customize.set_group wp_po
let () = Parameter_customize.do_not_save ()
module ReportName =
String(struct
let option_name = "-wp-report-basename"
let arg_name = "file"
let default = "wp-report"
let help = Printf.sprintf
"Basename of generated reports (default %S)" default
end)
let () = Parameter_customize.set_group wp_po
let () = Parameter_customize.do_not_save ()
module MemoryContext =
True
(struct
let option_name = "-wp-warn-memory-model"
let help = "Warn Against Memory Model Hypotheses"
end)
let () = Parameter_customize.set_group wp_po
module OutputDir =
String(struct
let option_name = "-wp-out"
let arg_name = "dir"
let default = ""
let help = "Set working directory for generated files.\n\
Defaults to some temporary directory."
end)
let () = Parameter_customize.set_group wp_po
let () = Parameter_customize.do_not_save ()
module Check =
Action(struct
let option_name = "-wp-check"
let help =
"Check the syntax and type of the produced file, instead of proving."
end)
let () = on_reset Print.clear
(* -------------------------------------------------------------------------- *)
(* --- OS environment variables --- *)
(* -------------------------------------------------------------------------- *)
let active_unless_rte option =
if RTE.get () || Dynamic.Parameter.Bool.get "-rte" () then
( warning ~once:true
"Option %s incompatiable with RTE (ignored)" option ;
false )
else true
let get_overflows () = Overflows.get () && active_unless_rte "-wp-overflows"
let dkey = register_category "env"
let get_env ?default var =
try
let varval = Sys.getenv var in
debug ~dkey "ENV %s=%S" var varval ; varval
with Not_found ->
debug ~dkey "ENV %s not set." var ;
match default with
| Some varval ->
debug ~dkey "ENV %s default(%S)" var varval ; varval
| None ->
debug ~dkey "ENV %s undefined." var ;
raise Not_found
let dkey = register_category "prover"
let is_out () = !Fc_config.is_gui || OutputDir.get() <> ""
let make_output_dir dir =
if Sys.file_exists dir then
begin
if not (Sys.is_directory dir) then
abort "File '%s' is not a directory (WP aborted)" dir ;
end
else
begin
try
Unix.mkdir dir 0o770 ;
debug ~dkey "Created output directory '%s'" dir
with Unix.Unix_error (err,_,_) ->
let msg = Unix.error_message err in
abort
"System Error (%s)@\nCan not create output directory '%s'"
msg dir
end
(*[LC] Do not projectify this reference : it is common to all projects *)
let unique_tmp = ref None
let make_tmp_dir () =
match !unique_tmp with
| None ->
let tmp =
try Extlib.temp_dir_cleanup_at_exit "wp"
with Extlib.Temp_file_error s ->
abort "Cannot create temporary file: %s" s
in
unique_tmp := Some tmp ;
debug ~dkey "Created temporary directory '%s'" tmp ;
tmp
| Some tmp -> tmp
let make_gui_dir () =
try
let home =
try Sys.getenv "USERPROFILE" (*Win32*) with Not_found ->
try Sys.getenv "HOME" (*Unix like*) with Not_found ->
"." in
let dir = home ^ "/" ^ ".frama-c-wp" in
if Sys.file_exists dir && Sys.is_directory dir then
Extlib.safe_remove_dir dir;
make_output_dir dir ; dir
with _ ->
make_tmp_dir ()
(** call the construction of the directory only once *)
let base_output = ref None
let base_output () =
match !base_output with
| None -> let output =
match OutputDir.get () with
| "" ->
if !Fc_config.is_gui
then make_gui_dir ()
else make_tmp_dir ()
| dir ->
make_output_dir dir ; dir in
base_output := Some output;
Fc_Filepath.add_symbolic_dir "WPOUT" output ;
output
| Some output -> output
let get_session () = Session.dir ~error:false ()
let get_session_dir d =
let base = get_session () in
let path = Printf.sprintf "%s/%s" base d in
make_output_dir path ; path
let get_output () =
let base = base_output () in
let project = Project.current () in
let name = Project.get_unique_name project in
if name = "default" then base
else
let dir = base ^ "/" ^ name in
make_output_dir dir ; dir
let get_output_dir d =
let base = get_output () in
let path = Printf.sprintf "%s/%s" base d in