blob: 5db9c1f6c98da0586d888b4f7a08a9d8df4ade74 [file] [log] [blame]
Ted Kremeneka0125d82011-02-16 01:57:07 +00001// RUN: %clang_cc1 -verify %s
2
3int foo() {
Ted Kremenekbac77372011-02-16 22:08:28 +00004 int x[2]; // expected-note 4 {{array 'x' declared here}}
5 int y[2]; // expected-note 2 {{array 'y' declared here}}
Ted Kremeneka0125d82011-02-16 01:57:07 +00006 int *p = &y[2]; // no-warning
7 (void) sizeof(x[2]); // no-warning
Chandler Carruth35001ca2011-02-17 21:10:52 +00008 y[2] = 2; // expected-warning {{array index of '2' indexes past the end of an array (that contains 2 elements)}}
9 return x[2] + // expected-warning {{array index of '2' indexes past the end of an array (that contains 2 elements)}}
10 y[-1] + // expected-warning {{array index of '-1' indexes before the beginning of the array}}
11 x[sizeof(x)] + // expected-warning {{array index of '8' indexes past the end of an array (that contains 2 elements)}}
12 x[sizeof(x) / sizeof(x[0])] + // expected-warning {{array index of '2' indexes past the end of an array (that contains 2 elements)}}
Ted Kremeneka0125d82011-02-16 01:57:07 +000013 x[sizeof(x) / sizeof(x[0]) - 1] + // no-warning
Chandler Carruth35001ca2011-02-17 21:10:52 +000014 x[sizeof(x[2])]; // expected-warning {{array index of '4' indexes past the end of an array (that contains 2 elements)}}
Ted Kremeneka0125d82011-02-16 01:57:07 +000015}
16
Ted Kremenekc71a2c02011-02-16 23:39:09 +000017// This code example tests that -Warray-bounds works with arrays that
18// are template parameters.
19template <char *sz> class Qux {
20 bool test() { return sz[0] == 'a'; }
Chandler Carruth35001ca2011-02-17 21:10:52 +000021};
22
23void f1(int a[1]) {
24 int val = a[3]; // no warning for function argumnet
25}
26
27void f2(const int (&a)[1]) { // expected-note {{declared here}}
28 int val = a[3]; // expected-warning {{array index of '3' indexes past the end of an array (that contains 1 elements)}}
29}
30
31void test() {
32 struct {
33 int a[0];
34 } s2;
35 s2.a[3] = 0; // no warning for 0-sized array
36
37 union {
38 short a[2]; // expected-note {{declared here}}
39 char c[4];
40 } u;
41 u.a[3] = 1; // expected-warning {{array index of '3' indexes past the end of an array (that contains 2 elements)}}
42 u.c[3] = 1; // no warning
43
44 const int const_subscript = 3;
45 int array[1]; // expected-note {{declared here}}
46 array[const_subscript] = 0; // expected-warning {{array index of '3' indexes past the end of an array (that contains 1 elements)}}
47
48 int *ptr;
49 ptr[3] = 0; // no warning for pointer references
50 int array2[] = { 0, 1, 2 }; // expected-note 2 {{declared here}}
51
52 array2[3] = 0; // expected-warning {{array index of '3' indexes past the end of an array (that contains 3 elements)}}
53 array2[2+2] = 0; // expected-warning {{array index of '4' indexes past the end of an array (that contains 3 elements)}}
54
55 const char *str1 = "foo";
56 char c1 = str1[5]; // no warning for pointers
57
58 const char str2[] = "foo"; // expected-note {{declared here}}
59 char c2 = str2[5]; // expected-warning {{array index of '5' indexes past the end of an array (that contains 4 elements)}}
60
61 int (*array_ptr)[1];
62 (*array_ptr)[3] = 1; // expected-warning {{array index of '3' indexes past the end of an array (that contains 1 elements)}}
63}
64
65template <int I> struct S {
Ted Kremenek351ba912011-02-23 01:52:04 +000066 char arr[I]; // expected-note 2 {{declared here}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000067};
68template <int I> void f() {
69 S<3> s;
Ted Kremenek351ba912011-02-23 01:52:04 +000070 s.arr[4] = 0; // expected-warning {{array index of '4' indexes past the end of an array (that contains 3 elements)}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000071 s.arr[I] = 0; // expected-warning {{array index of '5' indexes past the end of an array (that contains 3 elements)}}
72}
73
74void test_templates() {
75 f<5>(); // expected-note {{in instantiation}}
76}
Ted Kremeneka85f5282011-02-17 21:40:51 +000077
78#define SIZE 10
79#define ARR_IN_MACRO(flag, arr, idx) flag ? arr[idx] : 1
80
81int test_no_warn_macro_unreachable() {
Ted Kremenek351ba912011-02-23 01:52:04 +000082 int arr[SIZE]; // expected-note {{array 'arr' declared here}}
83 return ARR_IN_MACRO(0, arr, SIZE) + // no-warning
Ted Kremeneka85f5282011-02-17 21:40:51 +000084 ARR_IN_MACRO(1, arr, SIZE); // expected-warning{{array index of '10' indexes past the end of an array (that contains 10 elements)}}
85}
86
Ted Kremenek25b3b842011-02-18 02:27:00 +000087// This exhibited an assertion failure for a 32-bit build of Clang.
88int test_pr9240() {
89 short array[100]; // expected-note {{array 'array' declared here}}
90 return array[(unsigned long long) 100]; // expected-warning {{array index of '100' indexes past the end of an array (that contains 100 elements)}}
91}
92
Ted Kremenek3bcc2be2011-02-23 01:52:07 +000093// PR 9284 - a template parameter can cause an array bounds access to be
94// infeasible.
Ted Kremenek351ba912011-02-23 01:52:04 +000095template <bool extendArray>
Ted Kremenek3bcc2be2011-02-23 01:52:07 +000096void pr9284() {
Ted Kremenek351ba912011-02-23 01:52:04 +000097 int arr[3 + (extendArray ? 1 : 0)];
98
99 if (extendArray)
Ted Kremenek3bcc2be2011-02-23 01:52:07 +0000100 arr[3] = 42; // no-warning
Ted Kremenek351ba912011-02-23 01:52:04 +0000101}
102
Ted Kremenek3bcc2be2011-02-23 01:52:07 +0000103template <bool extendArray>
104void pr9284b() {
105 int arr[3 + (extendArray ? 1 : 0)]; // expected-note {{array 'arr' declared here}}
106
107 if (!extendArray)
108 arr[3] = 42; // expected-warning{{array index of '3' indexes past the end of an array (that contains 3 elements)}}
109}
110
111void test_pr9284() {
112 pr9284<true>();
113 pr9284<false>();
114 pr9284b<true>();
115 pr9284b<false>(); // expected-note{{in instantiation of function template specialization 'pr9284b<false>' requested here}}
Ted Kremenek351ba912011-02-23 01:52:04 +0000116}
117
Ted Kremenek9e060ca2011-02-23 23:06:04 +0000118int test_pr9296() {
119 int array[2];
120 return array[true]; // no-warning
121}
122
Ted Kremenek3aea4da2011-03-01 18:41:00 +0000123int test_sizeof_as_condition(int flag) {
124 int arr[2] = { 0, 0 }; // expected-note {{array 'arr' declared here}}
125 if (flag)
126 return sizeof(char) != sizeof(char) ? arr[2] : arr[1];
127 return sizeof(char) == sizeof(char) ? arr[2] : arr[1]; // expected-warning {{array index of '2' indexes past the end of an array (that contains 2 elements)}}
128}
129
Ted Kremeneke71f3d52011-03-01 23:12:55 +0000130void test_switch() {
131 switch (4) {
132 case 1: {
133 int arr[2];
134 arr[2] = 1; // no-warning
135 break;
136 }
137 case 4: {
138 int arr[2]; // expected-note {{array 'arr' declared here}}
139 arr[2] = 1; // expected-warning {{array index of '2' indexes past the end of an array (that contains 2 elements)}}
140 break;
141 }
142 default: {
143 int arr[2];
144 arr[2] = 1; // no-warning
145 break;
146 }
147 }
148}
Ted Kremenek3aea4da2011-03-01 18:41:00 +0000149