Skip to content
Snippets Groups Projects
Commit 22203ac6 authored by Fonenantsoa Maurica's avatar Fonenantsoa Maurica Committed by Fonenantsoa Maurica
Browse files

Clear environment.

parent 7db479b9
No related branches found
No related tags found
No related merge requests found
...@@ -60,6 +60,7 @@ module Env = struct ...@@ -60,6 +60,7 @@ module Env = struct
let tbl: Ival.t Logic_var.Hashtbl.t = Logic_var.Hashtbl.create 7 let tbl: Ival.t Logic_var.Hashtbl.t = Logic_var.Hashtbl.create 7
let clear () = Logic_var.Hashtbl.clear tbl let clear () = Logic_var.Hashtbl.clear tbl
let add = Logic_var.Hashtbl.add tbl let add = Logic_var.Hashtbl.add tbl
let remove = Logic_var.Hashtbl.remove tbl
let find = Logic_var.Hashtbl.find tbl let find = Logic_var.Hashtbl.find tbl
end end
...@@ -193,9 +194,12 @@ let rec infer t = ...@@ -193,9 +194,12 @@ let rec infer t =
| Tlet (li,t) -> | Tlet (li,t) ->
let li_t = Misc.term_of_li li in let li_t = Misc.term_of_li li in
let li_v = li.l_var_info in
let i = infer li_t in let i = infer li_t in
Env.add li.l_var_info i; Env.add li_v i;
infer t let i = infer t in
Env.remove li_v;
i
| TConst (LStr _ | LWStr _ | LReal _) | TConst (LStr _ | LWStr _ | LReal _)
| TBinOp (PlusPI,_,_) | TBinOp (PlusPI,_,_)
| TBinOp (IndexPI,_,_) | TBinOp (IndexPI,_,_)
......
...@@ -65,6 +65,7 @@ val interv_of_typ: Cil_types.typ -> Ival.t ...@@ -65,6 +65,7 @@ val interv_of_typ: Cil_types.typ -> Ival.t
module Env: sig module Env: sig
val clear: unit -> unit val clear: unit -> unit
val add: Cil_types.logic_var -> Ival.t -> unit val add: Cil_types.logic_var -> Ival.t -> unit
val remove: Cil_types.logic_var -> unit
end end
(* ************************************************************************** *) (* ************************************************************************** *)
......
...@@ -501,6 +501,7 @@ and context_insensitive_term_to_exp kf env t = ...@@ -501,6 +501,7 @@ and context_insensitive_term_to_exp kf env t =
| Tlet(li, t) -> | Tlet(li, t) ->
let env = env_of_li li kf env loc in let env = env_of_li li kf env loc in
let e, env = term_to_exp kf env t in let e, env = term_to_exp kf env t in
Interval.Env.remove li.l_var_info;
e, env, false, "" e, env, false, ""
(* Convert an ACSL term into a corresponding C expression (if any) in the given (* Convert an ACSL term into a corresponding C expression (if any) in the given
...@@ -735,7 +736,9 @@ and named_predicate_content_to_exp ?name kf env p = ...@@ -735,7 +736,9 @@ and named_predicate_content_to_exp ?name kf env p =
conditional_to_exp loc None e1 res2 res3 conditional_to_exp loc None e1 res2 res3
| Plet(li, p) -> | Plet(li, p) ->
let env = env_of_li li kf env loc in let env = env_of_li li kf env loc in
named_predicate_to_exp kf env p let e, env = named_predicate_to_exp kf env p in
Interval.Env.remove li.l_var_info;
e, env
| Pforall _ | Pexists _ -> Quantif.quantif_to_exp kf env p | Pforall _ | Pexists _ -> Quantif.quantif_to_exp kf env p
| Pat(p, BuiltinLabel Here) -> | Pat(p, BuiltinLabel Here) ->
named_predicate_to_exp kf env p named_predicate_to_exp kf env p
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment