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
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
Charles Southerland
frama-c
Commits
22203ac6
Commit
22203ac6
authored
7 years ago
by
Fonenantsoa Maurica
Committed by
Fonenantsoa Maurica
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Clear environment.
parent
7db479b9
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/plugins/e-acsl/interval.ml
+6
-2
6 additions, 2 deletions
src/plugins/e-acsl/interval.ml
src/plugins/e-acsl/interval.mli
+1
-0
1 addition, 0 deletions
src/plugins/e-acsl/interval.mli
src/plugins/e-acsl/translate.ml
+4
-1
4 additions, 1 deletion
src/plugins/e-acsl/translate.ml
with
11 additions
and
3 deletions
src/plugins/e-acsl/interval.ml
+
6
−
2
View file @
22203ac6
...
@@ -60,6 +60,7 @@ module Env = struct
...
@@ -60,6 +60,7 @@ module Env = struct
let
tbl
:
Ival
.
t
Logic_var
.
Hashtbl
.
t
=
Logic_var
.
Hashtbl
.
create
7
let
tbl
:
Ival
.
t
Logic_var
.
Hashtbl
.
t
=
Logic_var
.
Hashtbl
.
create
7
let
clear
()
=
Logic_var
.
Hashtbl
.
clear
tbl
let
clear
()
=
Logic_var
.
Hashtbl
.
clear
tbl
let
add
=
Logic_var
.
Hashtbl
.
add
tbl
let
add
=
Logic_var
.
Hashtbl
.
add
tbl
let
remove
=
Logic_var
.
Hashtbl
.
remove
tbl
let
find
=
Logic_var
.
Hashtbl
.
find
tbl
let
find
=
Logic_var
.
Hashtbl
.
find
tbl
end
end
...
@@ -193,9 +194,12 @@ let rec infer t =
...
@@ -193,9 +194,12 @@ let rec infer t =
|
Tlet
(
li
,
t
)
->
|
Tlet
(
li
,
t
)
->
let
li_t
=
Misc
.
term_of_li
li
in
let
li_t
=
Misc
.
term_of_li
li
in
let
li_v
=
li
.
l_var_info
in
let
i
=
infer
li_t
in
let
i
=
infer
li_t
in
Env
.
add
li
.
l_var_info
i
;
Env
.
add
li_v
i
;
infer
t
let
i
=
infer
t
in
Env
.
remove
li_v
;
i
|
TConst
(
LStr
_
|
LWStr
_
|
LReal
_
)
|
TConst
(
LStr
_
|
LWStr
_
|
LReal
_
)
|
TBinOp
(
PlusPI
,_,_
)
|
TBinOp
(
PlusPI
,_,_
)
|
TBinOp
(
IndexPI
,_,_
)
|
TBinOp
(
IndexPI
,_,_
)
...
...
This diff is collapsed.
Click to expand it.
src/plugins/e-acsl/interval.mli
+
1
−
0
View file @
22203ac6
...
@@ -65,6 +65,7 @@ val interv_of_typ: Cil_types.typ -> Ival.t
...
@@ -65,6 +65,7 @@ val interv_of_typ: Cil_types.typ -> Ival.t
module
Env
:
sig
module
Env
:
sig
val
clear
:
unit
->
unit
val
clear
:
unit
->
unit
val
add
:
Cil_types
.
logic_var
->
Ival
.
t
->
unit
val
add
:
Cil_types
.
logic_var
->
Ival
.
t
->
unit
val
remove
:
Cil_types
.
logic_var
->
unit
end
end
(* ************************************************************************** *)
(* ************************************************************************** *)
...
...
This diff is collapsed.
Click to expand it.
src/plugins/e-acsl/translate.ml
+
4
−
1
View file @
22203ac6
...
@@ -501,6 +501,7 @@ and context_insensitive_term_to_exp kf env t =
...
@@ -501,6 +501,7 @@ and context_insensitive_term_to_exp kf env t =
|
Tlet
(
li
,
t
)
->
|
Tlet
(
li
,
t
)
->
let
env
=
env_of_li
li
kf
env
loc
in
let
env
=
env_of_li
li
kf
env
loc
in
let
e
,
env
=
term_to_exp
kf
env
t
in
let
e
,
env
=
term_to_exp
kf
env
t
in
Interval
.
Env
.
remove
li
.
l_var_info
;
e
,
env
,
false
,
""
e
,
env
,
false
,
""
(* Convert an ACSL term into a corresponding C expression (if any) in the given
(* Convert an ACSL term into a corresponding C expression (if any) in the given
...
@@ -735,7 +736,9 @@ and named_predicate_content_to_exp ?name kf env p =
...
@@ -735,7 +736,9 @@ and named_predicate_content_to_exp ?name kf env p =
conditional_to_exp
loc
None
e1
res2
res3
conditional_to_exp
loc
None
e1
res2
res3
|
Plet
(
li
,
p
)
->
|
Plet
(
li
,
p
)
->
let
env
=
env_of_li
li
kf
env
loc
in
let
env
=
env_of_li
li
kf
env
loc
in
named_predicate_to_exp
kf
env
p
let
e
,
env
=
named_predicate_to_exp
kf
env
p
in
Interval
.
Env
.
remove
li
.
l_var_info
;
e
,
env
|
Pforall
_
|
Pexists
_
->
Quantif
.
quantif_to_exp
kf
env
p
|
Pforall
_
|
Pexists
_
->
Quantif
.
quantif_to_exp
kf
env
p
|
Pat
(
p
,
BuiltinLabel
Here
)
->
|
Pat
(
p
,
BuiltinLabel
Here
)
->
named_predicate_to_exp
kf
env
p
named_predicate_to_exp
kf
env
p
...
...
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