[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Analysis / index-type.c
blob997d45c1e5abade4a30ecf6ebdc20220209ff210
1 // RUN: %clang_analyze_cc1 -triple x86_64-apple-darwin10 -analyzer-checker=core,alpha.security.ArrayBoundV2 -Wno-implicit-function-declaration -verify %s
2 // RUN: %clang_analyze_cc1 -triple i386-apple-darwin10 -analyzer-checker=core,alpha.security.ArrayBoundV2 -Wno-implicit-function-declaration -DM32 -verify %s
3 // expected-no-diagnostics
5 #define UINT_MAX (~0u)
7 #ifdef M32
9 #define X86_ARRAY_SIZE (UINT_MAX/2 + 4)
11 void testIndexTooBig(void) {
12 char arr[X86_ARRAY_SIZE];
13 char *ptr = arr + UINT_MAX/2;
14 ptr += 2; // index shouldn't overflow
15 *ptr = 42; // no-warning
18 #else // 64-bit tests
20 #define ARRAY_SIZE 0x100000000
22 void testIndexOverflow64(void) {
23 char arr[ARRAY_SIZE];
24 char *ptr = arr + UINT_MAX/2;
25 ptr += 2; // don't overflow 64-bit index
26 *ptr = 42; // no-warning
29 #define ULONG_MAX (~0ul)
30 #define BIG_INDEX (ULONG_MAX/16)
32 void testIndexTooBig64(void) {
33 char arr[ULONG_MAX/8-1];
34 char *ptr = arr + BIG_INDEX;
35 ptr += 2; // don't overflow 64-bit index
36 *ptr = 42; // no-warning
39 #define SIZE 4294967296
41 static unsigned size;
42 static void * addr;
43 static unsigned buf[SIZE];
45 void testOutOfBounds(void) {
46 // Not out of bounds.
47 buf[SIZE-1] = 1; // no-warning
50 void testOutOfBoundsCopy1(void) {
51 memcpy(buf, addr, size); // no-warning
54 void testOutOfBoundsCopy2(void) {
55 memcpy(addr, buf, size); // no-warning
58 #endif