Skip to content

Commit 1ff5344

Browse files
authored
Merge pull request #6023 from jezhiggins/vsd-widening-implementation
Vsd meet and assume
2 parents 22b7a89 + b23e00d commit 1ff5344

File tree

142 files changed

+4264
-613
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+4264
-613
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
int unknown();
2+
3+
int main()
4+
{
5+
int i = 0;
6+
int p = 0;
7+
8+
if(unknown())
9+
p = 5;
10+
if(unknown())
11+
p = 10;
12+
13+
if(p >= 0)
14+
i = 5;
15+
else
16+
i = -5;
17+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
int unknown();
2+
3+
int main()
4+
{
5+
int i = 0;
6+
int p = 0;
7+
8+
if(unknown())
9+
p = 5;
10+
if(unknown())
11+
p = 10;
12+
13+
if(p >= 5)
14+
i = 5;
15+
else
16+
i = -5;
17+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
int unknown();
2+
3+
int main()
4+
{
5+
int i = 0;
6+
int p = 0;
7+
8+
if(unknown())
9+
p = 5;
10+
if(unknown())
11+
p = 10;
12+
13+
if(p >= 11)
14+
i = 5;
15+
else
16+
i = -5;
17+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CORE
2+
main-always.c
3+
--variable-sensitivity --vsd-values constants --show
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
^main::1::i .* TOP @ \[17, 19\]
7+
^main::1::p .* TOP @ \[3, 8, 14\]
8+
--
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CORE
2+
main-always.c
3+
--variable-sensitivity --vsd-values intervals --show
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
^main::1::i .* \[5, 5\] @ \[17\]
7+
^main::1::p .* \[0, A\] @ \[3, 8, 14\]
8+
--
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CORE
2+
main-always.c
3+
--variable-sensitivity --vsd-values set-of-constants --show
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
^main::1::i .* value-set-begin: 5 :value-set-end @ \[17\]
7+
^main::1::p .* value-set-begin: 0, 5, 10 :value-set-end @ \[3, 8, 14\]
8+
--
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CORE
2+
main-indeterminate.c
3+
--variable-sensitivity --vsd-values constants --show
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
^main::1::i .* TOP @ \[17, 19\]
7+
^main::1::p .* TOP @ \[3, 8, 14\]
8+
--
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CORE
2+
main-indeterminate.c
3+
--variable-sensitivity --vsd-values intervals --show
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
^main::1::i .* \[FFFFFFFB, 5\] @ \[17, 19\]
7+
^main::1::p .* \[0, A\] @ \[3, 8, 14\]
8+
--
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CORE
2+
main-indeterminate.c
3+
--variable-sensitivity --vsd-values set-of-constants --show
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
^main::1::i .* value-set-begin: 5, -5 :value-set-end @ \[17, 19\]
7+
^main::1::p .* value-set-begin: 0, 5, 10 :value-set-end @ \[3, 8, 14\]
8+
--
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CORE
2+
main-never.c
3+
--variable-sensitivity --vsd-values constants --show
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
^main::1::i .* TOP @ \[17, 19\]
7+
^main::1::p .* TOP @ \[3, 8, 14\]
8+
--

0 commit comments

Comments
 (0)