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
a152bdcf
Commit
a152bdcf
authored
6 years ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[wp] extends bitwise tactical to dis-equalities
parent
b05901ca
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/wp/TacBitwised.ml
+22
-13
22 additions, 13 deletions
src/plugins/wp/TacBitwised.ml
with
22 additions
and
13 deletions
src/plugins/wp/TacBitwised.ml
+
22
−
13
View file @
a152bdcf
...
...
@@ -53,22 +53,31 @@ class bitcase =
~
descr
:
"Decompose Bitwise Equality"
~
params
:
[
prange
]
(* range:(0 <= a < 2^n && 0 <= b < 2^n)
&& bitwise:(forall k; 0 <= k <= n ==> (bit(a,k) <==> bit(b,k)))
|- a <= b *)
method
private
process
(
feedback
:
Tactical
.
feedback
)
~
neq
e
a
b
=
if
F
.
is_int
a
&&
F
.
is_int
b
then
let
n
=
self
#
get_field
vrange
in
let
inrange
=
F
.
p_and
(
range
a
n
)
(
range
b
n
)
in
let
bitwise
=
bitwise_eq
a
b
n
in
let
e'
=
if
neq
then
F
.
e_not
bitwise
else
bitwise
in
feedback
#
set_title
"Bitwise %s. (%d bits)"
(
if
neq
then
"Neq"
else
"Eq"
)
n
;
Tactical
.
Applicable
(
fun
seq
->
(
"range"
,
(
fst
seq
,
inrange
))
::
rewrite
"bitwise"
e
e'
seq
)
else
Tactical
.
Not_applicable
method
select
feedback
selection
=
let
e
=
Tactical
.
selected
selection
in
let
open
Qed
.
Logic
in
match
F
.
repr
e
with
|
Eq
(
a
,
b
)
when
F
.
is_int
a
&&
F
.
is_int
b
->
let
n
=
self
#
get_field
vrange
in
feedback
#
set_title
"Bitwise Eq. (%d bits)"
n
;
(* range:(0 <= a < 2^n && 0 <= b < 2^n)
&& bitwise:(forall k; 0 <= k <= n ==> (bit(a,k) <==> bit(b,k)))
|- a <= b *)
let
inrange
=
F
.
p_and
(
range
a
n
)
(
range
b
n
)
in
let
bitwise
=
bitwise_eq
a
b
n
in
Tactical
.
Applicable
(
fun
seq
->
(
"range"
,
(
fst
seq
,
inrange
))
::
rewrite
"bitwise"
e
bitwise
seq
)
|
Eq
(
a
,
b
)
->
self
#
process
feedback
~
neq
:
false
e
a
b
|
Neq
(
a
,
b
)
->
self
#
process
feedback
~
neq
:
true
e
a
b
|
_
->
Tactical
.
Not_applicable
end
...
...
@@ -97,7 +106,7 @@ let rec lookup push clause ~nbits ~priority p =
List
.
iter
(
lookup
push
clause
~
priority
~
nbits
)
ps
|
Imply
(
hs
,
p
)
->
List
.
iter
(
lookup
push
clause
~
priority
~
nbits
)
(
p
::
hs
)
|
Eq
(
x
,
y
)
when
F
.
is_int
x
&&
F
.
is_int
y
->
|
Eq
(
x
,
y
)
|
Neq
(
x
,
y
)
when
F
.
is_int
x
&&
F
.
is_int
y
->
let
bx
=
is_bitwised
x
in
let
by
=
is_bitwised
y
in
if
bx
||
by
then
...
...
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