Skip to content
Snippets Groups Projects
Commit dca7c755 authored by Thibault Martin's avatar Thibault Martin Committed by Allan Blanchard
Browse files

Update vis_spec script to also check fundec.sspec

parent a9a28c2e
No related branches found
No related tags found
No related merge requests found
[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
......@@ -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 vspec 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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment