heptagon/compiler/minils/transformations/schedule.ml
Cédric Pasteur dd660f4424 Added anonymous functions in Minils
- Added Elamba(inp, outp, eq_list) constructor. This
is necessary for iterator fusion.
- Refactored Mls2obc to allow to generate code
for anonymous functions (basically we have to
remember if we are within an iterator, as there is
no nesting of iterators)

There is a known problem with the local vars defined in 
the anonymous function that needs to be declared.
2010-07-21 17:15:19 +02:00

92 lines
2.9 KiB
OCaml

(**************************************************************************)
(* *)
(* Heptagon *)
(* *)
(* Author : Marc Pouzet *)
(* Organization : Demons, LRI, University of Paris-Sud, Orsay *)
(* *)
(**************************************************************************)
(* scheduling of equations *)
open Misc
open Minils
open Mls_utils
open Graph
open Dep
(* possible overlapping between clocks *)
let join ck1 ck2 =
let n1 = Vars.head ck1
and n2 = Vars.head ck2 in
(* C1(x1) on ... on Cn(xn) with C'1(x'1) on ... on C'k(x'k) *)
match n1, n2 with
[], [] -> true
| x1 ::_, x2 ::_ when x1 = x2 -> true
| _ -> false
let join eq1 eq2 = join (Vars.clock eq1) (Vars.clock eq2)
(* TODO *)
(* possible overlapping between nodes *)
(*let head e =
match e with
| Emerge(_, c_e_list) -> List.fold (fun acc e -> Vars.head (clock e) :: acc)
| e -> [Vars.head (clock e)]
(* e1 define a pieces of control structures with *)
(* paths on clock C1(x1) on ... on Cn(xn) ... *)
(* e1 can be merged if *)
let n1_list = head e1 in
let n2_list = head e2 in
*)
(* clever scheduling *)
let schedule eq_list =
let rec recook = function
| [] -> []
| node :: node_list -> node >> (recook node_list)
and (>>) node node_list =
try
insert node node_list
with
Not_found -> node :: node_list
and insert node = function
| [] -> raise Not_found
| node1 :: node_list ->
if linked node node1 then raise Not_found
else
try
node1 :: (insert node node_list)
with
| Not_found ->
if join (containt node) (containt node1)
then node :: node1 :: node_list
else raise Not_found in
let node_list, _ = DataFlowDep.build eq_list in
let node_list = recook (topological node_list) in
let node_list = List.rev node_list in
let node_list = recook node_list in
let node_list = List.rev node_list in
List.map containt node_list
let eqs funs () eq_list =
let eqs, () = Mls_mapfold.eqs funs () eq_list in
schedule eqs, ()
let edesc funs () = function
| Eiterator(it, ({ a_op = Elambda(inp, outp, locals, eq_list) } as app),
n, e_list, r) ->
let app = { app with a_op = Elambda(inp, outp,
locals, schedule eq_list) } in
Eiterator(it, app, n, e_list, r), ()
| _ -> raise Fallback
let program p =
let p, () = Mls_mapfold.program_it
{ Mls_mapfold.defaults with Mls_mapfold.eqs = eqs;
Mls_mapfold.edesc = edesc } () p in p