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
88689654
Commit
88689654
authored
2 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] Values request: fixes evaluation of uninitialized or escaping lvalues.
parent
a06c4cd5
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/eva/api/values_request.ml
+6
-6
6 additions, 6 deletions
src/plugins/eva/api/values_request.ml
with
6 additions
and
6 deletions
src/plugins/eva/api/values_request.ml
+
6
−
6
View file @
88689654
...
...
@@ -403,17 +403,17 @@ module Proxy(A : Analysis.S) : EvaProxy = struct
(* Result of an evaluation: a generic value for scalar types, or an offsetmap
for struct and arrays. *)
type
result
=
|
Value
of
A
.
Val
.
t
|
Value
of
A
.
Val
.
t
Eval
.
flagged_value
|
Offsetmap
of
offsetmap
|
Status
of
truth
let
pp_result
typ
fmt
=
function
|
Value
v
->
A
.
Val
.
pretty
fmt
v
|
Value
v
->
(
Eval
.
Flagged_Value
.
pretty
(
A
.
Val
.
pretty_typ
(
Some
typ
)))
fmt
v
|
Offsetmap
offsm
->
pp_offsetmap
typ
fmt
offsm
|
Status
truth
->
Alarmset
.
Status
.
pretty
fmt
truth
let
get_pointed_bases
=
function
|
Value
v
->
get_bases
(
get_cvalue
v
)
|
Value
v
->
get_bases
(
Bottom
.
fold
~
bottom
:
Cvalue
.
V
.
bottom
get_cvalue
v
.
v
)
|
Offsetmap
offsm
->
get_pointed_bases
offsm
|
Status
_
->
Base
.
Hptset
.
empty
...
...
@@ -460,13 +460,13 @@ module Proxy(A : Analysis.S) : EvaProxy = struct
let
eval_lval
lval
state
=
match
Cil
.(
unrollType
(
typeOfLval
lval
))
with
|
TInt
_
|
TEnum
_
|
TPtr
_
|
TFloat
_
->
A
.
copy_lvalue
state
lval
>>=.
fun
value
->
value
.
v
>>-:
fun
v
->
Value
v
A
.
copy_lvalue
state
lval
>>=:
fun
value
->
Value
value
|
_
->
lval_to_offsetmap
lval
state
>>=:
fun
offsm
->
Offsetmap
offsm
let
eval_expr
expr
state
=
A
.
eval_expr
state
expr
>>=:
fun
value
->
Value
value
A
.
eval_expr
state
expr
>>=:
fun
value
->
Value
{
v
=
`Value
value
;
initialized
=
true
;
escaping
=
false
}
let
eval_pred
eval_point
predicate
state
=
let
result
=
...
...
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