You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
2.9 KiB
OCaml

(***********************************************************************)
(* *)
(* Heptagon *)
(* *)
(* Gwenael Delaval, LIG/INRIA, UJF *)
(* Leonard Gerard, Parkas, ENS *)
(* Adrien Guatto, Parkas, ENS *)
(* Cedric Pasteur, Parkas, ENS *)
(* *)
(* Copyright 2012 ENS, INRIA, UJF *)
(* *)
(* This file is part of the Heptagon compiler. *)
(* *)
(* Heptagon is free software: you can redistribute it and/or modify it *)
(* under the terms of the GNU General Public License as published by *)
(* the Free Software Foundation, either version 3 of the License, or *)
(* (at your option) any later version. *)
(* *)
(* Heptagon is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *)
(* GNU General Public License for more details. *)
(* *)
(* You should have received a copy of the GNU General Public License *)
(* along with Heptagon. If not, see <http://www.gnu.org/licenses/> *)
(* *)
(***********************************************************************)
(* Removes the Eblock construction *)
(* To this mean, we will collect all equations and var dec
and bring it up to the level above (a block).
An Eblock is an equation and thus is always in a block. *)
open Heptagon
open Hept_mapfold
(** v_acc is the new local vars which were in lower levels,
eq_acc contains all the equations *)
let eq funs (v_acc, eq_acc) eq = match eq.eq_desc with
| Eblock b -> (* flatten it : add inside vars and eqs to the acc *)
let b,_ = block_it funs ([],[]) b in
eq, (b.b_local@v_acc, b.b_equs@eq_acc)
| _ -> eq, (v_acc, eq::eq_acc) (*add current eq to the acc*)
let block funs _ b =
let _, (v_acc, eq_acc) = Hept_mapfold.block funs ([],[]) b in
{b with b_local = v_acc@b.b_local; b_equs = eq_acc},
([], [])
let program p =
let funs =
{ defaults with block = block; eq = eq; } in
let p, (v_acc, eq_acc) = Hept_mapfold.program funs ([], []) p in
(* nothing should be left in the acc *)
assert (v_acc = []);
assert (eq_acc = []);
p