Artem Dergachev | 37de888 | 2017-04-24 19:30:33 +0000 | [diff] [blame] | 1 | // RUN: %clang_analyze_cc1 -w -triple i386-apple-darwin10 -analyzer-checker=core,debug.ExprInspection -verify %s |
| 2 | |
| 3 | void clang_analyzer_eval(int); |
| 4 | |
| 5 | struct S { |
| 6 | int x, y; |
| 7 | int z[2]; |
| 8 | }; |
| 9 | |
Artem Dergachev | cbd7cd8 | 2017-04-24 20:55:07 +0000 | [diff] [blame] | 10 | void testOffsets(struct S *s, int coin) { |
Artem Dergachev | 37de888 | 2017-04-24 19:30:33 +0000 | [diff] [blame] | 11 | if (s != 0) |
| 12 | return; |
| 13 | |
| 14 | // FIXME: Here we are testing the hack that computes offsets to null pointers |
| 15 | // as 0 in order to find null dereferences of not-exactly-null pointers, |
| 16 | // such as &(s->y) below, which is equal to 4 rather than 0 in run-time. |
| 17 | |
| 18 | // These are indeed null. |
| 19 | clang_analyzer_eval(s == 0); // expected-warning{{TRUE}} |
| 20 | clang_analyzer_eval(&(s->x) == 0); // expected-warning{{TRUE}} |
| 21 | |
| 22 | // FIXME: These should ideally be true. |
| 23 | clang_analyzer_eval(&(s->y) == 4); // expected-warning{{FALSE}} |
Artem Dergachev | cbd7cd8 | 2017-04-24 20:55:07 +0000 | [diff] [blame] | 24 | clang_analyzer_eval(&(s->z[0]) == 8); // expected-warning{{FALSE}} |
| 25 | clang_analyzer_eval(&(s->z[1]) == 12); // expected-warning{{FALSE}} |
Artem Dergachev | 37de888 | 2017-04-24 19:30:33 +0000 | [diff] [blame] | 26 | |
| 27 | // FIXME: These should ideally be false. |
| 28 | clang_analyzer_eval(&(s->y) == 0); // expected-warning{{TRUE}} |
Artem Dergachev | cbd7cd8 | 2017-04-24 20:55:07 +0000 | [diff] [blame] | 29 | clang_analyzer_eval(&(s->z[0]) == 0); // expected-warning{{TRUE}} |
| 30 | clang_analyzer_eval(&(s->z[1]) == 0); // expected-warning{{TRUE}} |
Artem Dergachev | 37de888 | 2017-04-24 19:30:33 +0000 | [diff] [blame] | 31 | |
Artem Dergachev | cbd7cd8 | 2017-04-24 20:55:07 +0000 | [diff] [blame] | 32 | // But these should still be reported as null dereferences. |
| 33 | if (coin) |
| 34 | s->y = 5; // expected-warning{{Access to field 'y' results in a dereference of a null pointer (loaded from variable 's')}} |
| 35 | else |
| 36 | s->z[1] = 6; // expected-warning{{Array access (via field 'z') results in a null pointer dereference}} |
Artem Dergachev | 37de888 | 2017-04-24 19:30:33 +0000 | [diff] [blame] | 37 | } |