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
a230bb98
Commit
a230bb98
authored
4 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[server] Property kind: adds check and instance kinds.
parent
80b26026
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/server/kernel_properties.ml
+6
-3
6 additions, 3 deletions
src/plugins/server/kernel_properties.ml
with
6 additions
and
3 deletions
src/plugins/server/kernel_properties.ml
+
6
−
3
View file @
a230bb98
...
@@ -50,6 +50,7 @@ struct
...
@@ -50,6 +50,7 @@ struct
let
t_assumes
=
t_clause
"assumes"
let
t_assumes
=
t_clause
"assumes"
let
t_requires
=
t_clause
"requires"
let
t_requires
=
t_clause
"requires"
let
t_instance
=
t_clause
"instance"
let
t_breaks
=
t_clause
"breaks"
let
t_breaks
=
t_clause
"breaks"
let
t_continues
=
t_clause
"continues"
let
t_continues
=
t_clause
"continues"
let
t_returns
=
t_clause
"returns"
let
t_returns
=
t_clause
"returns"
...
@@ -62,6 +63,7 @@ struct
...
@@ -62,6 +63,7 @@ struct
let
t_froms
=
t_kind
"froms"
"Clause `@assigns …
\\
from …`"
let
t_froms
=
t_kind
"froms"
"Clause `@assigns …
\\
from …`"
let
t_assert
=
t_clause
"assert"
let
t_assert
=
t_clause
"assert"
let
t_check
=
t_clause
"check"
let
t_loop_invariant
=
t_loop
"invariant"
let
t_loop_invariant
=
t_loop
"invariant"
let
t_loop_assigns
=
t_loop
"assigns"
let
t_loop_assigns
=
t_loop
"assigns"
let
t_loop_variant
=
t_loop
"variant"
let
t_loop_variant
=
t_loop
"variant"
...
@@ -89,7 +91,7 @@ struct
...
@@ -89,7 +91,7 @@ struct
open
Property
open
Property
let
rec
tag
=
function
let
tag
=
function
|
IPPredicate
{
ip_kind
}
->
|
IPPredicate
{
ip_kind
}
->
begin
match
ip_kind
with
begin
match
ip_kind
with
|
PKRequires
_
->
t_requires
|
PKRequires
_
->
t_requires
...
@@ -110,7 +112,8 @@ struct
...
@@ -110,7 +112,8 @@ struct
|
IPDisjoint
_
->
t_disjoint
|
IPDisjoint
_
->
t_disjoint
|
IPCodeAnnot
{
ica_ca
=
{
annot_content
}
}
->
|
IPCodeAnnot
{
ica_ca
=
{
annot_content
}
}
->
begin
match
annot_content
with
begin
match
annot_content
with
|
AAssert
_
->
t_assert
|
AAssert
(
_
,
Assert
,
_
)
->
t_assert
|
AAssert
(
_
,
Check
,
_
)
->
t_check
|
AStmtSpec
_
->
t_code_contract
|
AStmtSpec
_
->
t_code_contract
|
AInvariant
(
_
,
false
,_
)
->
t_code_invariant
|
AInvariant
(
_
,
false
,_
)
->
t_code_invariant
|
AInvariant
(
_
,
true
,_
)
->
t_loop_invariant
|
AInvariant
(
_
,
true
,_
)
->
t_loop_invariant
...
@@ -125,7 +128,7 @@ struct
...
@@ -125,7 +128,7 @@ struct
|
IPFrom
_
->
t_froms
|
IPFrom
_
->
t_froms
|
IPDecrease
_
->
t_decreases
|
IPDecrease
_
->
t_decreases
|
IPReachable
_
->
t_reachable
|
IPReachable
_
->
t_reachable
|
IPPropertyInstance
{
ii_ip
}
->
tag
ii_ip
|
IPPropertyInstance
_
->
t_instance
|
IPTypeInvariant
_
->
t_type_invariant
|
IPTypeInvariant
_
->
t_type_invariant
|
IPGlobalInvariant
_
->
t_global_invariant
|
IPGlobalInvariant
_
->
t_global_invariant
|
IPOther
{
io_name
}
->
Enum
.
instance
p_other
io_name
|
IPOther
{
io_name
}
->
Enum
.
instance
p_other
io_name
...
...
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