2009-02-18 07:32:18 +08:00
|
|
|
// RUN: clang -analyze -checker-simple -analyzer-store=basic -analyzer-constraints=basic -verify %s &&
|
|
|
|
// RUN: clang -analyze -checker-cfref -analyzer-store=basic -analyzer-constraints=basic -verify %s &&
|
|
|
|
// RUN: clang -analyze -checker-cfref -analyzer-store=basic -analyzer-constraints=range -verify %s &&
|
|
|
|
// RUN: clang -analyze -checker-cfref -analyzer-store=region -analyzer-constraints=basic -verify %s &&
|
|
|
|
// RUN: clang -analyze -checker-cfref -analyzer-store=region -analyzer-constraints=range -verify %s
|
2008-10-17 13:19:52 +08:00
|
|
|
|
2008-10-24 16:51:58 +08:00
|
|
|
struct s {
|
|
|
|
int data;
|
|
|
|
int data_array[10];
|
|
|
|
};
|
2008-10-17 13:19:52 +08:00
|
|
|
|
2008-10-27 17:19:25 +08:00
|
|
|
typedef struct {
|
|
|
|
int data;
|
|
|
|
} STYPE;
|
|
|
|
|
2008-11-02 21:17:44 +08:00
|
|
|
void g1(struct s* p);
|
|
|
|
|
2008-11-25 09:45:11 +08:00
|
|
|
// Array to pointer conversion. Array in the struct field.
|
2008-10-17 13:19:52 +08:00
|
|
|
void f(void) {
|
|
|
|
int a[10];
|
|
|
|
int (*p)[10];
|
|
|
|
p = &a;
|
|
|
|
(*p)[3] = 1;
|
|
|
|
|
|
|
|
struct s d;
|
|
|
|
struct s *q;
|
|
|
|
q = &d;
|
2008-10-24 16:51:58 +08:00
|
|
|
q->data = 3;
|
|
|
|
d.data_array[9] = 17;
|
2008-10-17 13:19:52 +08:00
|
|
|
}
|
2008-10-25 22:11:23 +08:00
|
|
|
|
2008-11-25 09:45:11 +08:00
|
|
|
// StringLiteral in lvalue context and pointer to array type.
|
|
|
|
// p: ElementRegion, q: StringRegion
|
2008-10-25 22:11:23 +08:00
|
|
|
void f2() {
|
|
|
|
char *p = "/usr/local";
|
|
|
|
char (*q)[4];
|
|
|
|
q = &"abc";
|
|
|
|
}
|
2008-10-27 17:19:25 +08:00
|
|
|
|
2008-11-25 09:45:11 +08:00
|
|
|
// Typedef'ed struct definition.
|
2008-10-27 17:19:25 +08:00
|
|
|
void f3() {
|
|
|
|
STYPE s;
|
|
|
|
}
|
2008-10-31 18:23:14 +08:00
|
|
|
|
2008-11-25 09:45:11 +08:00
|
|
|
// Initialize array with InitExprList.
|
2008-10-31 18:23:14 +08:00
|
|
|
void f4() {
|
|
|
|
int a[] = { 1, 2, 3};
|
|
|
|
int b[3] = { 1, 2 };
|
2009-01-23 18:23:13 +08:00
|
|
|
struct s c[] = {{1,{1}}};
|
2008-10-31 18:23:14 +08:00
|
|
|
}
|
2008-11-02 21:17:44 +08:00
|
|
|
|
2008-11-25 09:45:11 +08:00
|
|
|
// Struct variable in lvalue context.
|
2009-01-13 09:49:57 +08:00
|
|
|
// Assign UnknownVal to the whole struct.
|
2008-11-02 21:17:44 +08:00
|
|
|
void f5() {
|
|
|
|
struct s data;
|
|
|
|
g1(&data);
|
|
|
|
}
|
2008-11-13 15:59:15 +08:00
|
|
|
|
2008-11-25 09:45:11 +08:00
|
|
|
// AllocaRegion test.
|
2008-11-13 15:59:15 +08:00
|
|
|
void f6() {
|
|
|
|
char *p;
|
|
|
|
p = __builtin_alloca(10);
|
|
|
|
p[1] = 'a';
|
|
|
|
}
|
2008-11-13 16:44:52 +08:00
|
|
|
|
|
|
|
struct s2;
|
|
|
|
|
|
|
|
void g2(struct s2 *p);
|
|
|
|
|
2008-11-25 09:45:11 +08:00
|
|
|
// Incomplete struct pointer used as function argument.
|
2008-11-13 16:44:52 +08:00
|
|
|
void f7() {
|
|
|
|
struct s2 *p = __builtin_alloca(10);
|
|
|
|
g2(p);
|
|
|
|
}
|
2008-11-13 17:20:05 +08:00
|
|
|
|
2008-11-25 09:45:11 +08:00
|
|
|
// sizeof() is unsigned while -1 is signed in array index.
|
2008-11-13 17:20:05 +08:00
|
|
|
void f8() {
|
|
|
|
int a[10];
|
2008-11-25 07:45:56 +08:00
|
|
|
a[sizeof(a)/sizeof(int) - 1] = 1; // no-warning
|
2008-11-13 17:20:05 +08:00
|
|
|
}
|
2008-11-18 21:30:46 +08:00
|
|
|
|
2008-11-25 09:45:11 +08:00
|
|
|
// Initialization of struct array elements.
|
2008-11-18 21:30:46 +08:00
|
|
|
void f9() {
|
|
|
|
struct s a[10];
|
|
|
|
}
|
2008-11-30 13:51:19 +08:00
|
|
|
|
|
|
|
// Initializing array with string literal.
|
|
|
|
void f10() {
|
|
|
|
char a1[4] = "abc";
|
|
|
|
char a3[6] = "abc";
|
|
|
|
}
|
2009-01-23 19:22:12 +08:00
|
|
|
|
|
|
|
// Retrieve the default value of element/field region.
|
|
|
|
void f11() {
|
|
|
|
struct s a;
|
|
|
|
g(&a);
|
|
|
|
if (a.data == 0) // no-warning
|
|
|
|
a.data = 1;
|
|
|
|
}
|