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
5da3ed83
Commit
5da3ed83
authored
4 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] Adds a test of the subdivision of evaluation on a pointer subexpression.
parent
0df0c707
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
tests/value/nonlin.c
+7
-1
7 additions, 1 deletion
tests/value/nonlin.c
tests/value/oracle/nonlin.res.oracle
+82
-66
82 additions, 66 deletions
tests/value/oracle/nonlin.res.oracle
with
89 additions
and
67 deletions
tests/value/nonlin.c
+
7
−
1
View file @
5da3ed83
...
@@ -16,9 +16,15 @@ void subdivide_pointer () {
...
@@ -16,9 +16,15 @@ void subdivide_pointer () {
int
*
q
=
p
+
i
-
i
;
int
*
q
=
p
+
i
-
i
;
/* The complete expression is a singleton: no subdivision. */
/* The complete expression is a singleton: no subdivision. */
y
=
*
(
&
y
+
i
-
i
);
y
=
*
(
&
y
+
i
-
i
);
/* The complete expression is an imprecise integer: subdivision (but no
t
/* The complete expression is an imprecise integer: subdivision (but no
reduction, as it cannot improve the bounds of the result). */
reduction, as it cannot improve the bounds of the result). */
y
=
*
(
p
+
i
-
i
);
y
=
*
(
p
+
i
-
i
);
/* The subexpression contains a pointer, but the complete expression is an
integer, and the subdivision can reduce its value. */
int
t
[
10
]
=
{
0
,
1
,
2
,
4
,
5
,
6
,
7
,
8
,
9
};
p
=
&
t
[
0
];
i
=
Frama_C_interval
(
0
,
10
);
y
=
*
(
p
+
i
-
i
);
/* The splitted lvalue contains a pointer value: no subdivision. */
/* The splitted lvalue contains a pointer value: no subdivision. */
i
=
v
?
i
:
(
int
)
&
x
;
i
=
v
?
i
:
(
int
)
&
x
;
y
=
*
(
p
+
i
-
i
);
y
=
*
(
p
+
i
-
i
);
...
...
This diff is collapsed.
Click to expand it.
tests/value/oracle/nonlin.res.oracle
+
82
−
66
View file @
5da3ed83
...
@@ -24,28 +24,28 @@
...
@@ -24,28 +24,28 @@
[31] ∈ {5}
[31] ∈ {5}
[32..35] ∈ {0}
[32..35] ∈ {0}
[eva] computing for function subdivide_integer <- main.
[eva] computing for function subdivide_integer <- main.
Called from tests/value/nonlin.c:1
19
.
Called from tests/value/nonlin.c:1
25
.
[eva:nonlin] tests/value/nonlin.c:3
1
:
[eva:nonlin] tests/value/nonlin.c:3
7
:
non-linear '((int)z + 675) * ((int)z + 675)', lv 'z'
non-linear '((int)z + 675) * ((int)z + 675)', lv 'z'
[eva:nonlin] tests/value/nonlin.c:3
1
: subdividing on z
[eva:nonlin] tests/value/nonlin.c:3
7
: subdividing on z
[eva:nonlin] tests/value/nonlin.c:3
2
:
[eva:nonlin] tests/value/nonlin.c:3
8
:
non-linear '((int)z + 17817) * ((int)z + 17817)', lv 'z'
non-linear '((int)z + 17817) * ((int)z + 17817)', lv 'z'
[eva:nonlin] tests/value/nonlin.c:3
2
: subdividing on z
[eva:nonlin] tests/value/nonlin.c:3
8
: subdividing on z
[eva:alarm] tests/value/nonlin.c:3
2
: Warning:
[eva:alarm] tests/value/nonlin.c:3
8
: Warning:
signed overflow.
signed overflow.
assert (int)((int)z + 17817) * (int)((int)z + 17817) ≤ 2147483647;
assert (int)((int)z + 17817) * (int)((int)z + 17817) ≤ 2147483647;
[eva:nonlin] tests/value/nonlin.c:
39
:
[eva:nonlin] tests/value/nonlin.c:
45
:
non-linear '(i2 + (long long)3) * (i2 + (long long)3)', lv 'i2'
non-linear '(i2 + (long long)3) * (i2 + (long long)3)', lv 'i2'
[eva:nonlin] tests/value/nonlin.c:
39
: non-linear 'i1 * i1', lv 'i1'
[eva:nonlin] tests/value/nonlin.c:
45
: non-linear 'i1 * i1', lv 'i1'
[eva:nonlin] tests/value/nonlin.c:
39
: subdividing on i2
[eva:nonlin] tests/value/nonlin.c:
45
: subdividing on i2
[eva:nonlin] tests/value/nonlin.c:
39
: subdividing on i1
[eva:nonlin] tests/value/nonlin.c:
45
: subdividing on i1
[eva:alarm] tests/value/nonlin.c:4
3
: Warning: assertion got status unknown.
[eva:alarm] tests/value/nonlin.c:4
9
: Warning: assertion got status unknown.
[eva:nonlin] tests/value/nonlin.c:
44
: non-linear '(int)idx * (int)idx', lv 'idx'
[eva:nonlin] tests/value/nonlin.c:
50
: non-linear '(int)idx * (int)idx', lv 'idx'
[eva:nonlin] tests/value/nonlin.c:
44
: subdividing on idx
[eva:nonlin] tests/value/nonlin.c:
50
: subdividing on idx
[eva] Recording results for subdivide_integer
[eva] Recording results for subdivide_integer
[eva] Done for function subdivide_integer
[eva] Done for function subdivide_integer
[eva] computing for function subdivide_pointer <- main.
[eva] computing for function subdivide_pointer <- main.
Called from tests/value/nonlin.c:12
0
.
Called from tests/value/nonlin.c:12
6
.
[eva] computing for function Frama_C_interval <- subdivide_pointer <- main.
[eva] computing for function Frama_C_interval <- subdivide_pointer <- main.
Called from tests/value/nonlin.c:12.
Called from tests/value/nonlin.c:12.
[eva] using specification for function Frama_C_interval
[eva] using specification for function Frama_C_interval
...
@@ -63,97 +63,103 @@
...
@@ -63,97 +63,103 @@
[eva:nonlin] tests/value/nonlin.c:21: subdividing on i
[eva:nonlin] tests/value/nonlin.c:21: subdividing on i
[eva:alarm] tests/value/nonlin.c:21: Warning:
[eva:alarm] tests/value/nonlin.c:21: Warning:
out of bounds read. assert \valid_read((p + i) - i);
out of bounds read. assert \valid_read((p + i) - i);
[eva:alarm] tests/value/nonlin.c:23: Warning:
[eva] computing for function Frama_C_interval <- subdivide_pointer <- main.
Called from tests/value/nonlin.c:26.
[eva] tests/value/nonlin.c:26:
function Frama_C_interval: precondition 'order' got status valid.
[eva] Done for function Frama_C_interval
[eva:nonlin] tests/value/nonlin.c:27: subdividing on i
[eva:alarm] tests/value/nonlin.c:29: Warning:
pointer downcast. assert (unsigned int)(&x) ≤ 2147483647;
pointer downcast. assert (unsigned int)(&x) ≤ 2147483647;
[eva:alarm] tests/value/nonlin.c:
24
: Warning:
[eva:alarm] tests/value/nonlin.c:
30
: Warning:
out of bounds read. assert \valid_read((p + i) - i);
out of bounds read. assert \valid_read((p + i) - i);
[eva] Recording results for subdivide_pointer
[eva] Recording results for subdivide_pointer
[eva] Done for function subdivide_pointer
[eva] Done for function subdivide_pointer
[eva] computing for function subdivide_several_variables <- main.
[eva] computing for function subdivide_several_variables <- main.
Called from tests/value/nonlin.c:12
1
.
Called from tests/value/nonlin.c:12
7
.
[eva] computing for function Frama_C_interval <- subdivide_several_variables <-
[eva] computing for function Frama_C_interval <- subdivide_several_variables <-
main.
main.
Called from tests/value/nonlin.c:5
1
.
Called from tests/value/nonlin.c:5
7
.
[eva] tests/value/nonlin.c:5
1
:
[eva] tests/value/nonlin.c:5
7
:
function Frama_C_interval: precondition 'order' got status valid.
function Frama_C_interval: precondition 'order' got status valid.
[eva] Done for function Frama_C_interval
[eva] Done for function Frama_C_interval
[eva] computing for function Frama_C_interval <- subdivide_several_variables <-
[eva] computing for function Frama_C_interval <- subdivide_several_variables <-
main.
main.
Called from tests/value/nonlin.c:5
2
.
Called from tests/value/nonlin.c:5
8
.
[eva] tests/value/nonlin.c:5
2
:
[eva] tests/value/nonlin.c:5
8
:
function Frama_C_interval: precondition 'order' got status valid.
function Frama_C_interval: precondition 'order' got status valid.
[eva] Done for function Frama_C_interval
[eva] Done for function Frama_C_interval
[eva] computing for function Frama_C_interval <- subdivide_several_variables <-
[eva] computing for function Frama_C_interval <- subdivide_several_variables <-
main.
main.
Called from tests/value/nonlin.c:5
3
.
Called from tests/value/nonlin.c:5
9
.
[eva] tests/value/nonlin.c:5
3
:
[eva] tests/value/nonlin.c:5
9
:
function Frama_C_interval: precondition 'order' got status valid.
function Frama_C_interval: precondition 'order' got status valid.
[eva] Done for function Frama_C_interval
[eva] Done for function Frama_C_interval
[eva] computing for function Frama_C_interval <- subdivide_several_variables <-
[eva] computing for function Frama_C_interval <- subdivide_several_variables <-
main.
main.
Called from tests/value/nonlin.c:
54
.
Called from tests/value/nonlin.c:
60
.
[eva] tests/value/nonlin.c:
54
:
[eva] tests/value/nonlin.c:
60
:
function Frama_C_interval: precondition 'order' got status valid.
function Frama_C_interval: precondition 'order' got status valid.
[eva] Done for function Frama_C_interval
[eva] Done for function Frama_C_interval
[eva:nonlin] tests/value/nonlin.c:
5
6: non-linear 'x * x', lv 'x'
[eva:nonlin] tests/value/nonlin.c:6
2
: non-linear 'x * x', lv 'x'
[eva:nonlin] tests/value/nonlin.c:
5
6: non-linear 'y * y', lv 'y'
[eva:nonlin] tests/value/nonlin.c:6
2
: non-linear 'y * y', lv 'y'
[eva:nonlin] tests/value/nonlin.c:
5
6: subdividing on x
[eva:nonlin] tests/value/nonlin.c:6
2
: subdividing on x
[eva:nonlin] tests/value/nonlin.c:
5
6: subdividing on y
[eva:nonlin] tests/value/nonlin.c:6
2
: subdividing on y
[eva:nonlin] tests/value/nonlin.c:6
0
: non-linear 'x * x', lv 'x'
[eva:nonlin] tests/value/nonlin.c:6
6
: non-linear 'x * x', lv 'x'
[eva:nonlin] tests/value/nonlin.c:6
0
: non-linear '((x * x) * y) * y', lv 'y'
[eva:nonlin] tests/value/nonlin.c:6
6
: non-linear '((x * x) * y) * y', lv 'y'
[eva:nonlin] tests/value/nonlin.c:6
0
: subdividing on x
[eva:nonlin] tests/value/nonlin.c:6
6
: subdividing on x
[eva:nonlin] tests/value/nonlin.c:6
0
: subdividing on y
[eva:nonlin] tests/value/nonlin.c:6
6
: subdividing on y
[eva:nonlin] tests/value/nonlin.c:6
2
: non-linear 'x * y - y * x', lv 'y, x'
[eva:nonlin] tests/value/nonlin.c:6
8
: non-linear 'x * y - y * x', lv 'y, x'
[eva:nonlin] tests/value/nonlin.c:6
2
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:6
8
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:
65
:
[eva:nonlin] tests/value/nonlin.c:
71
:
non-linear '(x * x - (2 * x) * y) + y * y', lv 'y, x'
non-linear '(x * x - (2 * x) * y) + y * y', lv 'y, x'
[eva:nonlin] tests/value/nonlin.c:
65
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:
71
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:
66
:
[eva:nonlin] tests/value/nonlin.c:
72
:
non-linear '(x * x + y * y) - (2 * x) * y', lv 'y, x'
non-linear '(x * x + y * y) - (2 * x) * y', lv 'y, x'
[eva:nonlin] tests/value/nonlin.c:
66
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:
72
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:
68
:
[eva:nonlin] tests/value/nonlin.c:
74
:
non-linear '(z * x + x * y) + y * z', lv 'z, y, x'
non-linear '(z * x + x * y) + y * z', lv 'z, y, x'
[eva:nonlin] tests/value/nonlin.c:
68
: non-linear 'w * w', lv 'w'
[eva:nonlin] tests/value/nonlin.c:
74
: non-linear 'w * w', lv 'w'
[eva:nonlin] tests/value/nonlin.c:
68
: subdividing on x, y, z
[eva:nonlin] tests/value/nonlin.c:
74
: subdividing on x, y, z
[eva:nonlin] tests/value/nonlin.c:
68
: subdividing on w
[eva:nonlin] tests/value/nonlin.c:
74
: subdividing on w
[eva] Recording results for subdivide_several_variables
[eva] Recording results for subdivide_several_variables
[eva] Done for function subdivide_several_variables
[eva] Done for function subdivide_several_variables
[eva] computing for function subdivide_table <- main.
[eva] computing for function subdivide_table <- main.
Called from tests/value/nonlin.c:12
2
.
Called from tests/value/nonlin.c:12
8
.
[eva] tests/value/nonlin.c:
87
: loop invariant got status valid.
[eva] tests/value/nonlin.c:
93
: loop invariant got status valid.
[eva] tests/value/nonlin.c:
88
: starting to merge loop iterations
[eva] tests/value/nonlin.c:
94
: starting to merge loop iterations
[eva:nonlin] tests/value/nonlin.c:
8
9:
[eva:nonlin] tests/value/nonlin.c:9
5
:
non-linear '(4 + ((x >> 2) * 3 << 2)) + x % 4', lv 'x'
non-linear '(4 + ((x >> 2) * 3 << 2)) + x % 4', lv 'x'
[eva:nonlin] tests/value/nonlin.c:
8
9: subdividing on x
[eva:nonlin] tests/value/nonlin.c:9
5
: subdividing on x
[eva] Recording results for subdivide_table
[eva] Recording results for subdivide_table
[eva] Done for function subdivide_table
[eva] Done for function subdivide_table
[eva] computing for function subdivide_reduced_value <- main.
[eva] computing for function subdivide_reduced_value <- main.
Called from tests/value/nonlin.c:12
3
.
Called from tests/value/nonlin.c:12
9
.
[eva:nonlin] tests/value/nonlin.c:10
1
: non-linear 't1[i] - t2[i]', lv 'i'
[eva:nonlin] tests/value/nonlin.c:10
7
: non-linear 't1[i] - t2[i]', lv 'i'
[eva:nonlin] tests/value/nonlin.c:10
1
: subdividing on i
[eva:nonlin] tests/value/nonlin.c:10
7
: subdividing on i
[eva:alarm] tests/value/nonlin.c:10
1
: Warning:
[eva:alarm] tests/value/nonlin.c:10
7
: Warning:
accessing out of bounds index. assert 0 ≤ i;
accessing out of bounds index. assert 0 ≤ i;
[eva:alarm] tests/value/nonlin.c:10
1
: Warning:
[eva:alarm] tests/value/nonlin.c:10
7
: Warning:
accessing out of bounds index. assert i < 2;
accessing out of bounds index. assert i < 2;
[eva] Recording results for subdivide_reduced_value
[eva] Recording results for subdivide_reduced_value
[eva] Done for function subdivide_reduced_value
[eva] Done for function subdivide_reduced_value
[eva] computing for function local_subdivide <- main.
[eva] computing for function local_subdivide <- main.
Called from tests/value/nonlin.c:1
24
.
Called from tests/value/nonlin.c:1
30
.
[eva] computing for function Frama_C_interval <- local_subdivide <- main.
[eva] computing for function Frama_C_interval <- local_subdivide <- main.
Called from tests/value/nonlin.c:1
07
.
Called from tests/value/nonlin.c:1
13
.
[eva] tests/value/nonlin.c:1
07
:
[eva] tests/value/nonlin.c:1
13
:
function Frama_C_interval: precondition 'order' got status valid.
function Frama_C_interval: precondition 'order' got status valid.
[eva] Done for function Frama_C_interval
[eva] Done for function Frama_C_interval
[eva] computing for function Frama_C_interval <- local_subdivide <- main.
[eva] computing for function Frama_C_interval <- local_subdivide <- main.
Called from tests/value/nonlin.c:1
08
.
Called from tests/value/nonlin.c:1
14
.
[eva] tests/value/nonlin.c:1
08
:
[eva] tests/value/nonlin.c:1
14
:
function Frama_C_interval: precondition 'order' got status valid.
function Frama_C_interval: precondition 'order' got status valid.
[eva] Done for function Frama_C_interval
[eva] Done for function Frama_C_interval
[eva:nonlin] tests/value/nonlin.c:11
2
:
[eva:nonlin] tests/value/nonlin.c:11
8
:
non-linear '(x * x - (2 * x) * y) + y * y', lv 'y, x'
non-linear '(x * x - (2 * x) * y) + y * y', lv 'y, x'
[eva:nonlin] tests/value/nonlin.c:11
2
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:11
8
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:11
3
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:11
9
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:11
5
: subdividing on x, y
[eva:nonlin] tests/value/nonlin.c:1
2
1: subdividing on x, y
[eva] Recording results for local_subdivide
[eva] Recording results for local_subdivide
[eva] Done for function local_subdivide
[eva] Done for function local_subdivide
[eva] Recording results for main
[eva] Recording results for main
...
@@ -181,11 +187,21 @@
...
@@ -181,11 +187,21 @@
idx ∈ [0..10]
idx ∈ [0..10]
[eva:final-states] Values at end of function subdivide_pointer:
[eva:final-states] Values at end of function subdivide_pointer:
Frama_C_entropy_source ∈ [--..--]
Frama_C_entropy_source ∈ [--..--]
y ∈ [-
10..10
]
y ∈ [-
-..--
]
x ∈ [-10..10]
x ∈ [-10..10]
p ∈ {{ &
x
}}
p ∈ {{ &
t[0]
}}
i ∈ {{ NULL + [0..10
0
] ; (int)&x }}
i ∈ {{ NULL + [0..10] ; (int)&x }}
q ∈ {{ &x + [-400..400],0%4 }}
q ∈ {{ &x + [-400..400],0%4 }}
t[0] ∈ {0}
[1] ∈ {1}
[2] ∈ {2}
[3] ∈ {4}
[4] ∈ {5}
[5] ∈ {6}
[6] ∈ {7}
[7] ∈ {8}
[8] ∈ {9}
[9] ∈ {0}
[eva:final-states] Values at end of function subdivide_reduced_value:
[eva:final-states] Values at end of function subdivide_reduced_value:
t1[0] ∈ {0}
t1[0] ∈ {0}
[1] ∈ {1}
[1] ∈ {1}
...
@@ -256,7 +272,7 @@
...
@@ -256,7 +272,7 @@
[inout] Inputs for function subdivide_integer:
[inout] Inputs for function subdivide_integer:
v; vs
v; vs
[inout] Out (internal) for function subdivide_pointer:
[inout] Out (internal) for function subdivide_pointer:
Frama_C_entropy_source; y; x; p; i; q
Frama_C_entropy_source; y; x; p; i; q
; t[0..9]
[inout] Inputs for function subdivide_pointer:
[inout] Inputs for function subdivide_pointer:
Frama_C_entropy_source; v
Frama_C_entropy_source; v
[inout] Out (internal) for function subdivide_reduced_value:
[inout] Out (internal) for function subdivide_reduced_value:
...
...
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