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
f1b67520
Commit
f1b67520
authored
4 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] Cvalue: adds backward operator for the logical conjunction LAnd.
parent
6938fe66
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/value/values/cvalue_backward.ml
+16
-0
16 additions, 0 deletions
src/plugins/value/values/cvalue_backward.ml
with
16 additions
and
0 deletions
src/plugins/value/values/cvalue_backward.ml
+
16
−
0
View file @
f1b67520
...
@@ -228,6 +228,20 @@ let backward_bor ~v1 ~v2 ~res =
...
@@ -228,6 +228,20 @@ let backward_bor ~v1 ~v2 ~res =
in
in
backward_bor_aux
v1
v2
,
backward_bor_aux
v2
v1
backward_bor_aux
v1
v2
,
backward_bor_aux
v2
v1
let
backward_land
~
v1
~
v2
~
res
=
if
V
.
is_zero
res
then
match
V
.
contains_zero
v1
,
V
.
contains_zero
v2
with
|
true
,
true
->
None
|
false
,
false
->
Some
(
V
.
bottom
,
V
.
bottom
)
|
true
,
false
->
Some
(
V
.
singleton_zero
,
v2
)
|
false
,
true
->
Some
(
v1
,
V
.
singleton_zero
)
else
if
V
.
contains_zero
res
then
None
else
let
v1'
=
V
.(
diff
v1
singleton_zero
)
and
v2'
=
V
.(
diff
v2
singleton_zero
)
in
if
V
.
equal
v1
v1'
&&
V
.
equal
v2
v2'
then
None
else
Some
(
v1'
,
v2'
)
let
backward_binop
~
typ_res
~
res_value
~
typ_e1
v1
binop
v2
=
let
backward_binop
~
typ_res
~
res_value
~
typ_e1
v1
binop
v2
=
let
typ
=
Cil
.
unrollType
typ_res
in
let
typ
=
Cil
.
unrollType
typ_res
in
match
binop
,
typ
with
match
binop
,
typ
with
...
@@ -303,6 +317,8 @@ let backward_binop ~typ_res ~res_value ~typ_e1 v1 binop v2 =
...
@@ -303,6 +317,8 @@ let backward_binop ~typ_res ~res_value ~typ_e1 v1 binop v2 =
|
BOr
,
TInt
_
->
Some
(
backward_bor
~
v1
~
v2
~
res
:
res_value
)
|
BOr
,
TInt
_
->
Some
(
backward_bor
~
v1
~
v2
~
res
:
res_value
)
|
LAnd
,
TInt
_
->
backward_land
~
v1
~
v2
~
res
:
res_value
|
_
,
_
->
None
|
_
,
_
->
None
let
backward_unop
~
typ_arg
op
~
arg
:_
~
res
=
let
backward_unop
~
typ_arg
op
~
arg
:_
~
res
=
...
...
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