1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/* Test built-in string functions with large sizes. PR 78460. */
typedef __SIZE_TYPE__ size_t;
#define SIZE1 ((size_t) -1)
#define SIZE2 (SIZE1 >> 1)
#define SIZE3 ((unsigned int) -1)
#define SIZE4 (SIZE3 >> 1)
volatile int v1, v2, v3, v4;
void *volatile vp1, *volatile vp2, *volatile vp3, *volatile vp4;
void
test_memchr (const void *a, int b)
{
vp1 = __builtin_memchr (a, b, SIZE1);
vp2 = __builtin_memchr (a, b, SIZE2);
vp3 = __builtin_memchr (a, b, SIZE3);
vp4 = __builtin_memchr (a, b, SIZE4);
}
void
test_memcmp (const void *a, const void *b)
{
v1 = __builtin_memcmp (a, b, SIZE1);
v2 = __builtin_memcmp (a, b, SIZE2);
v3 = __builtin_memcmp (a, b, SIZE3);
v4 = __builtin_memcmp (a, b, SIZE4);
}
void
test_memcpy (void *a, const void *b)
{
vp1 = __builtin_memcpy (a, b, SIZE1);
vp2 = __builtin_memcpy (a, b, SIZE2);
vp3 = __builtin_memcpy (a, b, SIZE3);
vp4 = __builtin_memcpy (a, b, SIZE4);
}
void
test_memmove (void *a, const void *b)
{
vp1 = __builtin_memmove (a, b, SIZE1);
vp2 = __builtin_memmove (a, b, SIZE2);
vp3 = __builtin_memmove (a, b, SIZE3);
vp4 = __builtin_memmove (a, b, SIZE4);
}
void
test_mempcpy (void *a, const void *b)
{
vp1 = __builtin_mempcpy (a, b, SIZE1);
vp2 = __builtin_mempcpy (a, b, SIZE2);
vp3 = __builtin_mempcpy (a, b, SIZE3);
vp4 = __builtin_mempcpy (a, b, SIZE4);
}
void
test_memset (void *a, int b)
{
vp1 = __builtin_memset (a, b, SIZE1);
vp2 = __builtin_memset (a, b, SIZE2);
vp3 = __builtin_memset (a, b, SIZE3);
vp4 = __builtin_memset (a, b, SIZE4);
}
void
test_stpncpy (char *a, const char *b)
{
vp1 = __builtin_stpncpy (a, b, SIZE1);
vp2 = __builtin_stpncpy (a, b, SIZE2);
vp3 = __builtin_stpncpy (a, b, SIZE3);
vp4 = __builtin_stpncpy (a, b, SIZE4);
}
void
test_strndup (const char *a)
{
vp1 = __builtin_strndup (a, SIZE1);
vp2 = __builtin_strndup (a, SIZE2);
vp3 = __builtin_strndup (a, SIZE3);
vp4 = __builtin_strndup (a, SIZE4);
}
void
test_strncasecmp (const char *a, const char *b)
{
v1 = __builtin_strncasecmp (a, b, SIZE1);
v2 = __builtin_strncasecmp (a, b, SIZE2);
v3 = __builtin_strncasecmp (a, b, SIZE3);
v4 = __builtin_strncasecmp (a, b, SIZE4);
}
void
test_strncat (char *a, const char *b)
{
vp1 = __builtin_strncat (a, b, SIZE1);
vp2 = __builtin_strncat (a, b, SIZE2);
vp3 = __builtin_strncat (a, b, SIZE3);
vp4 = __builtin_strncat (a, b, SIZE4);
}
void
test_strncmp (const char *a, const char *b)
{
v1 = __builtin_strncmp (a, b, SIZE1);
v2 = __builtin_strncmp (a, b, SIZE2);
v3 = __builtin_strncmp (a, b, SIZE3);
v4 = __builtin_strncmp (a, b, SIZE4);
}
void
test_strncpy (char *a, const char *b)
{
vp1 = __builtin_strncpy (a, b, SIZE1);
vp2 = __builtin_strncpy (a, b, SIZE2);
vp3 = __builtin_strncpy (a, b, SIZE3);
vp4 = __builtin_strncpy (a, b, SIZE4);
}
|