2011-03-01 03:49:42 +08:00
|
|
|
// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-inline-call -analyzer-store region -verify %s
|
2010-05-06 11:38:27 +08:00
|
|
|
|
2011-01-15 04:29:43 +08:00
|
|
|
int test1_f1() {
|
2010-02-27 10:44:37 +08:00
|
|
|
int y = 1;
|
|
|
|
y++;
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
2011-01-15 04:29:43 +08:00
|
|
|
void test1_f2() {
|
2010-02-27 10:44:37 +08:00
|
|
|
int x = 1;
|
2011-01-15 04:29:43 +08:00
|
|
|
x = test1_f1();
|
2010-02-27 10:44:37 +08:00
|
|
|
if (x == 1) {
|
|
|
|
int *p = 0;
|
|
|
|
*p = 3; // no-warning
|
|
|
|
}
|
|
|
|
if (x == 2) {
|
|
|
|
int *p = 0;
|
2010-03-23 09:11:38 +08:00
|
|
|
*p = 3; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}}
|
2010-02-27 10:44:37 +08:00
|
|
|
}
|
|
|
|
}
|
2011-01-15 04:29:43 +08:00
|
|
|
|
|
|
|
// Test that inlining works when the declared function has less arguments
|
|
|
|
// than the actual number in the declaration.
|
|
|
|
void test2_f1() {}
|
|
|
|
int test2_f2();
|
|
|
|
|
|
|
|
void test2_f3() {
|
|
|
|
test2_f1(test2_f2()); // expected-warning{{too many arguments in call to 'test2_f1'}}
|
|
|
|
}
|
|
|
|
|
2012-01-13 03:25:46 +08:00
|
|
|
// Test that inlining works with recursive functions.
|
|
|
|
|
|
|
|
unsigned factorial(unsigned x) {
|
|
|
|
if (x <= 1)
|
|
|
|
return 1;
|
|
|
|
return x * factorial(x - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_factorial() {
|
|
|
|
if (factorial(3) == 6) {
|
|
|
|
int *p = 0;
|
|
|
|
*p = 0xDEADBEEF; // expected-warning {{null}}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int *p = 0;
|
|
|
|
*p = 0xDEADBEEF; // no-warning
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_factorial_2() {
|
|
|
|
unsigned x = factorial(3);
|
|
|
|
if (x == factorial(3)) {
|
|
|
|
int *p = 0;
|
|
|
|
*p = 0xDEADBEEF; // expected-warning {{null}}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int *p = 0;
|
|
|
|
*p = 0xDEADBEEF; // no-warning
|
|
|
|
}
|
|
|
|
}
|
2012-03-03 09:22:03 +08:00
|
|
|
|
|
|
|
// Test that returning stack memory from a parent stack frame does
|
|
|
|
// not trigger a warning.
|
|
|
|
static char *return_buf(char *buf) {
|
|
|
|
return buf + 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_return_stack_memory_ok() {
|
|
|
|
char stack_buf[100];
|
|
|
|
char *pos = return_buf(stack_buf);
|
|
|
|
(void) pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *test_return_stack_memory_bad() {
|
|
|
|
char stack_buf[100];
|
|
|
|
char *x = stack_buf;
|
|
|
|
return x; // expected-warning {{stack memory associated}}
|
|
|
|
}
|
|
|
|
|