blob: 80b3ee4289445d969d0afa15586d49cdd39a4263 [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}}
Chandler Carruthc2684342011-08-05 09:10:50 +00006 int z[1]; // expected-note {{array 'z' declared here}}
Matt Beaumont-Gaycfbc5b52011-11-29 19:27:11 +00007 int w[1][1]; // expected-note {{array 'w' declared here}}
8 int v[1][1][1]; // expected-note {{array 'v' declared here}}
Ted Kremeneka0125d82011-02-16 01:57:07 +00009 int *p = &y[2]; // no-warning
10 (void) sizeof(x[2]); // no-warning
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000011 y[2] = 2; // expected-warning {{array index 2 is past the end of the array (which contains 2 elements)}}
12 z[1] = 'x'; // expected-warning {{array index 1 is past the end of the array (which contains 1 element)}}
Matt Beaumont-Gaycfbc5b52011-11-29 19:27:11 +000013 w[0][2] = 0; // expected-warning {{array index 2 is past the end of the array (which contains 1 element)}}
14 v[0][0][2] = 0; // expected-warning {{array index 2 is past the end of the array (which contains 1 element)}}
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000015 return x[2] + // expected-warning {{array index 2 is past the end of the array (which contains 2 elements)}}
16 y[-1] + // expected-warning {{array index -1 is before the beginning of the array}}
17 x[sizeof(x)] + // expected-warning {{array index 8 is past the end of the array (which contains 2 elements)}}
18 x[sizeof(x) / sizeof(x[0])] + // expected-warning {{array index 2 is past the end of the array (which contains 2 elements)}}
Ted Kremeneka0125d82011-02-16 01:57:07 +000019 x[sizeof(x) / sizeof(x[0]) - 1] + // no-warning
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000020 x[sizeof(x[2])]; // expected-warning {{array index 4 is past the end of the array (which contains 2 elements)}}
Ted Kremeneka0125d82011-02-16 01:57:07 +000021}
22
Ted Kremenekc71a2c02011-02-16 23:39:09 +000023// This code example tests that -Warray-bounds works with arrays that
24// are template parameters.
25template <char *sz> class Qux {
26 bool test() { return sz[0] == 'a'; }
Chandler Carruth35001ca2011-02-17 21:10:52 +000027};
28
29void f1(int a[1]) {
30 int val = a[3]; // no warning for function argumnet
31}
32
Chris Lattner9e6a1ca2011-08-02 21:44:23 +000033void f2(const int (&a)[2]) { // expected-note {{declared here}}
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000034 int val = a[3]; // expected-warning {{array index 3 is past the end of the array (which contains 2 elements)}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000035}
36
37void test() {
38 struct {
39 int a[0];
40 } s2;
41 s2.a[3] = 0; // no warning for 0-sized array
42
43 union {
Kaelyn Uhraind6c88652011-08-05 23:18:04 +000044 short a[2]; // expected-note 4 {{declared here}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000045 char c[4];
46 } u;
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000047 u.a[3] = 1; // expected-warning {{array index 3 is past the end of the array (which contains 2 elements)}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000048 u.c[3] = 1; // no warning
Kaelyn Uhraind6c88652011-08-05 23:18:04 +000049 short *p = &u.a[2]; // no warning
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000050 p = &u.a[3]; // expected-warning {{array index 3 is past the end of the array (which contains 2 elements)}}
51 *(&u.a[2]) = 1; // expected-warning {{array index 2 is past the end of the array (which contains 2 elements)}}
52 *(&u.a[3]) = 1; // expected-warning {{array index 3 is past the end of the array (which contains 2 elements)}}
Kaelyn Uhraind6c88652011-08-05 23:18:04 +000053 *(&u.c[3]) = 1; // no warning
Chandler Carruth35001ca2011-02-17 21:10:52 +000054
55 const int const_subscript = 3;
Chris Lattner9e6a1ca2011-08-02 21:44:23 +000056 int array[2]; // expected-note {{declared here}}
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000057 array[const_subscript] = 0; // expected-warning {{array index 3 is past the end of the array (which contains 2 elements)}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000058
59 int *ptr;
60 ptr[3] = 0; // no warning for pointer references
61 int array2[] = { 0, 1, 2 }; // expected-note 2 {{declared here}}
62
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000063 array2[3] = 0; // expected-warning {{array index 3 is past the end of the array (which contains 3 elements)}}
64 array2[2+2] = 0; // expected-warning {{array index 4 is past the end of the array (which contains 3 elements)}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000065
66 const char *str1 = "foo";
67 char c1 = str1[5]; // no warning for pointers
68
69 const char str2[] = "foo"; // expected-note {{declared here}}
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000070 char c2 = str2[5]; // expected-warning {{array index 5 is past the end of the array (which contains 4 elements)}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000071
Chris Lattner9e6a1ca2011-08-02 21:44:23 +000072 int (*array_ptr)[2];
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000073 (*array_ptr)[3] = 1; // expected-warning {{array index 3 is past the end of the array (which contains 2 elements)}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000074}
75
76template <int I> struct S {
Argyrios Kyrtzidisa9990e82012-12-14 06:54:03 +000077 char arr[I]; // expected-note 3 {{declared here}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000078};
79template <int I> void f() {
80 S<3> s;
Argyrios Kyrtzidisa9990e82012-12-14 06:54:03 +000081 s.arr[4] = 0; // expected-warning 2 {{array index 4 is past the end of the array (which contains 3 elements)}}
David Blaikie23661d32012-01-24 04:51:48 +000082 s.arr[I] = 0; // expected-warning {{array index 5 is past the end of the array (which contains 3 elements)}}
Chandler Carruth35001ca2011-02-17 21:10:52 +000083}
84
85void test_templates() {
86 f<5>(); // expected-note {{in instantiation}}
87}
Ted Kremeneka85f5282011-02-17 21:40:51 +000088
89#define SIZE 10
90#define ARR_IN_MACRO(flag, arr, idx) flag ? arr[idx] : 1
91
92int test_no_warn_macro_unreachable() {
Ted Kremenek351ba912011-02-23 01:52:04 +000093 int arr[SIZE]; // expected-note {{array 'arr' declared here}}
94 return ARR_IN_MACRO(0, arr, SIZE) + // no-warning
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +000095 ARR_IN_MACRO(1, arr, SIZE); // expected-warning{{array index 10 is past the end of the array (which contains 10 elements)}}
Ted Kremeneka85f5282011-02-17 21:40:51 +000096}
97
Ted Kremenek25b3b842011-02-18 02:27:00 +000098// This exhibited an assertion failure for a 32-bit build of Clang.
99int test_pr9240() {
100 short array[100]; // expected-note {{array 'array' declared here}}
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +0000101 return array[(unsigned long long) 100]; // expected-warning {{array index 100 is past the end of the array (which contains 100 elements)}}
Ted Kremenek25b3b842011-02-18 02:27:00 +0000102}
103
Ted Kremenek3bcc2be2011-02-23 01:52:07 +0000104// PR 9284 - a template parameter can cause an array bounds access to be
105// infeasible.
Ted Kremenek351ba912011-02-23 01:52:04 +0000106template <bool extendArray>
Ted Kremenek3bcc2be2011-02-23 01:52:07 +0000107void pr9284() {
Ted Kremenek351ba912011-02-23 01:52:04 +0000108 int arr[3 + (extendArray ? 1 : 0)];
109
110 if (extendArray)
Ted Kremenek3bcc2be2011-02-23 01:52:07 +0000111 arr[3] = 42; // no-warning
Ted Kremenek351ba912011-02-23 01:52:04 +0000112}
113
Ted Kremenek3bcc2be2011-02-23 01:52:07 +0000114template <bool extendArray>
115void pr9284b() {
116 int arr[3 + (extendArray ? 1 : 0)]; // expected-note {{array 'arr' declared here}}
117
118 if (!extendArray)
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +0000119 arr[3] = 42; // expected-warning{{array index 3 is past the end of the array (which contains 3 elements)}}
Ted Kremenek3bcc2be2011-02-23 01:52:07 +0000120}
121
122void test_pr9284() {
123 pr9284<true>();
124 pr9284<false>();
125 pr9284b<true>();
126 pr9284b<false>(); // expected-note{{in instantiation of function template specialization 'pr9284b<false>' requested here}}
Ted Kremenek351ba912011-02-23 01:52:04 +0000127}
128
Ted Kremenek9e060ca2011-02-23 23:06:04 +0000129int test_pr9296() {
130 int array[2];
131 return array[true]; // no-warning
132}
133
Ted Kremenek3aea4da2011-03-01 18:41:00 +0000134int test_sizeof_as_condition(int flag) {
135 int arr[2] = { 0, 0 }; // expected-note {{array 'arr' declared here}}
136 if (flag)
137 return sizeof(char) != sizeof(char) ? arr[2] : arr[1];
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +0000138 return sizeof(char) == sizeof(char) ? arr[2] : arr[1]; // expected-warning {{array index 2 is past the end of the array (which contains 2 elements)}}
Ted Kremenek3aea4da2011-03-01 18:41:00 +0000139}
140
Ted Kremeneke71f3d52011-03-01 23:12:55 +0000141void test_switch() {
142 switch (4) {
143 case 1: {
144 int arr[2];
145 arr[2] = 1; // no-warning
146 break;
147 }
148 case 4: {
149 int arr[2]; // expected-note {{array 'arr' declared here}}
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +0000150 arr[2] = 1; // expected-warning {{array index 2 is past the end of the array (which contains 2 elements)}}
Ted Kremeneke71f3d52011-03-01 23:12:55 +0000151 break;
152 }
153 default: {
154 int arr[2];
155 arr[2] = 1; // no-warning
156 break;
157 }
158 }
159}
Ted Kremenek3aea4da2011-03-01 18:41:00 +0000160
Ted Kremenek04982472011-03-04 01:03:41 +0000161// Test nested switch statements.
162enum enumA { enumA_A, enumA_B, enumA_C, enumA_D, enumA_E };
163enum enumB { enumB_X, enumB_Y, enumB_Z };
164static enum enumB myVal = enumB_X;
Kaelyn Uhraind6c88652011-08-05 23:18:04 +0000165void test_nested_switch() {
Ted Kremenek04982472011-03-04 01:03:41 +0000166 switch (enumA_E) { // expected-warning {{no case matching constant}}
167 switch (myVal) { // expected-warning {{enumeration values 'enumB_X' and 'enumB_Z' not handled in switch}}
168 case enumB_Y: ;
169 }
170 }
171}
172
Ted Kremenek432c4782011-03-16 04:32:01 +0000173// Test that if all the values of an enum covered, that the 'default' branch
174// is unreachable.
175enum Values { A, B, C, D };
176void test_all_enums_covered(enum Values v) {
177 int x[2];
178 switch (v) {
179 case A: return;
180 case B: return;
181 case C: return;
182 case D: return;
183 }
184 x[2] = 0; // no-warning
185}
Chris Lattner9e6a1ca2011-08-02 21:44:23 +0000186
187namespace tailpad {
188 struct foo {
Chandler Carruthc2684342011-08-05 09:10:50 +0000189 char c1[1]; // expected-note {{declared here}}
Chris Lattner9e6a1ca2011-08-02 21:44:23 +0000190 int x;
Chandler Carruthc2684342011-08-05 09:10:50 +0000191 char c2[1];
Chris Lattner9e6a1ca2011-08-02 21:44:23 +0000192 };
Matt Beaumont-Gay381711c2011-11-29 22:43:53 +0000193
194 class baz {
195 public:
196 char c1[1]; // expected-note {{declared here}}
197 int x;
198 char c2[1];
199 };
200
201 char bar(struct foo *F, baz *B) {
202 return F->c1[3] + // expected-warning {{array index 3 is past the end of the array (which contains 1 element)}}
203 F->c2[3] + // no warning, foo could have tail padding allocated.
204 B->c1[3] + // expected-warning {{array index 3 is past the end of the array (which contains 1 element)}}
205 B->c2[3]; // no warning, baz could have tail padding allocated.
Chandler Carruthc2684342011-08-05 09:10:50 +0000206 }
207}
208
209namespace metaprogramming {
210#define ONE 1
211 struct foo { char c[ONE]; }; // expected-note {{declared here}}
212 template <int N> struct bar { char c[N]; }; // expected-note {{declared here}}
213
214 char test(foo *F, bar<1> *B) {
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +0000215 return F->c[3] + // expected-warning {{array index 3 is past the end of the array (which contains 1 element)}}
216 B->c[3]; // expected-warning {{array index 3 is past the end of the array (which contains 1 element)}}
Chris Lattner9e6a1ca2011-08-02 21:44:23 +0000217 }
218}
Kaelyn Uhraind6c88652011-08-05 23:18:04 +0000219
220void bar(int x) {}
221int test_more() {
222 int foo[5]; // expected-note 5 {{array 'foo' declared here}}
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +0000223 bar(foo[5]); // expected-warning {{array index 5 is past the end of the array (which contains 5 elements)}}
224 ++foo[5]; // expected-warning {{array index 5 is past the end of the array (which contains 5 elements)}}
225 if (foo[6]) // expected-warning {{array index 6 is past the end of the array (which contains 5 elements)}}
226 return --foo[6]; // expected-warning {{array index 6 is past the end of the array (which contains 5 elements)}}
Kaelyn Uhraind6c88652011-08-05 23:18:04 +0000227 else
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +0000228 return foo[5]; // expected-warning {{array index 5 is past the end of the array (which contains 5 elements)}}
Kaelyn Uhraind6c88652011-08-05 23:18:04 +0000229}
Nico Weberde5998f2011-09-17 22:59:41 +0000230
231void test_pr10771() {
232 double foo[4096]; // expected-note {{array 'foo' declared here}}
233
234 ((char*)foo)[sizeof(foo) - 1] = '\0'; // no-warning
235 *(((char*)foo) + sizeof(foo) - 1) = '\0'; // no-warning
236
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +0000237 ((char*)foo)[sizeof(foo)] = '\0'; // expected-warning {{array index 32768 is past the end of the array (which contains 32768 elements)}}
Nico Weberde5998f2011-09-17 22:59:41 +0000238
239 // TODO: This should probably warn, too.
240 *(((char*)foo) + sizeof(foo)) = '\0'; // no-warning
241}
Ted Kremenek615eb7c2011-09-26 23:36:13 +0000242
243int test_pr11007_aux(const char * restrict, ...);
244
245// Test checking with varargs.
246void test_pr11007() {
247 double a[5]; // expected-note {{array 'a' declared here}}
Matt Beaumont-Gaya5aa96d2011-11-24 00:27:38 +0000248 test_pr11007_aux("foo", a[1000]); // expected-warning {{array index 1000 is past the end of the array}}
Ted Kremenek615eb7c2011-09-26 23:36:13 +0000249}
Eli Friedman92b670e2012-02-27 21:21:40 +0000250
251void test_rdar10916006(void)
252{
253 int a[128]; // expected-note {{array 'a' declared here}}
254 a[(unsigned char)'\xA1'] = 1; // expected-warning {{array index 161 is past the end of the array}}
255}