heptagon/compiler/minils/minils.ml

169 lines
4.8 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-07-01 19:35:24 +02:00
{ e_desc: edesc;
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
2010-06-30 17:20:56 +02:00
| Efby of static_exp option * exp
2010-07-01 19:35:24 +02:00
(** static_exp fby exp *)
2010-06-30 17:20:56 +02:00
| Eapp of app * exp list * ident option
2010-07-01 19:35:24 +02:00
(** app ~args=(exp,exp...) reset ~r=ident *)
2010-06-15 10:49:03 +02:00
| Ewhen of exp * longname * ident
2010-07-01 19:35:24 +02:00
(** exp when Constructor(ident) *)
2010-06-15 10:49:03 +02:00
| Emerge of ident * (longname * exp) list
2010-07-01 19:35:24 +02:00
(** merge ident (Constructor -> exp)+ *)
2010-06-15 10:49:03 +02:00
| Estruct of (longname * exp) list
2010-07-01 19:35:24 +02:00
(** { field=exp; ... } *)
2010-06-30 17:20:56 +02:00
| Eiterator of iterator_type * app * static_exp * exp list * ident option
2010-07-01 19:35:24 +02:00
(** map f <<n>> (exp,exp...) reset ident *)
2010-06-30 17:20:56 +02:00
2010-07-01 19:35:24 +02:00
and app = { a_op: op; a_params: static_exp list; a_unsafe: bool }
(** Unsafe applications could have side effects
and be delicate about optimizations, !be careful! *)
2010-06-30 17:20:56 +02:00
and op =
2010-07-01 19:35:24 +02:00
| Etuple (** (args) *)
| Efun of longname (** "Stateless" longname <<a_params>> (args) reset r *)
| Enode of longname (** "Stateful" longname <<a_params>> (args) reset r *)
| Eifthenelse (** if arg1 then arg2 else arg3 *)
| Efield of longname (** arg1.longname *)
| Efield_update of longname (** { arg1 with longname = arg2 } *)
| Earray (** [ args ] *)
| Earray_fill (** [arg1^arg2] *)
| Eselect (** arg1[a_params] *)
| Eselect_slice (** arg1[a_param1..a_param2] *)
| Eselect_dyn (** arg1.[arg3...] default arg2 *)
| Eupdate (** [ arg1 with a_params = arg2 ] *)
| Econcat (** arg1@@arg2 *)
2010-06-30 17:20:56 +02:00
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 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;
2010-07-01 19:35:24 +02:00
c_eq : eq list }
2010-06-15 10:49:03 +02:00
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-07-01 19:35:24 +02:00
c_loc : location }
2010-06-15 10:49:03 +02:00
type program =
{ p_pragmas: (name * string) list;
p_opened : name list;
p_types : type_dec list;
p_nodes : node_dec list;
2010-07-01 19:35:24 +02:00
p_consts : const_dec list }
2010-06-15 10:49:03 +02:00
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