Skip to content
Snippets Groups Projects
Commit 140e2657 authored by Valentin Perrelle's avatar Valentin Perrelle Committed by David Bühler
Browse files

[Eva] rename API functions

parent 835fcdca
No related branches found
No related tags found
No related merge requests found
...@@ -969,7 +969,7 @@ module Export: sig ...@@ -969,7 +969,7 @@ module Export: sig
(* -------------------------------------------------------------------------- *) (* -------------------------------------------------------------------------- *)
(** Generates a predicate characterizing the domain of the l-value. *) (** Generates a predicate characterizing the domain of the l-value. *)
val eval_value : val export_value :
loc:location -> ?name:string list -> lval -> Results.request -> predicate loc:location -> ?name:string list -> lval -> Results.request -> predicate
(** (**
...@@ -981,7 +981,7 @@ module Export: sig ...@@ -981,7 +981,7 @@ module Export: sig
left-hand-side are not visited, but their inner l-values are visited; any left-hand-side are not visited, but their inner l-values are visited; any
l-value from the right-hand-side of the instruction is also visited. l-value from the right-hand-side of the instruction is also visited.
*) *)
val eval_instr : val export_stmt :
?callstack:Callstack.t -> ?name:string list -> stmt -> predicate list ?callstack:Callstack.t -> ?name:string list -> stmt -> predicate list
(** Emitter used for generating domain assertions. *) (** Emitter used for generating domain assertions. *)
......
...@@ -161,7 +161,7 @@ let domain lv value = ...@@ -161,7 +161,7 @@ let domain lv value =
(* --- Evalutation --- *) (* --- Evalutation --- *)
(* -------------------------------------------------------------------------- *) (* -------------------------------------------------------------------------- *)
let eval_value ~loc ?name lv request = let export_value ~loc ?name lv request =
Results.eval_lval lv request Results.eval_lval lv request
|> domain lv |> domain lv
|> predicate ?name ~loc |> predicate ?name ~loc
...@@ -233,7 +233,7 @@ let collect stmt = ...@@ -233,7 +233,7 @@ let collect stmt =
end ; end ;
acc#flush acc#flush
let eval_instr ?callstack ?name stmt = let export_stmt ?callstack ?name stmt =
let request = let request =
let r = Results.before stmt in let r = Results.before stmt in
match callstack with match callstack with
...@@ -274,7 +274,7 @@ let generator () : visitor = ...@@ -274,7 +274,7 @@ let generator () : visitor =
begin begin
List.iter List.iter
(Annotations.add_assert emitter ~kf stmt) (Annotations.add_assert emitter ~kf stmt)
(eval_instr stmt) ; (export_stmt stmt) ;
Annotations.iter_code_annot Annotations.iter_code_annot
(fun e ca -> (fun e ca ->
if Emitter.equal e emitter then if Emitter.equal e emitter then
......
...@@ -29,7 +29,7 @@ open Cil_types ...@@ -29,7 +29,7 @@ open Cil_types
(* -------------------------------------------------------------------------- *) (* -------------------------------------------------------------------------- *)
(** Generates a predicate characterizing the domain of the l-value. *) (** Generates a predicate characterizing the domain of the l-value. *)
val eval_value : val export_value :
loc:location -> ?name:string list -> lval -> Results.request -> predicate loc:location -> ?name:string list -> lval -> Results.request -> predicate
(** (**
...@@ -41,7 +41,7 @@ val eval_value : ...@@ -41,7 +41,7 @@ val eval_value :
left-hand-side are not visited, but their inner l-values are visited; any left-hand-side are not visited, but their inner l-values are visited; any
l-value from the right-hand-side of the instruction is also visited. l-value from the right-hand-side of the instruction is also visited.
*) *)
val eval_instr : val export_stmt :
?callstack:Callstack.t -> ?name:string list -> stmt -> predicate list ?callstack:Callstack.t -> ?name:string list -> stmt -> predicate list
(** Emitter used for generating domain assertions. *) (** Emitter used for generating domain assertions. *)
......
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