forked from goblint/analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request goblint#1458 from goblint/issue1457
`BaseAnalysis`: For non-definite AD, join over **all** components not just `cpa` in `set`
- Loading branch information
Showing
10 changed files
with
492 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// PARAM: --set ana.base.privatization protection --enable ana.int.enums | ||
#include<pthread.h> | ||
#include<stdlib.h> | ||
struct a { | ||
int b; | ||
}; | ||
|
||
struct a *ptr; | ||
struct a *straightandnarrow; | ||
|
||
pthread_mutex_t m; | ||
|
||
void doit() { | ||
void *newa = malloc(sizeof(struct a)); | ||
|
||
pthread_mutex_lock(&m); | ||
ptr->b = 5; | ||
|
||
int fear = straightandnarrow->b; | ||
__goblint_check(fear == 5); //UNKNOWN! | ||
|
||
ptr = newa; | ||
pthread_mutex_unlock(&m); | ||
|
||
pthread_mutex_lock(&m); | ||
int hope = straightandnarrow->b; | ||
__goblint_check(hope == 5); //UNKNOWN! | ||
pthread_mutex_unlock(&m); | ||
|
||
} | ||
|
||
void* k(void *arg) { | ||
doit(); | ||
return NULL; | ||
} | ||
|
||
int main() { | ||
int top; | ||
struct a other = { 0 }; | ||
struct a other2 = { 42 }; | ||
if(top) { | ||
ptr = &other; | ||
} else { | ||
ptr = &other2; | ||
} | ||
|
||
straightandnarrow = &other; | ||
|
||
pthread_t t1; | ||
pthread_create(&t1, 0, k, 0); | ||
|
||
doit(); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// PARAM: --set ana.base.privatization protection --enable ana.int.enums | ||
// Like 80-nondet-struct-ptr.c, but somewhat simplified to not use structs and malloc etc | ||
#include<pthread.h> | ||
#include<stdlib.h> | ||
struct a { | ||
int b; | ||
}; | ||
|
||
int *ptr; | ||
int *immer_da_oane; | ||
|
||
pthread_mutex_t m; | ||
|
||
void doit() { | ||
pthread_mutex_lock(&m); | ||
*ptr = 5; | ||
|
||
// Should be either 5 or 0, depending on which one the pointer points to | ||
int fear = *immer_da_oane; | ||
__goblint_check(fear == 5); //UNKNOWN! | ||
|
||
pthread_mutex_unlock(&m); | ||
|
||
pthread_mutex_lock(&m); | ||
int hope = *immer_da_oane; | ||
__goblint_check(hope == 5); //UNKNOWN! | ||
pthread_mutex_unlock(&m); | ||
|
||
} | ||
|
||
void* k(void *arg) { | ||
// Force MT | ||
return NULL; | ||
} | ||
|
||
int main() { | ||
int top; | ||
|
||
int da_oane = 0; | ||
int de_andre = 42; | ||
|
||
if(top) { | ||
ptr = &da_oane; | ||
} else { | ||
ptr = &de_andre; | ||
} | ||
|
||
immer_da_oane = &da_oane; | ||
|
||
pthread_t t1; | ||
pthread_create(&t1, 0, k, 0); | ||
|
||
doit(); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// PARAM: --set ana.base.privatization protection --enable ana.int.enums | ||
// Like 81-nondet-struct-ptr.c, but with syntactic globals instead of escaping ones. | ||
#include<pthread.h> | ||
#include<stdlib.h> | ||
struct a { | ||
int b; | ||
}; | ||
|
||
int *ptr; | ||
int *immer_da_oane; | ||
|
||
int da_oane = 0; | ||
int de_andre = 42; | ||
|
||
pthread_mutex_t m; | ||
|
||
void doit() { | ||
pthread_mutex_lock(&m); | ||
*ptr = 5; | ||
|
||
// Should be either 0 or 5, depending on which one ptr points to | ||
int fear = *immer_da_oane; | ||
__goblint_check(fear == 5); //UNKNOWN! | ||
|
||
pthread_mutex_unlock(&m); | ||
|
||
pthread_mutex_lock(&m); | ||
// This works | ||
int hope = *immer_da_oane; | ||
__goblint_check(hope == 5); //UNKNOWN! | ||
pthread_mutex_unlock(&m); | ||
|
||
} | ||
|
||
void* k(void *arg) { | ||
// Force MT | ||
return NULL; | ||
} | ||
|
||
int main() { | ||
int top; | ||
|
||
if(top) { | ||
ptr = &da_oane; | ||
} else { | ||
ptr = &de_andre; | ||
} | ||
|
||
immer_da_oane = &da_oane; | ||
|
||
pthread_t t1; | ||
pthread_create(&t1, 0, k, 0); | ||
|
||
doit(); | ||
return 0; | ||
} |
54 changes: 54 additions & 0 deletions
54
tests/regression/13-privatized/83-nondet-struct-ptr-write.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// PARAM: --set ana.base.privatization write --enable ana.int.enums | ||
#include<pthread.h> | ||
#include<stdlib.h> | ||
struct a { | ||
int b; | ||
}; | ||
|
||
struct a *ptr; | ||
struct a *straightandnarrow; | ||
|
||
pthread_mutex_t m; | ||
|
||
void doit() { | ||
void *newa = malloc(sizeof(struct a)); | ||
|
||
pthread_mutex_lock(&m); | ||
ptr->b = 5; | ||
|
||
int fear = straightandnarrow->b; | ||
__goblint_check(fear == 5); //UNKNOWN! | ||
|
||
ptr = newa; | ||
pthread_mutex_unlock(&m); | ||
|
||
pthread_mutex_lock(&m); | ||
int hope = straightandnarrow->b; | ||
__goblint_check(hope == 5); //UNKNOWN! | ||
pthread_mutex_unlock(&m); | ||
|
||
} | ||
|
||
void* k(void *arg) { | ||
doit(); | ||
return NULL; | ||
} | ||
|
||
int main() { | ||
int top; | ||
struct a other = { 0 }; | ||
struct a other2 = { 42 }; | ||
if(top) { | ||
ptr = &other; | ||
} else { | ||
ptr = &other2; | ||
} | ||
|
||
straightandnarrow = &other; | ||
|
||
pthread_t t1; | ||
pthread_create(&t1, 0, k, 0); | ||
|
||
doit(); | ||
return 0; | ||
} |
54 changes: 54 additions & 0 deletions
54
tests/regression/13-privatized/84-nondet-local-pointer-write.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// PARAM: --set ana.base.privatization write --enable ana.int.enums | ||
#include<pthread.h> | ||
#include<stdlib.h> | ||
struct a { | ||
int b; | ||
}; | ||
|
||
int *ptr; | ||
int *immer_da_oane; | ||
|
||
pthread_mutex_t m; | ||
|
||
void doit() { | ||
pthread_mutex_lock(&m); | ||
*ptr = 5; | ||
|
||
// Should be either 5 or 0, depending on which one the pointer points to | ||
int fear = *immer_da_oane; | ||
__goblint_check(fear == 5); //UNKNOWN! | ||
|
||
pthread_mutex_unlock(&m); | ||
|
||
pthread_mutex_lock(&m); | ||
int hope = *immer_da_oane; | ||
__goblint_check(hope == 5); //UNKNOWN! | ||
pthread_mutex_unlock(&m); | ||
|
||
} | ||
|
||
void* k(void *arg) { | ||
// Force MT | ||
return NULL; | ||
} | ||
|
||
int main() { | ||
int top; | ||
|
||
int da_oane = 0; | ||
int de_andre = 42; | ||
|
||
if(top) { | ||
ptr = &da_oane; | ||
} else { | ||
ptr = &de_andre; | ||
} | ||
|
||
immer_da_oane = &da_oane; | ||
|
||
pthread_t t1; | ||
pthread_create(&t1, 0, k, 0); | ||
|
||
doit(); | ||
return 0; | ||
} |
55 changes: 55 additions & 0 deletions
55
tests/regression/13-privatized/85-nondet-global-pointer-write.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// PARAM: --set ana.base.privatization write --enable ana.int.enums | ||
#include<pthread.h> | ||
#include<stdlib.h> | ||
struct a { | ||
int b; | ||
}; | ||
|
||
int *ptr; | ||
int *immer_da_oane; | ||
|
||
int da_oane = 0; | ||
int de_andre = 42; | ||
|
||
pthread_mutex_t m; | ||
|
||
void doit() { | ||
pthread_mutex_lock(&m); | ||
*ptr = 5; | ||
|
||
// Should be either 0 or 5, depending on which one ptr points to | ||
int fear = *immer_da_oane; | ||
__goblint_check(fear == 5); //UNKNOWN! | ||
|
||
pthread_mutex_unlock(&m); | ||
|
||
pthread_mutex_lock(&m); | ||
// This works | ||
int hope = *immer_da_oane; | ||
__goblint_check(hope == 5); //UNKNOWN! | ||
pthread_mutex_unlock(&m); | ||
|
||
} | ||
|
||
void* k(void *arg) { | ||
// Force MT | ||
return NULL; | ||
} | ||
|
||
int main() { | ||
int top; | ||
|
||
if(top) { | ||
ptr = &da_oane; | ||
} else { | ||
ptr = &de_andre; | ||
} | ||
|
||
immer_da_oane = &da_oane; | ||
|
||
pthread_t t1; | ||
pthread_create(&t1, 0, k, 0); | ||
|
||
doit(); | ||
return 0; | ||
} |
54 changes: 54 additions & 0 deletions
54
tests/regression/13-privatized/86-nondet-struct-ptr-lock.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// PARAM: --set ana.base.privatization lock --enable ana.int.enums | ||
#include<pthread.h> | ||
#include<stdlib.h> | ||
struct a { | ||
int b; | ||
}; | ||
|
||
struct a *ptr; | ||
struct a *straightandnarrow; | ||
|
||
pthread_mutex_t m; | ||
|
||
void doit() { | ||
void *newa = malloc(sizeof(struct a)); | ||
|
||
pthread_mutex_lock(&m); | ||
ptr->b = 5; | ||
|
||
int fear = straightandnarrow->b; | ||
__goblint_check(fear == 5); //UNKNOWN! | ||
|
||
ptr = newa; | ||
pthread_mutex_unlock(&m); | ||
|
||
pthread_mutex_lock(&m); | ||
int hope = straightandnarrow->b; | ||
__goblint_check(hope == 5); //UNKNOWN! | ||
pthread_mutex_unlock(&m); | ||
|
||
} | ||
|
||
void* k(void *arg) { | ||
doit(); | ||
return NULL; | ||
} | ||
|
||
int main() { | ||
int top; | ||
struct a other = { 0 }; | ||
struct a other2 = { 42 }; | ||
if(top) { | ||
ptr = &other; | ||
} else { | ||
ptr = &other2; | ||
} | ||
|
||
straightandnarrow = &other; | ||
|
||
pthread_t t1; | ||
pthread_create(&t1, 0, k, 0); | ||
|
||
doit(); | ||
return 0; | ||
} |
Oops, something went wrong.