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
471e777a
Commit
471e777a
authored
14 years ago
by
Julien Signoles
Browse files
Options
Downloads
Patches
Plain Diff
comments
parent
1639c91a
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/e-acsl/visit.ml
+14
-0
14 additions, 0 deletions
src/plugins/e-acsl/visit.ml
with
14 additions
and
0 deletions
src/plugins/e-acsl/visit.ml
+
14
−
0
View file @
471e777a
...
...
@@ -41,6 +41,7 @@ extern void eprintf(char * ); \n\
\n
\
void e_acsl_fail(char *msg) { eprintf(msg); exit(1); }"
)
(* Build a C conditional doing a runtime assertion check. *)
let
mk_if
acc
e
p
=
(* voidType is incorrect: will be resolved later *)
let
f
=
...
...
@@ -55,6 +56,8 @@ let mk_if acc e p =
let
s
=
Instr
(
Call
(
None
,
f
,
[
mkString
unknown_loc
msg
]
,
unknown_loc
))
in
mkStmt
(
If
(
e
,
mkBlock
[
mkStmt
s
]
,
mkBlock
[]
,
unknown_loc
))
::
acc
(* convert an ACSL named predicate into the opposite C expression (if any).
E.g. \true is converted into 0. *)
let
rec
named_predicate_to_revexp
p
=
match
p
.
content
with
|
Pfalse
->
one
~
loc
:
unknown_loc
|
Ptrue
->
zero
~
loc
:
unknown_loc
...
...
@@ -79,6 +82,11 @@ let rec named_predicate_to_revexp p = match p.content with
|
Pfresh
_
->
not_yet
"
\\
fresh"
|
Psubtype
_
->
not_yet
"subtyping relation"
(* ************************************************************************** *)
(* [convert_*] converts a given ACSL annotation into the corresponding C
statement (if any) for runtime assertion checking *)
(* ************************************************************************** *)
let
convert_named_predicate
acc
generate
p
=
if
generate
then
mk_if
acc
(
named_predicate_to_revexp
p
)
p
else
acc
...
...
@@ -96,8 +104,14 @@ let convert_rooted acc generate (User a | AI(_, a)) =
let
convert_before_after
acc
generate
(
Before
r
|
After
r
)
=
convert_rooted
acc
generate
r
(* ************************************************************************** *)
(* Visitor *)
(* ************************************************************************** *)
(* local reference to the below visitor and to [do_visit] *)
let
first_global
=
ref
true
(* the main visitor performing e-acsl checking and C code generator *)
class
e_acsl_visitor
prj
generate
=
object
inherit
Visitor
.
generic_frama_c_visitor
...
...
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