1
|
(********************************************************************)
|
2
|
(* *)
|
3
|
(* The LustreC compiler toolset / The LustreC Development Team *)
|
4
|
(* Copyright 2012 - -- ONERA - CNRS - INPT *)
|
5
|
(* *)
|
6
|
(* LustreC is free software, distributed WITHOUT ANY WARRANTY *)
|
7
|
(* under the terms of the GNU Lesser General Public License *)
|
8
|
(* version 2.1. *)
|
9
|
(* *)
|
10
|
(********************************************************************)
|
11
|
|
12
|
let version = Version.number
|
13
|
let include_path = Version.include_path
|
14
|
|
15
|
let print_version () =
|
16
|
Format.printf "Lustrec compiler, version %s (dev)@." version;
|
17
|
Format.printf "Include directory: %s@." include_path
|
18
|
|
19
|
let main_node = ref ""
|
20
|
let static_mem = ref true
|
21
|
let print_types = ref true
|
22
|
let print_clocks = ref true
|
23
|
let delay_calculus = ref true
|
24
|
let track_exceptions = ref true
|
25
|
let ansi = ref false
|
26
|
let check = ref false
|
27
|
let spec = ref "acsl"
|
28
|
let output = ref "C"
|
29
|
let dest_dir = ref "."
|
30
|
let verbose_level = ref 1
|
31
|
let global_inline = ref false
|
32
|
let witnesses = ref false
|
33
|
let optimization = ref 2
|
34
|
let lusi = ref false
|
35
|
let print_reuse = ref false
|
36
|
let traces = ref false
|
37
|
|
38
|
let horntraces = ref false
|
39
|
let horn_cex = ref false
|
40
|
let horn_query = ref true
|
41
|
|
42
|
|
43
|
let options =
|
44
|
[ "-d", Arg.Set_string dest_dir,
|
45
|
"uses the specified directory as root for generated/imported object and C files (default: .)";
|
46
|
"-node", Arg.Set_string main_node, "specifies the main node";
|
47
|
"-init", Arg.Set delay_calculus, "performs an initialisation analysis for Lustre nodes <default: no analysis>";
|
48
|
"-dynamic", Arg.Clear static_mem, "specifies a dynamic allocation scheme for main Lustre node <default: static>";
|
49
|
"-ansi", Arg.Set ansi, "specifies that generated C code is ansi C90 compliant <default: C99>";
|
50
|
"-check-access", Arg.Set check, "checks at runtime that array accesses always lie within bounds <default: no check>";
|
51
|
"-lusi", Arg.Set lusi, "only generates a .lusi interface source file from a Lustre source <default: no generation>";
|
52
|
"-no-spec", Arg.Unit (fun () -> spec := "no"), "do not generate any specification";
|
53
|
"-acsl-spec", Arg.Unit (fun () -> spec := "acsl"), "generates an ACSL encoding of the specification. Only meaningful for the C backend (default)";
|
54
|
"-c-spec", Arg.Unit (fun () -> spec := "c"), "generates a C encoding of the specification instead of ACSL contracts and annotations. Only meaningful for the C backend";
|
55
|
"-java", Arg.Unit (fun () -> output := "java"), "generates Java output instead of C";
|
56
|
"-horn", Arg.Unit (fun () -> output := "horn"), "generates Horn clauses encoding output instead of C";
|
57
|
"-horn-traces", Arg.Unit (fun () -> output := "horn"; traces:=true), "produce traceability file for Horn backend. Enable the horn backend.";
|
58
|
"-horn-cex", Arg.Unit (fun () -> output := "horn"; horn_cex:=true), "generate cex enumeration. Enable the horn backend (work in progress)";
|
59
|
"-horn-query", Arg.Unit (fun () -> output := "horn"; horn_query:=true), "generate queries in generated Horn file. Enable the horn backend (work in progress)";
|
60
|
"-print_reuse", Arg.Set print_reuse, "prints variable reuse policy";
|
61
|
"-lustre", Arg.Unit (fun () -> output := "lustre"), "generates Lustre output, performing all active optimizations";
|
62
|
"-inline", Arg.Set global_inline, "inline all node calls (require a main node)";
|
63
|
"-witnesses", Arg.Set witnesses, "enable production of witnesses during compilation";
|
64
|
"-print_types", Arg.Set print_types, "prints node types";
|
65
|
"-print_clocks", Arg.Set print_clocks, "prints node clocks";
|
66
|
"-O", Arg.Set_int optimization, " changes optimization level <default: 2>";
|
67
|
"-verbose", Arg.Set_int verbose_level, " changes verbose level <default: 1>";
|
68
|
"-version", Arg.Unit print_version, " displays the version";]
|
69
|
|
70
|
|
71
|
let get_witness_dir filename =
|
72
|
(* Make sure the directory exists *)
|
73
|
let dir = !dest_dir ^ "/" ^ (Filename.basename filename) ^ "_witnesses" in
|
74
|
let _ = try
|
75
|
if not (Sys.is_directory dir) then (
|
76
|
Format.eprintf "File of name %s exists. It should be a directory.@." dir;
|
77
|
exit 1
|
78
|
)
|
79
|
with Sys_error _ -> Unix.mkdir dir 0o750
|
80
|
in
|
81
|
dir
|
82
|
|
83
|
(* Local Variables: *)
|
84
|
(* compile-command:"make -C .." *)
|
85
|
(* End: *)
|