heptagon/compiler/minils/analysis/interference.ml

490 lines
15 KiB
OCaml
Raw Normal View History

2011-04-20 11:19:18 +02:00
open Idents
2011-04-20 15:41:15 +02:00
open Types
open Clocks
open Signature
open Minils
2011-04-20 11:19:18 +02:00
open Interference_graph
open Printf
let memalloc_debug = true
2011-04-20 11:19:18 +02:00
2011-04-20 14:05:55 +02:00
module TyEnv =
2011-04-20 15:41:15 +02:00
ListMap(struct
type t = ty
2011-04-20 11:19:18 +02:00
let compare = Global_compare.type_compare
end)
2011-04-20 15:41:15 +02:00
module InterfRead = struct
let rec vars_ck acc = function
| Con(_, _, n) -> IvarSet.add (Ivar n) acc
| Cbase | Cvar { contents = Cindex _ } -> acc
| Cvar { contents = Clink ck } -> vars_ck acc ck
let rec ivar_of_extvalue w = match w.w_desc with
| Wvar x -> Ivar x
| Wfield(w, f) -> Ifield (ivar_of_extvalue w, f)
| Wwhen(w, _, _) -> ivar_of_extvalue w
| Wconst _ -> assert false
let ivars_of_extvalues wl =
let tr_one acc w = match w.w_desc with
| Wconst _ -> acc
| _ -> (ivar_of_extvalue w)::acc
in
List.fold_left tr_one [] wl
let read_extvalue funs acc w =
(* recursive call *)
let _, acc = Mls_mapfold.extvalue funs acc w in
let acc =
match w.w_desc with
| Wconst _ -> acc
| _ -> IvarSet.add (ivar_of_extvalue w) acc
in
w, vars_ck acc w.w_ck
let read_exp funs acc e =
(* recursive call *)
let _, acc = Mls_mapfold.exp funs acc e in
(* special cases *)
let acc = match e.e_desc with
| Emerge(x,_) | Eapp(_, _, Some x)
| Eiterator (_, _, _, _, _, Some x) -> IvarSet.add (Ivar x) acc
| _ -> acc
in
e, vars_ck acc e.e_ck
let rec vars_pat acc = function
| Evarpat x -> IvarSet.add (Ivar x) acc
| Etuplepat pat_list -> List.fold_left vars_pat acc pat_list
let def eq =
vars_pat IvarSet.empty eq.eq_lhs
let read_exp e =
let funs = { Mls_mapfold.defaults with
Mls_mapfold.exp = read_exp;
Mls_mapfold.extvalue = read_extvalue } in
let _, acc = Mls_mapfold.exp_it funs IvarSet.empty e in
acc
let read eq =
read_exp eq.eq_rhs
end
2011-04-20 14:05:55 +02:00
module World = struct
2011-04-20 15:41:15 +02:00
let vds = ref Env.empty
2011-04-20 11:19:18 +02:00
let memories = ref IvarSet.empty
2011-04-20 15:41:15 +02:00
let init f =
2011-04-20 11:19:18 +02:00
(* build vds cache *)
2011-04-20 15:41:15 +02:00
let build env vds =
List.fold_left (fun env vd -> Env.add vd.v_ident vd env) env vds
2011-04-20 11:19:18 +02:00
in
2011-04-20 15:41:15 +02:00
let env = build Env.empty f.n_input in
2011-04-20 11:19:18 +02:00
let env = build env f.n_output in
let env = build env f.n_local in
vds := env;
2011-04-20 14:05:55 +02:00
(* build the set of memories *)
2011-04-20 11:19:18 +02:00
let mems = Mls_utils.node_memory_vars f in
memories := List.fold_left (fun s (x, _) -> IvarSet.add (Ivar x) s) IvarSet.empty mems
let vd_from_ident x =
2011-04-20 15:41:15 +02:00
Env.find x !vds
2011-04-20 11:19:18 +02:00
let rec ivar_type iv = match iv with
| Ivar x ->
let vd = vd_from_ident x in
vd.v_type
| Ifield(_, f) ->
2011-04-20 18:20:53 +02:00
let n = Modules.find_field f in
let fields = Modules.find_struct n in
Signature.field_assoc f fields
2011-04-20 11:19:18 +02:00
2011-04-20 14:05:55 +02:00
let is_optimized_ty ty =
2011-04-20 15:41:15 +02:00
match Modules.unalias_type ty with
2011-04-20 14:05:55 +02:00
| Tarray _ -> true
| Tid n ->
2011-04-20 15:41:15 +02:00
(match Modules.find_type n with
| Signature.Tstruct _ -> true
2011-04-20 14:05:55 +02:00
| _ -> false)
2011-04-20 15:41:15 +02:00
| _ -> false
2011-04-20 14:05:55 +02:00
let is_optimized iv =
is_optimized_ty (ivar_type iv)
let is_memory x =
2011-04-20 15:41:15 +02:00
IvarSet.mem (Ivar x) !memories
2011-04-20 14:05:55 +02:00
2011-04-20 11:19:18 +02:00
let igs = ref []
let node_for_ivar iv =
2011-04-20 15:41:15 +02:00
let rec _node_for_ivar igs iv =
2011-04-20 11:19:18 +02:00
match igs with
2011-04-21 13:42:28 +02:00
| [] -> Format.printf "Var not in graph: %s@." (ivar_to_string iv); raise Not_found
2011-04-20 11:19:18 +02:00
| ig::igs ->
(try
ig, node_for_value ig iv
with Not_found ->
_node_for_ivar igs iv)
in
2011-04-20 15:41:15 +02:00
_node_for_ivar !igs iv
2011-04-20 11:19:18 +02:00
let node_for_name x =
node_for_ivar (Ivar x)
end
(** Helper functions to work with the multiple interference graphs *)
2011-04-20 15:41:15 +02:00
let by_ivar def f x y =
2011-04-20 11:19:18 +02:00
let igx, nodex = World.node_for_ivar x in
let igy, nodey = World.node_for_ivar y in
if igx == igy then
f igx nodex nodey
2011-04-20 15:41:15 +02:00
else
def
2011-04-20 11:19:18 +02:00
2011-04-20 15:41:15 +02:00
let by_name def f x y =
2011-04-20 11:19:18 +02:00
let igx, nodex = World.node_for_name x in
let igy, nodey = World.node_for_name y in
if igx == igy then
f igx nodex nodey
2011-04-20 15:41:15 +02:00
else
def
2011-04-20 11:19:18 +02:00
2011-04-20 15:41:15 +02:00
let add_interference_link_from_name = by_name () add_interference_link
let add_interference_link_from_ivar = by_ivar () add_interference_link
let add_affinity_link_from_name = by_name () add_affinity_link
let add_affinity_link_from_ivar = by_ivar () add_affinity_link
let add_same_value_link_from_name = by_name () add_affinity_link
let add_same_value_link_from_ivar = by_ivar () add_affinity_link
let coalesce_from_name = by_name () coalesce
let have_same_value_from_name = by_name false have_same_value
2011-04-20 11:19:18 +02:00
2011-04-21 13:42:28 +02:00
let remove_from_name x =
try
let ig, v = World.node_for_name x in
G.remove_vertex ig.g_graph v
with
| Not_found -> (* var not in graph, just ignore it *) ()
2011-04-20 11:19:18 +02:00
(** Returns a map giving the number of uses of each ivar in the equations [eqs]. *)
let compute_uses eqs =
let aux env eq =
2011-04-20 15:41:15 +02:00
let incr_uses iv env =
2011-04-20 11:19:18 +02:00
if IvarEnv.mem iv env then
IvarEnv.add iv ((IvarEnv.find iv env) + 1) env
else
IvarEnv.add iv 1 env
in
2011-04-20 15:41:15 +02:00
IvarSet.fold incr_uses (InterfRead.read eq) env
2011-04-20 11:19:18 +02:00
in
List.fold_left aux IvarEnv.empty eqs
let number_uses iv uses =
try
IvarEnv.find iv uses
with
| Not_found -> 0
2011-04-20 15:41:15 +02:00
let add_uses uses iv env =
if World.is_optimized iv then (
Format.printf "Adding uses of %s@." (ivar_to_string iv);
2011-04-20 11:19:18 +02:00
IvarEnv.add iv (number_uses iv uses) env
) else (
Format.printf "Ignoring uses of %s@." (ivar_to_string iv);
2011-04-20 11:19:18 +02:00
env
)
2011-04-20 11:19:18 +02:00
2011-04-20 15:41:15 +02:00
let compute_live_vars eqs =
2011-04-20 11:19:18 +02:00
let uses = compute_uses eqs in
let aux (env,res) eq =
2011-04-20 15:41:15 +02:00
let decr_uses iv env =
2011-04-20 11:19:18 +02:00
if World.is_optimized iv then
try
IvarEnv.add iv ((IvarEnv.find iv env) - 1) env
with
| Not_found -> Format.printf "var not found : %s@." (ivar_to_string iv); assert false
2011-04-20 11:19:18 +02:00
else
env
in
2011-04-20 15:41:15 +02:00
let env = IvarSet.fold decr_uses (InterfRead.read eq) env in
let alive_vars = IvarEnv.fold (fun iv n acc -> if n > 0 then iv::acc else acc) env [] in
Format.printf " Alive vars : %s@." (String.concat " " (List.map ivar_to_string alive_vars));
2011-04-20 11:19:18 +02:00
let res = (eq, alive_vars)::res in
2011-04-20 15:41:15 +02:00
let env = IvarSet.fold (add_uses uses) (InterfRead.def eq) env in
2011-04-20 11:19:18 +02:00
env, res
in
2011-04-20 15:41:15 +02:00
let env = IvarSet.fold (add_uses uses) !World.memories IvarEnv.empty in
let _, res = List.fold_left aux (env, []) eqs in
2011-04-20 11:19:18 +02:00
res
2011-04-20 15:41:15 +02:00
let rec disjoint_clock is_mem ck1 ck2 =
match ck1, ck2 with
| Cbase, Cbase -> false
| Con(ck1, c1, n1), Con(ck2,c2,n2) ->
if ck1 = ck2 & n1 = n2 & c1 <> c2 then
true
else
disjoint_clock is_mem ck1 ck2
(*let separated_by_reset =
(match x_is_mem, y_is_mem with
| true, true -> are_separated_by_reset c1 c2
| _, _ -> true) in *)
| _ -> false
2011-04-20 11:19:18 +02:00
(** [should_interfere x y] returns whether variables x and y
can interfere. *)
2011-04-20 15:41:15 +02:00
let should_interfere (x, y) =
2011-04-20 11:19:18 +02:00
let vdx = World.vd_from_ident x in
let vdy = World.vd_from_ident y in
2011-04-20 15:41:15 +02:00
if Global_compare.type_compare vdx.v_type vdy.v_type <> 0 then
2011-04-20 11:19:18 +02:00
false
else (
let x_is_mem = World.is_memory x in
let y_is_mem = World.is_memory y in
2011-04-20 15:41:15 +02:00
let are_copies = have_same_value_from_name x y in
2011-04-20 11:19:18 +02:00
let disjoint_clocks = disjoint_clock (x_is_mem && y_is_mem) vdx.v_clock vdy.v_clock in
not (disjoint_clocks or are_copies)
)
2011-04-20 15:41:15 +02:00
let should_interfere = Misc.memoize_couple should_interfere
2011-04-20 11:19:18 +02:00
(** Builds the (empty) interference graphs corresponding to the
variable declaration list vds. It just creates one graph per type
and one node per declaration. *)
2011-04-21 13:42:28 +02:00
let init_interference_graph () =
2011-04-20 11:19:18 +02:00
(** Adds a node to the list of nodes for the given type. *)
let add_node env iv ty =
2011-04-20 15:41:15 +02:00
let ty = Modules.unalias_type ty in
2011-04-20 11:19:18 +02:00
if World.is_optimized_ty ty then
TyEnv.add_element ty (mk_node iv) env
else
env
in
(** Adds a node for the variable and all fields of a variable. *)
let rec add_ivar env iv ty =
let env = add_node env iv ty in
(match ty with
| Tid n ->
(try
2011-04-20 15:41:15 +02:00
let fields = Modules.find_struct n in
2011-04-20 11:19:18 +02:00
List.fold_left (fun env { f_name = f; f_type = ty } ->
add_ivar env (Ifield (iv, f)) ty) env fields
with
Not_found -> env
)
| _ -> env
)
in
2011-04-21 13:42:28 +02:00
let env = Env.fold
(fun _ vd env -> add_ivar env (Ivar vd.v_ident) vd.v_type) !World.vds TyEnv.empty in
2011-04-20 15:41:15 +02:00
World.igs := TyEnv.fold (fun ty l acc -> (mk_graph l ty)::acc) env []
2011-04-20 11:19:18 +02:00
(** Adds interferences between all the variables in
the list. If force is true, then interference is added
whatever the variables are, without checking if interference
is real. *)
let rec add_interferences_from_list force vars =
let add_interference x y =
match x, y with
2011-04-20 15:41:15 +02:00
| Ivar x, Ivar y ->
if force or should_interfere (x, y) then
add_interference_link_from_ivar (Ivar x) (Ivar y)
2011-04-20 11:19:18 +02:00
| _, _ -> add_interference_link_from_ivar x y
in
2011-04-20 15:41:15 +02:00
Misc.iter_couple add_interference vars
2011-04-20 11:19:18 +02:00
(** Adds to the interference graphs [igs] the
interference resulting from the live vars sets
stored in hash. *)
2011-04-20 15:41:15 +02:00
let add_interferences live_vars =
2011-04-20 11:19:18 +02:00
List.iter (fun (_, vars) -> add_interferences_from_list false vars) live_vars
2011-04-21 13:42:28 +02:00
let spill_inputs f =
let spilled_inp = (*List.filter is_linear*) f.n_input in
List.iter (fun vd -> remove_from_name vd.v_ident) spilled_inp
2011-04-20 11:19:18 +02:00
2011-04-20 15:41:15 +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
| Tstruct _ -> true
| _ -> false)
| _ -> false
2011-04-20 11:19:18 +02:00
(** [filter_vars l] returns a list of variables whose fields appear in
a list of ivar.*)
let rec filter_fields = function
| [] -> []
2011-04-20 15:41:15 +02:00
| (Ifield (id, _))::l -> id::(filter_fields l)
2011-04-20 11:19:18 +02:00
| _::l -> filter_fields l
(** Returns all the fields of a variable (when it corresponds to a record). *)
let rec record_vars acc iv ty =
let acc = iv::acc in
match ty with
| Tid n ->
(try
2011-04-20 15:41:15 +02:00
let fields = Modules.find_struct n in
2011-04-20 11:19:18 +02:00
List.fold_left (fun acc { f_name = n; f_type = ty } ->
record_vars acc (Ifield(iv, n)) ty) acc fields
with
Not_found -> acc
)
| _ -> acc
(** Adds all fields of a var in the list of live variables of
every equation. If x is live in eq, then so are all x.f. *)
let fix_records_live_vars live_vars =
let fix_one_list vars =
2011-04-20 15:41:15 +02:00
List.fold_left (fun acc iv -> record_vars acc iv (World.ivar_type iv)) [] vars
2011-04-20 11:19:18 +02:00
in
List.map (fun (eq, vars) -> eq, fix_one_list vars) live_vars
(** Adds the interference between records variables
caused by interferences between their fields. *)
let add_records_field_interferences () =
2011-04-20 15:41:15 +02:00
let add_record_interf g n1 n2 =
if interfere g n1 n2 then
let v1 = filter_fields !(G.V.label n1) in
let v2 = filter_fields !(G.V.label n2) in
Misc.iter_couple_2 add_interference_link_from_ivar v1 v2
2011-04-20 11:19:18 +02:00
in
2011-04-20 15:41:15 +02:00
List.iter (iter_interf add_record_interf) !World.igs
2011-04-20 11:19:18 +02:00
(** [process_eq igs eq] adds to the interference graphs igs
the links corresponding to the equation. Interferences
corresponding to live vars sets are already added by build_interf_graph.
*)
2011-04-20 15:41:15 +02:00
let process_eq ({ eq_lhs = pat; eq_rhs = e } as eq) =
2011-04-20 11:19:18 +02:00
(** Other cases*)
match pat, e.e_desc with
(* | Eapp ({ a_op = (Efun f | Enode f) }, e_list, _) ->
let targeting = (find_value f).node_targeting in
apply_targeting igs targeting e_list pat eq *)
2011-04-20 15:41:15 +02:00
| _, Eiterator(Imap, { a_op = Enode _ | Efun _ }, _, _, w_list, _) ->
let invars = InterfRead.ivars_of_extvalues w_list in
let outvars = IvarSet.elements (InterfRead.def eq) in
2011-04-20 11:19:18 +02:00
List.iter (fun inv -> List.iter
2011-04-20 15:41:15 +02:00
(add_affinity_link_from_ivar inv) outvars) invars
| Evarpat x, Efby(_, w) -> (* x = _ fby y *)
(match w.w_desc with
| Wconst _ -> ()
| _ ->
if World.is_optimized (Ivar x) then
add_affinity_link_from_ivar (InterfRead.ivar_of_extvalue w) (Ivar x) )
2011-04-20 15:41:15 +02:00
| Evarpat x, Eextvalue w ->
2011-04-20 11:19:18 +02:00
(* Add links between variables with the same value *)
2011-04-20 15:41:15 +02:00
(match w.w_desc with
| Wconst _ -> ()
| _ ->
if World.is_optimized (Ivar x) then
add_same_value_link_from_ivar (InterfRead.ivar_of_extvalue w) (Ivar x) )
2011-04-20 11:19:18 +02:00
| _ -> () (* do nothing *)
(** Add the special init and return equations to the dependency graph
(resp at the bottom and top) *)
let add_init_return_eq f =
(** a_1,..,a_p = __init__ *)
2011-04-20 15:41:15 +02:00
let eq_init = mk_equation (Mls_utils.pat_from_dec_list f.n_input)
(mk_extvalue_exp Initial.tint (Wconst (Initial.mk_static_int 0))) in
2011-04-20 11:19:18 +02:00
(** __return__ = o_1,..,o_q *)
let eq_return = mk_equation (Etuplepat [])
2011-04-20 15:41:15 +02:00
(mk_exp Tinvalid (Mls_utils.tuple_from_dec_list f.n_output)) in
2011-04-20 11:19:18 +02:00
(eq_init::f.n_equs)@[eq_return]
let build_interf_graph f =
World.init f;
(** Init interference graph *)
2011-04-21 13:42:28 +02:00
init_interference_graph ();
2011-04-20 11:19:18 +02:00
let eqs = add_init_return_eq f in
(** Build live vars sets for each equation *)
let live_vars = compute_live_vars eqs in
(* Coalesce linear variables *)
(*coalesce_linear_vars igs vds;*)
(** Other cases*)
List.iter process_eq f.n_equs;
(* Make sure the interference between records are coherent *)
let live_vars = fix_records_live_vars live_vars in
(* Add interferences from live vars set*)
add_interferences live_vars;
(* Add interferences between records implied by IField values*)
add_records_field_interferences ();
2011-04-21 13:42:28 +02:00
(* Splill inputs that are not modified *)
spill_inputs f;
2011-04-20 11:19:18 +02:00
(* Return the graphs *)
!World.igs
2011-04-20 14:05:55 +02:00
(** Color the nodes corresponding to fields using
the color attributed to the record. This makes sure that
if a and b are shared, then a.f and b.f are too. *)
let color_fields ig =
let process n =
2011-04-20 15:41:15 +02:00
let fields = filter_fields !(G.V.label n) in
2011-04-20 14:05:55 +02:00
match fields with
| [] -> ()
| id::_ -> (* we only look at the first as they will all have the same color *)
2011-04-20 15:41:15 +02:00
let _, top_node = World.node_for_ivar id in
2011-04-20 14:05:55 +02:00
G.Mark.set n (G.Mark.get top_node)
in
G.iter_vertex process ig.g_graph
(** Color an interference graph.*)
let color_interf_graphs igs =
let record_igs, igs =
2011-04-20 15:41:15 +02:00
List.partition (fun ig -> is_record_type ig.g_type) igs in
2011-04-20 14:05:55 +02:00
(* First color interference graphs of record types *)
List.iter Dcoloring.color record_igs;
2011-04-20 14:05:55 +02:00
(* Then update fields colors *)
2011-04-20 15:41:15 +02:00
List.iter color_fields igs;
2011-04-20 14:05:55 +02:00
(* and finish the coloring *)
List.iter Dcoloring.color igs
2011-04-20 14:05:55 +02:00
let print_graphs f igs =
let cpt = ref 0 in
let print_graph ig =
let s = (Names.shortname f.n_name)^ (string_of_int !cpt) in
Interference2dot.print_graph (Names.fullname f.n_name) s ig;
cpt := !cpt + 1
in
List.iter print_graph igs
2011-04-20 14:05:55 +02:00
(** Create the list of lists of variables stored together,
from the interference graph.*)
let create_subst_lists igs =
let create_one_ig ig =
List.map (fun x -> ig.g_type, x) (Dcoloring.values_by_color ig)
2011-04-20 14:05:55 +02:00
in
List.flatten (List.map create_one_ig igs)
let node _ acc f =
2011-04-20 14:05:55 +02:00
(** Build the interference graphs *)
let igs = build_interf_graph f in
(** Color the graph *)
color_interf_graphs igs;
if memalloc_debug then
print_graphs f igs;
2011-04-20 14:05:55 +02:00
(** Remember the choice we made for code generation *)
2011-04-20 15:41:15 +02:00
{ f with n_mem_alloc = create_subst_lists igs }, acc
2011-04-20 14:05:55 +02:00
let program p =
Format.printf "is_directe %b@." (G.is_directed);
2011-04-20 15:41:15 +02:00
let funs = { Mls_mapfold.defaults with Mls_mapfold.node_dec = node } in
let p, _ = Mls_mapfold.program_it funs () p in
2011-04-20 14:05:55 +02:00
p