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
211dc770
Commit
211dc770
authored
9 months ago
by
Loïc Correnson
Committed by
Loïc Correnson
9 months ago
Browse files
Options
Downloads
Patches
Plain Diff
[region] statement annotations
parent
d4af1830
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/region/annot.ml
+15
-10
15 additions, 10 deletions
src/plugins/region/annot.ml
src/plugins/region/annot.mli
+1
-0
1 addition, 0 deletions
src/plugins/region/annot.mli
with
16 additions
and
10 deletions
src/plugins/region/annot.ml
+
15
−
10
View file @
211dc770
...
@@ -222,15 +222,15 @@ let rec parse_named_lpath (env:env) p =
...
@@ -222,15 +222,15 @@ let rec parse_named_lpath (env:env) p =
let
kspec
=
ref
0
let
kspec
=
ref
0
let
registry
=
Hashtbl
.
create
0
let
registry
=
Hashtbl
.
create
0
let
of_extid
=
Hashtbl
.
find
registry
let
of_extid
id
=
try
Hashtbl
.
find
registry
id
with
Not_found
->
[]
let
of_ext
rev
=
function
let
of_ext
ension
=
function
|
{
ext_name
=
"region"
;
ext_kind
=
Ext_id
k
}
->
of_extid
k
|
{
ext_name
=
"region"
;
ext_kind
=
Ext_id
k
}
->
of_extid
k
|
_
->
raise
Not_found
|
_
->
[]
let
of_
extension
e
=
List
.
rev
(
of_extrev
e
)
let
of_
code_annot
=
function
let
of_behavior
bhv
=
|
{
annot_content
=
AExtended
(
_
,_,
e
)
}
->
of_extension
e
List
.
fold_left
|
_
->
[]
(
fun
acc
e
->
List
.
rev_append
(
try
of_extrev
e
with
Not_found
->
[]
)
acc
)
[]
bhv
.
Cil_types
.
b_extended
let
of_behavior
bhv
=
List
.
concat_map
of_extension
bhv
.
b_extended
let
typecheck
typing_context
_loc
ps
=
let
typecheck
typing_context
_loc
ps
=
let
env
=
{
let
env
=
{
...
@@ -251,7 +251,12 @@ let printer _pp fmt = function
...
@@ -251,7 +251,12 @@ let printer _pp fmt = function
|
_
->
()
|
_
->
()
let
()
=
let
()
=
Acsl_extension
.
register_behavior
begin
~
plugin
:
"region"
"alias"
typecheck
~
printer
false
Acsl_extension
.
register_behavior
~
plugin
:
"region"
"region"
typecheck
~
printer
false
;
Acsl_extension
.
register_code_annot
~
plugin
:
"region"
"region"
typecheck
~
printer
false
;
end
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
This diff is collapsed.
Click to expand it.
src/plugins/region/annot.mli
+
1
−
0
View file @
211dc770
...
@@ -50,4 +50,5 @@ val pp_region : Format.formatter -> region -> unit
...
@@ -50,4 +50,5 @@ val pp_region : Format.formatter -> region -> unit
val
pp_regions
:
Format
.
formatter
->
region
list
->
unit
val
pp_regions
:
Format
.
formatter
->
region
list
->
unit
val
of_extension
:
acsl_extension
->
region
list
val
of_extension
:
acsl_extension
->
region
list
val
of_code_annot
:
code_annotation
->
region
list
val
of_behavior
:
behavior
->
region
list
val
of_behavior
:
behavior
->
region
list
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