heptagon/compiler/minils/minils.ml

171 lines
4.1 KiB
OCaml
Raw Normal View History

2010-06-15 10:49:03 +02:00
(**************************************************************************)
(* *)
(* Heptagon *)
(* *)
(* Author : Marc Pouzet *)
(* Organization : Demons, LRI, University of Paris-Sud, Orsay *)
(* *)
(**************************************************************************)
(* The internal MiniLustre representation *)
open Location
open Names
open Ident
2010-06-15 15:08:14 +02:00
open Signature
2010-06-15 10:49:03 +02:00
open Static
2010-06-16 19:30:37 +02:00
open Types
2010-06-15 10:49:03 +02:00
type iterator_type =
| Imap
| Ifold
| Imapfold
2010-06-15 10:49:03 +02:00
type type_dec =
{ t_name: name;
t_desc: tdesc;
t_loc: location }
and tdesc =
| Type_abs
| Type_enum of name list
2010-06-15 15:08:14 +02:00
| Type_struct of structure
2010-06-15 10:49:03 +02:00
and exp =
2010-06-16 19:30:37 +02:00
{ e_desc: edesc; (* its descriptor *)
2010-06-15 10:49:03 +02:00
mutable e_ck: ck;
mutable e_ty: ty;
2010-06-15 15:08:14 +02:00
e_loc: location }
2010-06-15 10:49:03 +02:00
2010-06-16 19:30:37 +02:00
and edesc =
2010-06-30 17:20:56 +02:00
| Econst of static_exp
2010-06-15 10:49:03 +02:00
| Evar of ident
| Econstvar of name
2010-06-30 17:20:56 +02:00
| Efby of static_exp option * exp
| Eapp of app * exp list * ident option
(** ident option is the optional reset *)
2010-06-15 10:49:03 +02:00
| Ewhen of exp * longname * ident
| Emerge of ident * (longname * exp) list
| Estruct of (longname * exp) list
2010-06-30 17:20:56 +02:00
| Eiterator of iterator_type * app * static_exp * exp list * ident option
and app = { a_op: op; a_params: static_exp list }
and op =
| Efun of longname
| Enode of longname
| Eifthenelse
| Efield_update of longname (* field name args would be [record ; value] *)
2010-06-30 18:29:49 +02:00
| Efield of longname
2010-06-30 17:20:56 +02:00
| Earray
2010-06-30 18:29:49 +02:00
| Etuple
2010-06-30 17:20:56 +02:00
| Erepeat
| Eselect
| Eselect_dyn
| Eupdate
| Eselect_slice
| Econcat
2010-06-15 10:49:03 +02:00
and ct =
| Ck of ck
| Cprod of ct list
and ck =
| Cbase
| Cvar of link ref
| Con of ck * longname * ident
and link =
| Cindex of int
| Clink of ck
and const =
| Cint of int
| Cfloat of float
| Cconstr of longname
2010-06-30 17:20:56 +02:00
| Carray of static_exp * const
| Cop of
2010-06-15 10:49:03 +02:00
and pat =
| Etuplepat of pat list
| Evarpat of ident
type eq =
2010-06-15 15:08:14 +02:00
{ eq_lhs : pat;
eq_rhs : exp;
2010-06-16 19:30:37 +02:00
eq_loc : location }
2010-06-15 10:49:03 +02:00
type var_dec =
{ v_ident : ident;
v_type : ty;
2010-06-15 10:49:03 +02:00
v_clock : ck }
type contract =
{ c_assume : exp;
c_enforce : exp;
c_controllables : var_dec list;
c_local : var_dec list;
c_eq : eq list;
}
type node_dec =
{ n_name : name;
n_input : var_dec list;
n_output : var_dec list;
n_contract : contract option;
n_local : var_dec list;
n_equs : eq list;
2010-06-15 15:08:14 +02:00
n_loc : location;
n_params : param list;
2010-07-02 15:38:11 +02:00
n_params_constraints : size_constraint list;
2010-06-15 15:08:14 +02:00
n_params_instances : (int list) list; }(*TODO commenter ou passer en env*)
2010-06-15 10:49:03 +02:00
type const_dec =
{ c_name : name;
2010-06-30 17:20:56 +02:00
c_value : static_exp;
2010-06-15 10:49:03 +02:00
c_loc : location; }
type program =
{ p_pragmas: (name * string) list;
p_opened : name list;
p_types : type_dec list;
p_nodes : node_dec list;
p_consts : const_dec list; }
2010-06-15 10:49:03 +02:00
(*Helper functions to build the AST*)
2010-06-16 19:30:37 +02:00
let mk_exp ?(exp_ty = Tprod []) ?(clock = Cbase) ?(loc = no_location) desc =
{ e_desc = desc; e_ty = exp_ty; e_ck = clock; e_loc = loc }
let mk_var_dec ?(clock = Cbase) ident ty =
{ v_ident = ident; v_type = ty;
2010-06-22 09:18:01 +02:00
v_clock = clock }
2010-06-18 11:46:57 +02:00
2010-06-18 14:59:10 +02:00
let mk_equation ?(loc = no_location) pat exp =
{ eq_lhs = pat; eq_rhs = exp; eq_loc = loc }
let mk_node
2010-06-29 11:18:50 +02:00
?(input = []) ?(output = []) ?(contract = None) ?(local = []) ?(eq = [])
?(loc = no_location) ?(param = []) ?(constraints = []) ?(pinst = []) name =
{ n_name = name;
n_input = input;
n_output = output;
n_contract = contract;
n_local = local;
n_equs = eq;
n_loc = loc;
n_params = param;
n_params_constraints = constraints;
n_params_instances = pinst; }
let mk_type_dec ?(type_desc = Type_abs) ?(loc = no_location) name =
{ t_name = name; t_desc = type_desc; t_loc = loc }
let mk_op ?(op_params = []) ?(op_kind = Enode) lname =
2010-06-29 11:18:50 +02:00
{ op_name = lname; op_params = op_params; op_kind = op_kind }
let void = mk_exp (Etuple [])
2010-06-15 10:49:03 +02:00