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
e1c4c725
Commit
e1c4c725
authored
8 months ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[kernel] In interpreted_automata, slightly improves comments of Domain.
parent
4fe8dab8
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/kernel_services/analysis/interpreted_automata.mli
+10
-9
10 additions, 9 deletions
src/kernel_services/analysis/interpreted_automata.mli
with
10 additions
and
9 deletions
src/kernel_services/analysis/interpreted_automata.mli
+
10
−
9
View file @
e1c4c725
...
...
@@ -311,10 +311,10 @@ end
using this dataflow computation. *)
type
'
a
widening
=
|
Fixpoint
(** The analysis
have
reached a fixpoint *)
|
Widening
of
'
a
(** The analysis
have
not reached a fixpoint
and must
continue with the provided state, wide
ne
d
i
f
ter
min
ation
requires it. *)
|
Fixpoint
(** The analysis
of the loop has
reached a fixpoint
.
*)
|
Widening
of
'
a
(** The analysis
of the loop has
not reached a fixpoint
yet,
and must continue through a
ne
w
iteration
with the given
state, widened if termination
requires it. *)
(** Input domain for a simple dataflow analysis. *)
module
type
Domain
=
...
...
@@ -328,8 +328,8 @@ sig
analysis on the loop body: [v1] is the previous state before the
iteration, and [v2] the new state after the iteration.
The function must return [Fixpoint] if the analysis has reached a fixpoint
for the loop: this is the case if [join v1 v2] is equ
ivalent
to [v1],
as a
new iteration would have the same entry state as the last one.
for the loop: this is
usually
the case if [join v1 v2] is equ
al
to [v1],
as a
new iteration would have the same entry state as the last one.
Otherwise, it must return the new entry state for the next iteration,
by over-approximating the join between [v1] and [v2] such that
any sequence of successive widenings is ultimately stationary,
...
...
@@ -337,10 +337,11 @@ sig
This ensures the analysis termination. *)
val
widen
:
t
->
t
->
t
widening
(** Transfer function for edges: computes the state after the transition
from the state before. Returns None if the end of the transition is not
(** Transfer function for edges: [transfer v e s] computes the state
after the transition [e.edge_transition] from the state [s] before,
at vertex [v]. Returns None if the end of the transition is not
reachable from the given state. *)
val
transfer
:
vertex
->
vertex
edge
->
t
->
t
option
val
transfer
:
vertex
->
vertex
edge
->
t
->
t
option
end
(** Simple dataflow analysis *)
...
...
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