2010-06-15 14:05:26 +02:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Heptagon *)
|
|
|
|
(* *)
|
|
|
|
(* Author : Marc Pouzet *)
|
|
|
|
(* Organization : Demons, LRI, University of Paris-Sud, Orsay *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
(* global data in the symbol tables *)
|
|
|
|
open Names
|
|
|
|
open Types
|
2011-04-26 14:07:15 +02:00
|
|
|
open Linearity
|
2010-06-15 14:05:26 +02:00
|
|
|
|
|
|
|
(** Warning: Whenever these types are modified,
|
|
|
|
interface_format_version should be incremented. *)
|
2010-09-09 00:35:06 +02:00
|
|
|
let interface_format_version = "20"
|
2010-06-15 14:05:26 +02:00
|
|
|
|
|
|
|
(** Node argument *)
|
2011-04-26 14:07:15 +02:00
|
|
|
type arg = { a_name : name option; a_type : ty; a_linearity : linearity }
|
2010-06-15 14:05:26 +02:00
|
|
|
|
2010-07-07 12:15:02 +02:00
|
|
|
(** Node static parameters *)
|
2010-07-05 15:43:51 +02:00
|
|
|
type param = { p_name : name; p_type : ty }
|
2010-06-15 14:05:26 +02:00
|
|
|
|
2010-09-09 00:35:06 +02:00
|
|
|
(** Constraints on size expressions *)
|
2010-07-08 14:56:49 +02:00
|
|
|
type size_constraint =
|
2010-09-09 00:35:06 +02:00
|
|
|
| Cequal of static_exp * static_exp (* e1 = e2 *)
|
2010-07-08 14:56:49 +02:00
|
|
|
| Clequal of static_exp * static_exp (* e1 <= e2 *)
|
|
|
|
| Cfalse
|
|
|
|
|
2010-06-15 14:05:26 +02:00
|
|
|
(** Node signature *)
|
2010-09-09 00:35:06 +02:00
|
|
|
type node = {
|
|
|
|
node_inputs : arg list;
|
|
|
|
node_outputs : arg list;
|
2011-03-21 14:30:19 +01:00
|
|
|
node_stateful : bool;
|
2010-09-09 00:35:06 +02:00
|
|
|
node_params : param list;
|
|
|
|
node_params_constraints : size_constraint list }
|
|
|
|
|
|
|
|
type field = { f_name : field_name; f_type : ty }
|
2010-06-17 16:08:35 +02:00
|
|
|
type structure = field list
|
2010-06-15 14:05:26 +02:00
|
|
|
|
2010-07-26 17:41:52 +02:00
|
|
|
type type_def =
|
|
|
|
| Tabstract
|
|
|
|
| Talias of ty
|
2010-09-09 00:35:06 +02:00
|
|
|
| Tenum of constructor_name list
|
2010-07-26 17:41:52 +02:00
|
|
|
| Tstruct of structure
|
2010-06-15 14:05:26 +02:00
|
|
|
|
2010-09-09 00:35:06 +02:00
|
|
|
type const_def = { c_type : ty; c_value : static_exp }
|
2010-07-07 16:43:23 +02:00
|
|
|
|
2010-06-15 14:05:26 +02:00
|
|
|
let names_of_arg_list l = List.map (fun ad -> ad.a_name) l
|
|
|
|
|
|
|
|
let types_of_arg_list l = List.map (fun ad -> ad.a_type) l
|
|
|
|
|
2011-04-26 14:07:15 +02:00
|
|
|
let mk_arg ?(linearity = Ltop) name ty = { a_type = ty; a_linearity = linearity; a_name = name }
|
2010-06-26 16:53:25 +02:00
|
|
|
|
2010-07-05 15:43:51 +02:00
|
|
|
let mk_param name ty = { p_name = name; p_type = ty }
|
2010-06-29 11:18:50 +02:00
|
|
|
|
2010-07-01 19:35:24 +02:00
|
|
|
let mk_field n ty = { f_name = n; f_type = ty }
|
|
|
|
|
2010-09-09 00:35:06 +02:00
|
|
|
let mk_const_def ty value =
|
|
|
|
{ c_type = ty; c_value = value }
|
|
|
|
|
2011-03-21 14:30:19 +01:00
|
|
|
let mk_node ?(constraints = []) ins outs stateful params =
|
2010-09-09 00:35:06 +02:00
|
|
|
{ node_inputs = ins;
|
|
|
|
node_outputs = outs;
|
2011-03-21 14:30:19 +01:00
|
|
|
node_stateful = stateful;
|
2010-09-09 00:35:06 +02:00
|
|
|
node_params = params;
|
|
|
|
node_params_constraints = constraints }
|
2010-06-17 16:09:32 +02:00
|
|
|
|
2010-06-17 13:05:16 +02:00
|
|
|
let rec field_assoc f = function
|
|
|
|
| [] -> raise Not_found
|
|
|
|
| { f_name = n; f_type = ty }::l ->
|
2010-09-09 00:35:06 +02:00
|
|
|
if f = n then ty
|
2010-07-14 00:55:40 +02:00
|
|
|
else field_assoc f l
|
2010-07-07 15:11:32 +02:00
|
|
|
|
|
|
|
|
2011-03-23 20:31:26 +01:00
|
|
|
|