lustrec / src / corelang.mli @ 1bff14ac
History | View | Annotate | Download (5.83 KB)
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 |
|
13 |
open LustreSpec |
14 |
|
15 |
exception Error of Location.t * error |
16 |
|
17 |
val dummy_type_dec: type_dec |
18 |
val dummy_clock_dec: clock_dec |
19 |
|
20 |
val mktyp: Location.t -> type_dec_desc -> type_dec |
21 |
val mkclock: Location.t -> clock_dec_desc -> clock_dec |
22 |
val mkvar_decl: Location.t -> ?orig:bool -> ident * type_dec * clock_dec * bool (* is const *) * expr option (* value *) -> var_decl |
23 |
|
24 |
val var_decl_of_const: const_desc -> var_decl |
25 |
val mkexpr: Location.t -> expr_desc -> expr |
26 |
val mkeq: Location.t -> ident list * expr -> eq |
27 |
val mkassert: Location.t -> expr -> assert_t |
28 |
val mktop_decl: Location.t -> ident -> bool -> top_decl_desc -> top_decl |
29 |
val mkpredef_call: Location.t -> ident -> expr list -> expr |
30 |
val mk_new_name: (ident -> bool) -> ident -> ident |
31 |
val mk_new_node_name: node_desc -> ident -> ident |
32 |
val mktop: top_decl_desc -> top_decl |
33 |
|
34 |
(* constructor for machine types *) |
35 |
val mkinstr: ?lustre_expr:expr option -> ?lustre_eq: eq option -> instr_t_desc -> instr_t |
36 |
val get_instr_desc: instr_t -> instr_t_desc |
37 |
val update_instr_desc: instr_t -> instr_t_desc -> instr_t |
38 |
|
39 |
val node_table : (ident, top_decl) Hashtbl.t |
40 |
val print_node_table: Format.formatter -> unit -> unit |
41 |
val node_name: top_decl -> ident |
42 |
val node_inputs: top_decl -> var_decl list |
43 |
val node_from_name: ident -> top_decl |
44 |
val is_generic_node: top_decl -> bool |
45 |
val is_imported_node: top_decl -> bool |
46 |
|
47 |
val consts_table: (ident, top_decl) Hashtbl.t |
48 |
val print_consts_table: Format.formatter -> unit -> unit |
49 |
val type_table: (type_dec_desc, top_decl) Hashtbl.t |
50 |
val print_type_table: Format.formatter -> unit -> unit |
51 |
val is_clock_dec_type: type_dec_desc -> bool |
52 |
val get_repr_type: type_dec_desc -> type_dec_desc |
53 |
val is_user_type: type_dec_desc -> bool |
54 |
val coretype_equal: type_dec_desc -> type_dec_desc -> bool |
55 |
val tag_true: label |
56 |
val tag_false: label |
57 |
val tag_default: label |
58 |
val tag_table: (label, top_decl) Hashtbl.t |
59 |
val field_table: (label, top_decl) Hashtbl.t |
60 |
|
61 |
val get_enum_type_tags: type_dec_desc -> label list |
62 |
|
63 |
val get_struct_type_fields: type_dec_desc -> (label * type_dec_desc) list |
64 |
|
65 |
val consts_of_enum_type: top_decl -> top_decl list |
66 |
|
67 |
val const_of_bool: bool -> constant |
68 |
val const_is_bool: constant -> bool |
69 |
val const_negation: constant -> constant |
70 |
val const_or: constant -> constant -> constant |
71 |
val const_and: constant -> constant -> constant |
72 |
val const_xor: constant -> constant -> constant |
73 |
val const_impl: constant -> constant -> constant |
74 |
|
75 |
val get_node_vars: node_desc -> var_decl list |
76 |
val get_node_var: ident -> node_desc -> var_decl |
77 |
val get_node_eqs: node_desc -> eq list |
78 |
val get_node_eq: ident -> node_desc -> eq |
79 |
val get_node_interface: node_desc -> imported_node_desc |
80 |
|
81 |
(* val get_const: ident -> constant *) |
82 |
|
83 |
val sort_handlers : (label * 'a) list -> (label * 'a) list |
84 |
|
85 |
val is_eq_expr: expr -> expr -> bool |
86 |
|
87 |
val pp_error : Format.formatter -> error -> unit |
88 |
|
89 |
(* Caution, returns an untyped, unclocked, etc, expression *) |
90 |
val is_tuple_expr : expr -> bool |
91 |
val ident_of_expr : expr -> ident |
92 |
val expr_of_vdecl : var_decl -> expr |
93 |
val expr_of_ident : ident -> Location.t -> expr |
94 |
val expr_list_of_expr : expr -> expr list |
95 |
val expr_of_expr_list : Location.t -> expr list -> expr |
96 |
val call_of_expr: expr -> (ident * expr list * expr option) |
97 |
val expr_of_dimension: Dimension.dim_expr -> expr |
98 |
val dimension_of_expr: expr -> Dimension.dim_expr |
99 |
val dimension_of_const: Location.t -> constant -> Dimension.dim_expr |
100 |
|
101 |
(* REMOVED, pushed in utils.ml val new_tag : unit -> tag *) |
102 |
|
103 |
val add_internal_funs: unit -> unit |
104 |
|
105 |
val pp_prog_type : Format.formatter -> program -> unit |
106 |
|
107 |
val pp_prog_clock : Format.formatter -> program -> unit |
108 |
|
109 |
val const_of_top: top_decl -> const_desc |
110 |
val node_of_top: top_decl -> node_desc |
111 |
val imported_node_of_top: top_decl -> imported_node_desc |
112 |
val typedef_of_top: top_decl -> typedef_desc |
113 |
val dependency_of_top: top_decl -> (bool * ident) |
114 |
|
115 |
val get_nodes : program -> top_decl list |
116 |
val get_imported_nodes : program -> top_decl list |
117 |
val get_consts : program -> top_decl list |
118 |
val get_typedefs: program -> top_decl list |
119 |
val get_dependencies : program -> top_decl list |
120 |
(* val prog_unfold_consts: program -> program *) |
121 |
|
122 |
val rename_static: (ident -> Dimension.dim_expr) -> type_dec_desc -> type_dec_desc |
123 |
val rename_carrier: (ident -> ident) -> clock_dec_desc -> clock_dec_desc |
124 |
|
125 |
val get_expr_vars: expr -> Utils.ISet.t |
126 |
val expr_replace_var: (ident -> ident) -> expr -> expr |
127 |
val eq_replace_rhs_var: (ident -> bool) -> (ident -> ident) -> eq -> eq |
128 |
|
129 |
(** rename_prog f_node f_var f_const prog *) |
130 |
val rename_prog: (ident -> ident) -> (ident -> ident) -> (ident -> ident) -> program -> program |
131 |
|
132 |
val substitute_expr: var_decl list -> eq list -> expr -> expr |
133 |
|
134 |
val copy_var_decl: var_decl -> var_decl |
135 |
val copy_const: const_desc -> const_desc |
136 |
val copy_node: node_desc -> node_desc |
137 |
val copy_top: top_decl -> top_decl |
138 |
val copy_prog: top_decl list -> top_decl list |
139 |
|
140 |
(** Annotation expression related functions *) |
141 |
val mkeexpr: Location.t -> expr -> eexpr |
142 |
val merge_node_annot: node_annot -> node_annot -> node_annot |
143 |
val extend_eexpr: (quantifier_type * var_decl list) list -> eexpr -> eexpr |
144 |
val update_expr_annot: ident -> expr -> expr_annot -> expr |
145 |
(* val mkpredef_call: Location.t -> ident -> eexpr list -> eexpr*) |
146 |
|
147 |
val functional_backend: unit -> bool |
148 |
(* Local Variables: *) |
149 |
(* compile-command:"make -C .." *) |
150 |
(* End: *) |