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
dca7c755
Commit
dca7c755
authored
1 year ago
by
Thibault Martin
Committed by
Allan Blanchard
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Update vis_spec script to also check fundec.sspec
parent
a9a28c2e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/misc/oracle/vis_spec.res.oracle
+22
-5
22 additions, 5 deletions
tests/misc/oracle/vis_spec.res.oracle
tests/misc/vis_spec.ml
+18
-9
18 additions, 9 deletions
tests/misc/vis_spec.ml
with
40 additions
and
14 deletions
tests/misc/oracle/vis_spec.res.oracle
+
22
−
5
View file @
dca7c755
[kernel] Parsing vis_spec.i (no preprocessing)
Starting visit
Considering spec of function g
Function prototype; Funspec is 'assigns \nothing;'
Considering spec of function f
Funspec of f is 'assigns \nothing;' through visitor
It is 'assigns \nothing;' through get_spec
Considering vspec of function g
Function prototype; Funspec is
'terminates \true;
exits \false;
allocates \nothing;'
Considering sspec of function f
Funspec of f is '' through visitor
It is 'terminates \true;
exits \false;
assigns \nothing;
allocates \nothing;'
through get_spec
Considering vspec of function f
Funspec of f is 'terminates \true;
exits \false;
allocates \nothing;'
through visitor
It is 'terminates \true;
exits \false;
assigns \nothing;
allocates \nothing;'
through get_spec
End visit
This diff is collapsed.
Click to expand it.
tests/misc/vis_spec.ml
+
18
−
9
View file @
dca7c755
...
...
@@ -5,18 +5,27 @@ class pathcrawlerVisitor prj =
object
(
self
)
inherit
Visitor
.
frama_c_copy
prj
method
!
vfunc
fundec
=
Format
.
printf
"Considering sspec of function %s@."
fundec
.
svar
.
vname
;
Format
.
printf
"@[Funspec of %s is@ @['%a'@]@ through visitor@]@."
fundec
.
svar
.
vname
Printer
.
pp_funspec
fundec
.
sspec
;
Format
.
printf
"@[It is@ @['%a'@]@ through get_spec@]@."
Printer
.
pp_funspec
(
Annotations
.
funspec
(
Globals
.
Functions
.
get
fundec
.
svar
));
DoChildren
method
!
vspec
sp
=
Format
.
printf
"Considering spec of function %s@."
Format
.
printf
"Considering
v
spec of function %s@."
(
Kernel_function
.
get_name
(
Option
.
get
self
#
current_kf
));
(
match
self
#
current_func
with
|
Some
f
->
if
f
.
svar
.
vname
=
"f"
then
(
Format
.
printf
"@[Funspec of f is@ @['%a'@]@ through visitor@]@."
Printer
.
pp_funspec
sp
;
Format
.
printf
"@[It is@ @['%a'@]@ through get_spec@]@."
Printer
.
pp_funspec
(
Annotations
.
funspec
(
Globals
.
Functions
.
get
f
.
svar
));
)
|
Some
fundec
->
Format
.
printf
"@[Funspec of %s is@ @['%a'@]@ through visitor@]@."
fundec
.
svar
.
vname
Printer
.
pp_funspec
sp
;
Format
.
printf
"@[It is@ @['%a'@]@ through get_spec@]@."
Printer
.
pp_funspec
(
Annotations
.
funspec
(
Globals
.
Functions
.
get
fundec
.
svar
));
|
None
->
Format
.
printf
"@[Function prototype;@ Funspec is@ @['%a'@]@]@."
Printer
.
pp_funspec
sp
;
...
...
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