heptagon/compiler/minils/mls_utils.ml

241 lines
6.7 KiB
OCaml
Raw Normal View History

open Minils
open Mls_mapfold
open Mls_printer
open Location
open Names
open Idents
open Signature
open Static
open Types
2010-07-23 22:06:06 +02:00
open Clocks
open Misc
(** Error Kind *)
2010-06-30 17:20:56 +02:00
type err_kind = | Enot_static_exp
2011-04-18 16:09:07 +02:00
let err_message exp ?(loc=exp.e_loc) = function
2010-06-30 17:20:56 +02:00
| Enot_static_exp ->
Format.eprintf "%aThe expression %a should be a static_exp.@."
print_location loc
print_exp exp;
raise Errors.Error
2010-06-30 17:20:56 +02:00
let rec static_exp_of_exp e =
2010-06-29 11:18:50 +02:00
match e.e_desc with
2011-04-14 18:06:54 +02:00
| Eextvalue w -> (match w.w_desc with
| Wconst se -> se
2011-04-18 16:09:07 +02:00
| _ -> err_message e Enot_static_exp)
| _ -> err_message e Enot_static_exp
let rec ident_of_extvalue w = match w.w_desc with
| Wvar x -> Some x
| Wfield(w, _) -> ident_of_extvalue w
| Wwhen(w, _, _) -> ident_of_extvalue w
| Wconst _ -> None
| Wreinit (_, w) -> ident_of_extvalue w
(** @return the list of bounds of an array type*)
2010-06-29 11:18:50 +02:00
let rec bounds_list ty =
match Modules.unalias_type ty with
| Tarray(ty, n) -> n::(bounds_list ty)
| _ -> []
(** @return the [var_dec] object corresponding to the name [n]
in a list of [var_dec]. *)
let rec vd_find n = function
| [] -> (*Format.eprintf "Not found var %s@." (name n);*) raise Not_found
2010-06-29 11:18:50 +02:00
| vd::l ->
if vd.v_ident = n then vd else vd_find n l
2010-06-29 11:18:50 +02:00
(** @return whether an object of name [n] belongs to
a list of [var_dec]. *)
let rec vd_mem n = function
| [] -> false
| vd::l -> vd.v_ident = n or (vd_mem n l)
2011-04-27 14:28:45 +02:00
(** @return whether [ty] corresponds to a record type. *)
let is_record_type ty = match ty with
| Tid n ->
(match Modules.find_type n with
2010-09-10 11:47:11 +02:00
| Tstruct _ -> true
| _ -> false)
| _ -> false
let is_op = function
| { qual = Pervasives; name = _ } -> true | _ -> false
2011-04-20 11:19:18 +02:00
let pat_from_dec_list decs =
Etuplepat (List.map (fun vd -> Evarpat vd.v_ident) decs)
let tuple_from_dec_list decs =
let aux vd =
mk_extvalue ~clock:vd.v_clock ~ty:vd.v_type ~linearity:vd.v_linearity (Wvar vd.v_ident)
2011-04-20 11:19:18 +02:00
in
Eapp(mk_app Earray, List.map aux decs, None)
module Vars =
struct
let add x acc = if List.mem x acc then acc else x :: acc
let rec vars_pat acc = function
| Evarpat x -> x :: acc
| Etuplepat pat_list -> List.fold_left vars_pat acc pat_list
let def acc { eq_lhs = pat } = vars_pat acc pat
let rec vars_ck acc = function
| Con(_, _, n) -> add n acc
| Cbase | Cvar { contents = Cindex _ } -> acc
| Cvar { contents = Clink ck } -> vars_ck acc ck
2011-05-09 19:32:12 +02:00
let rec vars_ct acc = function
| Ck ck -> vars_ck acc ck
| Cprod c_l -> List.fold_left vars_ct acc c_l
let read_extvalue read_funs (is_left, acc_init) w =
(* recursive call *)
let _,(_, acc) = Mls_mapfold.extvalue read_funs (is_left, acc_init) w in
let acc = match w.w_desc with
| Wvar x | Wwhen(_, _, x) ->
add x acc
| _ -> acc
in
w, (is_left, vars_ck acc w.w_ck)
let read_exp read_funs (is_left, acc_init) e =
(* recursive call *)
let _,(_, acc) = Mls_mapfold.exp read_funs (is_left, acc_init) e in
2011-04-14 18:06:54 +02:00
(* special cases *)
let acc = match e.e_desc with
| Emerge(x,_)
| Eapp(_, _, Some x) | Eiterator (_, _, _, _, _, Some x) ->
add x acc
| Efby(_, e) ->
if is_left then
(* do not consider variables to the right
of the fby, only clocks*)
vars_ck acc_init e.w_ck
else acc
| _ -> acc
in
2011-05-09 19:32:12 +02:00
e, (is_left, vars_ct acc e.e_ct)
let read_exp is_left acc e =
let _, (_, acc) =
Mls_mapfold.exp_it
{ Mls_mapfold.defaults with
Mls_mapfold.exp = read_exp;
Mls_mapfold.extvalue = read_extvalue }
(is_left, acc) e in
acc
let read_extvalue is_left acc e =
let _, (_, acc) =
Mls_mapfold.extvalue_it
{ Mls_mapfold.defaults with Mls_mapfold.extvalue = read_extvalue }
(is_left, acc) e in
acc
let rec remove x = function
| [] -> []
| y :: l -> if x = y then l else y :: remove x l
let read is_left { eq_lhs = pat; eq_rhs = e } = match pat, e.e_desc with
| Evarpat(n), Efby(_, e1) ->
if is_left
then remove n (read_extvalue is_left [] e1)
else read_extvalue is_left [] e1
| _ -> read_exp is_left [] e
let antidep { eq_rhs = e } =
match e.e_desc with Efby _ -> true | _ -> false
2011-05-09 19:32:12 +02:00
let clock { eq_rhs = e } = e.e_base_ck
let head ck =
let rec headrec ck l =
match ck with
2011-05-23 09:24:57 +02:00
| Cbase
| Cvar { contents = Cindex _ } -> l
| Con(ck, _, n) -> headrec ck (n :: l)
2010-06-29 11:18:50 +02:00
| Cvar { contents = Clink ck } -> headrec ck l
in
2010-06-29 11:18:50 +02:00
headrec ck []
2010-06-29 11:18:50 +02:00
(** Returns a list of memory vars (x in x = v fby e)
appearing in an equation. *)
let memory_vars ({ eq_lhs = _; eq_rhs = e } as eq) = match e.e_desc with
| Efby(_, _) -> def [] eq
| _ -> []
let linear_read e =
let extvalue funs acc w = match w.w_desc with
| Wvar x ->
let w, acc = Mls_mapfold.extvalue funs acc w in
let acc =
(match w.w_linearity with
| Linearity.Lat _ -> add x acc
| _ -> acc)
in
w, acc
| _ -> Mls_mapfold.extvalue funs acc w
in
let funs = { Mls_mapfold.defaults with extvalue = extvalue } in
let _, acc = Mls_mapfold.exp_it funs [] e in
acc
end
2011-01-24 16:07:26 +01:00
(* Assumes normal form, all fby are solo rhs *)
let node_memory_vars n =
let eq _ acc ({ eq_lhs = pat; eq_rhs = e } as eq) =
2011-04-20 11:19:18 +02:00
match pat, e.e_desc with
| Evarpat x, Efby(_, _) ->
let acc = (x, e.e_ty) :: acc in
eq, acc
| _, _ -> eq, acc
in
let funs = { Mls_mapfold.defaults with eq = eq } in
let _, acc = node_dec_it funs [] n in
acc
(* data-flow dependences. pre-dependences are discarded *)
module DataFlowDep = Dep.Make
(struct
type equation = eq
let read eq = Vars.read true eq
let linear_read eq = Vars.linear_read eq.eq_rhs
let def = Vars.def
let antidep = Vars.antidep
end)
(* all dependences between variables *)
module AllDep = Dep.Make
(struct
type equation = eq
let read eq = Vars.read false eq
let linear_read eq = Vars.linear_read eq.eq_rhs
let def = Vars.def
let antidep _ = false
end)
2010-09-30 21:44:18 +02:00
let eq_find id = List.find (fun eq -> List.mem id (Vars.def [] eq))
2011-05-09 19:32:12 +02:00
let ident_list_of_pat pat =
let rec f acc pat = match pat with
| Evarpat id -> id::acc
| Etuplepat pat_l -> List.fold_left f acc pat_l
2011-05-09 19:32:12 +02:00
in
List.rev (f [] pat)
2011-10-03 11:43:50 +02:00
let remove_eqs_from_node nd ids =
let walk_vd vd vd_list = if IdentSet.mem vd.v_ident ids then vd_list else vd :: vd_list in
let walk_eq eq eq_list =
let defs = ident_list_of_pat eq.eq_lhs in
if List.for_all (fun v -> IdentSet.mem v ids) defs then eq_list else eq :: eq_list
in
let vd_list = List.fold_right walk_vd nd.n_local [] in
let eq_list = List.fold_right walk_eq nd.n_equs [] in
{ nd with n_local = vd_list; n_equs = eq_list; }