blob: f6bd61c074a33a9c3727df97e4bb23fa66f7c1d8 [file] [log] [blame]
Ted Kremenek565e4652010-02-05 02:06:54 +00001// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=region -verify -triple x86_64-apple-darwin9 %s
2// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=region -verify -triple i686-apple-darwin9 %s
Zhongxing Xue184b1e2009-03-03 00:28:42 +00003
4void f1() {
5 int a[10];
6 int *p = a;
7 ++p;
8}
Zhongxing Xu2b1dc172009-03-11 07:43:49 +00009
10char* foo();
11
12void f2() {
13 char *p = foo();
14 ++p;
15}
Zhongxing Xu3c4b3792009-03-11 09:15:38 +000016
Zhongxing Xue8cba002009-03-12 01:55:38 +000017// This test case checks if we get the right rvalue type of a TypedViewRegion.
18// The ElementRegion's type depends on the array region's rvalue type. If it was
19// a pointer type, we would get a loc::SymbolVal for '*p'.
Eli Friedman0b308ad2009-06-04 19:35:30 +000020void* memchr();
Zhongxing Xu3c4b3792009-03-11 09:15:38 +000021static int
22domain_port (const char *domain_b, const char *domain_e,
23 const char **domain_e_ptr)
24{
25 int port = 0;
26
27 const char *p;
28 const char *colon = memchr (domain_b, ':', domain_e - domain_b);
29
30 for (p = colon + 1; p < domain_e ; p++)
31 port = 10 * port + (*p - '0');
32 return port;
33}
Zhongxing Xu3ce2dc32009-11-09 05:34:10 +000034
35void f3() {
36 int x, y;
37 int d = &y - &x; // expected-warning{{Subtraction of two pointers that do not point to the same memory chunk may cause incorrect result.}}
Zhongxing Xuadca2712009-11-10 02:37:53 +000038
39 int a[10];
40 int *p = &a[2];
41 int *q = &a[8];
42 d = q-p; // no-warning
Zhongxing Xu3ce2dc32009-11-09 05:34:10 +000043}
Zhongxing Xub10a7c22009-11-09 06:52:44 +000044
45void f4() {
46 int *p;
47 p = (int*) 0x10000; // expected-warning{{Using a fixed address is not portable because that address will probably not be valid in all environments or platforms.}}
48}
Zhongxing Xuede7eb22009-11-09 13:23:31 +000049
50void f5() {
51 int x, y;
52 int *p;
Zhongxing Xue4da0eb2009-11-09 13:56:44 +000053 p = &x + 1; // expected-warning{{Pointer arithmetic done on non-array variables means reliance on memory layout, which is dangerous.}}
Zhongxing Xuede7eb22009-11-09 13:23:31 +000054
55 int a[10];
56 p = a + 1; // no-warning
57}
Zhongxing Xu79234ca2009-11-10 02:45:49 +000058
59// Allow arithmetic on different symbolic regions.
60void f6(int *p, int *q) {
61 int d = q - p; // no-warning
62}