|
1 | 1 | // RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -verify %s \
|
2 | 2 | // RUN: -analyzer-constraints=z3
|
| 3 | +// RUN: %clang_analyze_cc1 -verify %s \ |
| 4 | +// RUN: -analyzer-checker=core,debug.ExprInspection \ |
| 5 | +// RUN: -analyzer-config crosscheck-with-z3=true |
3 | 6 |
|
4 | 7 | // REQUIRES: Z3
|
5 | 8 | //
|
6 | 9 | // Previously Z3 analysis crashed when it encountered an UnarySymExpr, validate
|
7 | 10 | // that this no longer happens.
|
8 | 11 | //
|
9 | 12 |
|
10 |
| -// expected-no-diagnostics |
11 | 13 | int negate(int x, int y) {
|
12 | 14 | if ( ~(x && y))
|
13 | 15 | return 0;
|
14 | 16 | return 1;
|
15 | 17 | }
|
| 18 | + |
| 19 | +// Z3 is presented with a SymExpr like this : -((reg_$0<int a>) != 0) : |
| 20 | +// from the Z3 refutation wrapper, that it attempts to convert to a |
| 21 | +// SMTRefExpr, then crashes inside of Z3. The "not zero" portion |
| 22 | +// of that expression is converted to the SMTRefExpr |
| 23 | +// "(not (= reg_$1 #x00000000))", which is a boolean result then the |
| 24 | +// "negative" operator (unary '-', UO_Minus) is attempted to be applied which |
| 25 | +// then causes Z3 to crash. The accompanying patch just strips the negative |
| 26 | +// operator before submitting to Z3 to avoid the crash. |
| 27 | +// |
| 28 | +// TODO: Find the root cause of this and fix it in symbol manager |
| 29 | +// |
| 30 | +void c(); |
| 31 | + |
| 32 | +int z3crash(int a, int b) { |
| 33 | + b = a || b; |
| 34 | + return (-b == a) / a; // expected-warning{{Division by zero [core.DivideZero]}} |
| 35 | +} |
| 36 | + |
| 37 | +// Floats are handled specifically, and differently in the Z3 refutation layer |
| 38 | +// Just cover that code path |
| 39 | +int z3_nocrash(float a, float b) { |
| 40 | + b = a || b; |
| 41 | + return (-b == a) / a; |
| 42 | +} |
| 43 | + |
| 44 | +int z3_crash2(int a) { |
| 45 | + int *d; |
| 46 | + if (-(&c && a)) |
| 47 | + return *d; // expected-warning{{Dereference of undefined pointer value}} |
| 48 | + return 0; |
| 49 | +} |
0 commit comments