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
cdde6e8c
Commit
cdde6e8c
authored
4 years ago
by
Allan Blanchard
Browse files
Options
Downloads
Patches
Plain Diff
[Kernel] Status_by_call changes node after visit for replacement
parent
0ad5c75a
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/kernel_services/ast_data/statuses_by_call.ml
+22
-19
22 additions, 19 deletions
src/kernel_services/ast_data/statuses_by_call.ml
with
22 additions
and
19 deletions
src/kernel_services/ast_data/statuses_by_call.ml
+
22
−
19
View file @
cdde6e8c
...
...
@@ -111,23 +111,27 @@ let replacement_visitor ~arguments = object (self)
|
TVar
{
lv_origin
=
Some
vinfo
}
when
vinfo
.
vformal
->
if
under_label
then
raise
Non_Transposable
;
begin
let
new_term
=
replace_formal_by_concrete
vinfo
arguments
in
let
add_offset
lv
=
TLval
(
Logic_const
.
addTermOffsetLval
t_offset
lv
)
in
match
new_term
.
term_node
with
|
TLval
lv
->
Cil
.
ChangeDoChildrenPost
(
add_offset
lv
,
fun
x
->
x
)
|
_
->
if
t_offset
=
TNoOffset
then
Cil
.
ChangeTo
new_term
.
term_node
else
let
ltyp
=
new_term
.
term_type
in
let
tmp_lvar
=
Cil
.
make_temp_logic_var
ltyp
in
let
tmp_linfo
=
{
l_var_info
=
tmp_lvar
;
l_body
=
LBterm
new_term
;
l_type
=
None
;
l_tparams
=
[]
;
l_labels
=
[]
;
l_profile
=
[]
;
}
in
let
lval_node
=
TLval
(
TVar
tmp_lvar
,
t_offset
)
in
let
lval_term
=
Tlet
(
tmp_linfo
,
Logic_const
.
term
lval_node
ltyp
)
in
Cil
.
ChangeDoChildrenPost
(
lval_term
,
fun
x
->
x
)
let
post_replace
_
=
let
new_term
=
replace_formal_by_concrete
vinfo
arguments
in
let
add_offset
lv
=
TLval
(
Logic_const
.
addTermOffsetLval
t_offset
lv
)
in
match
new_term
.
term_node
with
|
TLval
lv
->
add_offset
lv
|
node
->
if
t_offset
=
TNoOffset
then
node
else
let
ltyp
=
new_term
.
term_type
in
let
tmp_lvar
=
Cil
.
make_temp_logic_var
ltyp
in
let
tmp_linfo
=
{
l_var_info
=
tmp_lvar
;
l_body
=
LBterm
new_term
;
l_type
=
None
;
l_tparams
=
[]
;
l_labels
=
[]
;
l_profile
=
[]
;
}
in
let
lval_node
=
TLval
(
TVar
tmp_lvar
,
t_offset
)
in
Tlet
(
tmp_linfo
,
Logic_const
.
term
lval_node
ltyp
)
in
Cil
.
DoChildrenPost
post_replace
end
|
_
->
Cil
.
DoChildren
...
...
@@ -149,8 +153,7 @@ let replacement_visitor ~arguments = object (self)
|
_
->
Cil
.
DoChildren
method
!
vlogic_label
=
function
|
BuiltinLabel
Pre
->
Cil
.
ChangeDoChildrenPost
(
Logic_const
.
here_label
,
fun
x
->
x
)
|
BuiltinLabel
Pre
->
Cil
.
DoChildrenPost
(
fun
_
->
Logic_const
.
here_label
)
|
_
->
Cil
.
DoChildren
end
...
...
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