Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
140e2657
Commit
140e2657
authored
3 months ago
by
Valentin Perrelle
Committed by
David Bühler
2 months ago
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] rename API functions
parent
835fcdca
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/plugins/eva/Eva.mli
+2
-2
2 additions, 2 deletions
src/plugins/eva/Eva.mli
src/plugins/eva/utils/export.ml
+3
-3
3 additions, 3 deletions
src/plugins/eva/utils/export.ml
src/plugins/eva/utils/export.mli
+2
-2
2 additions, 2 deletions
src/plugins/eva/utils/export.mli
with
7 additions
and
7 deletions
src/plugins/eva/Eva.mli
+
2
−
2
View file @
140e2657
...
@@ -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
e
val
_value
:
val
e
xport
_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
e
val_instr
:
val
e
xport_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. *)
...
...
This diff is collapsed.
Click to expand it.
src/plugins/eva/utils/export.ml
+
3
−
3
View file @
140e2657
...
@@ -161,7 +161,7 @@ let domain lv value =
...
@@ -161,7 +161,7 @@ let domain lv value =
(* --- Evalutation --- *)
(* --- Evalutation --- *)
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
let
e
val
_value
~
loc
?
name
lv
request
=
let
e
xport
_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
e
val_instr
?
callstack
?
name
stmt
=
let
e
xport_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
)
(
e
val_instr
stmt
)
;
(
e
xport_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
...
...
This diff is collapsed.
Click to expand it.
src/plugins/eva/utils/export.mli
+
2
−
2
View file @
140e2657
...
@@ -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
e
val
_value
:
val
e
xport
_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
e
val_instr
:
val
e
xport_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. *)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment