|
| 1 | +/* |
| 2 | + * bits.c -- test bit manipulation instructions |
| 3 | + * |
| 4 | + * Copyright (c) 2024, NLnet Labs. All rights reserved. |
| 5 | + * |
| 6 | + * SPDX-License-Identifier: BSD-3-Clause |
| 7 | + * |
| 8 | + */ |
| 9 | +#include <assert.h> |
| 10 | +#include <stdarg.h> |
| 11 | +#include <setjmp.h> |
| 12 | +#include <stdint.h> |
| 13 | +#include <stddef.h> |
| 14 | +#include <string.h> |
| 15 | +#include <cmocka.h> |
| 16 | + |
| 17 | +#include "config.h" |
| 18 | +#include "attributes.h" |
| 19 | +#include "isadetection.h" |
| 20 | + |
| 21 | +#if _MSC_VER |
| 22 | +# define strcasecmp(s1, s2) _stricmp(s1, s2) |
| 23 | +# define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n) |
| 24 | +#else |
| 25 | +#include <strings.h> |
| 26 | +#endif |
| 27 | + |
| 28 | +#include "diagnostic.h" |
| 29 | + |
| 30 | +struct kernel { |
| 31 | + const char *name; |
| 32 | + uint32_t instruction_set; |
| 33 | + void (*test_trailing_zeroes)(void **state); |
| 34 | + void (*test_leading_zeroes)(void **state); |
| 35 | + void (*test_prefix_xor)(void **state); |
| 36 | + void (*test_add_overflow)(void **state); |
| 37 | +}; |
| 38 | + |
| 39 | +#if HAVE_HASWELL |
| 40 | +extern void test_haswell_trailing_zeroes(void **); |
| 41 | +extern void test_haswell_leading_zeroes(void **); |
| 42 | +extern void test_haswell_prefix_xor(void **); |
| 43 | +extern void test_haswell_add_overflow(void **); |
| 44 | +#endif |
| 45 | + |
| 46 | +#if HAVE_WESTMERE |
| 47 | +extern void test_westmere_trailing_zeroes(void **); |
| 48 | +extern void test_westmere_leading_zeroes(void **); |
| 49 | +extern void test_westmere_prefix_xor(void **); |
| 50 | +extern void test_westmere_add_overflow(void **); |
| 51 | +#endif |
| 52 | + |
| 53 | +extern void test_fallback_trailing_zeroes(void **); |
| 54 | +extern void test_fallback_leading_zeroes(void **); |
| 55 | + |
| 56 | +static const struct kernel kernels[] = { |
| 57 | +#if HAVE_HASWELL |
| 58 | + { "haswell", AVX2, &test_haswell_trailing_zeroes, |
| 59 | + &test_haswell_leading_zeroes, |
| 60 | + &test_haswell_prefix_xor, |
| 61 | + &test_haswell_add_overflow }, |
| 62 | +#endif |
| 63 | +#if HAVE_WESTMERE |
| 64 | + { "westmere", SSE42, &test_westmere_trailing_zeroes, |
| 65 | + &test_westmere_leading_zeroes, |
| 66 | + &test_westmere_prefix_xor, |
| 67 | + &test_westmere_add_overflow }, |
| 68 | +#endif |
| 69 | + { "fallback", DEFAULT, &test_fallback_trailing_zeroes, |
| 70 | + &test_fallback_leading_zeroes, |
| 71 | + 0, 0 } |
| 72 | +}; |
| 73 | + |
| 74 | +static inline const struct kernel * |
| 75 | +select_kernel(void) |
| 76 | +{ |
| 77 | + const char *preferred; |
| 78 | + const uint32_t supported = detect_supported_architectures(); |
| 79 | + const size_t length = sizeof(kernels)/sizeof(kernels[0]); |
| 80 | + size_t count = 0; |
| 81 | + |
| 82 | +diagnostic_push() |
| 83 | +msvc_diagnostic_ignored(4996) |
| 84 | + preferred = getenv("ZONE_KERNEL"); |
| 85 | +diagnostic_pop() |
| 86 | + |
| 87 | + if (preferred) { |
| 88 | + for (; count < length; count++) |
| 89 | + if (strcasecmp(preferred, kernels[count].name) == 0) |
| 90 | + break; |
| 91 | + if (count == length) |
| 92 | + count = 0; |
| 93 | + } |
| 94 | + |
| 95 | + for (; count < length; count++) |
| 96 | + if ((kernels[count].instruction_set & supported) == (kernels[count].instruction_set)) |
| 97 | + return &kernels[count]; |
| 98 | + |
| 99 | + return &kernels[length - 1]; |
| 100 | +} |
| 101 | + |
| 102 | +/*!cmocka */ |
| 103 | +void test_trailing_zeroes(void **state) |
| 104 | +{ |
| 105 | + const struct kernel *kernel = select_kernel(); |
| 106 | + assert(kernel); |
| 107 | + kernel->test_trailing_zeroes(state); |
| 108 | +} |
| 109 | + |
| 110 | +/*!cmocka */ |
| 111 | +void test_leading_zeroes(void **state) |
| 112 | +{ |
| 113 | + const struct kernel *kernel = select_kernel(); |
| 114 | + assert(kernel); |
| 115 | + kernel->test_leading_zeroes(state); |
| 116 | +} |
| 117 | + |
| 118 | +/*!cmocka */ |
| 119 | +void test_prefix_xor(void **state) |
| 120 | +{ |
| 121 | + const struct kernel *kernel = select_kernel(); |
| 122 | + assert(kernel); |
| 123 | + if (kernel->test_prefix_xor) |
| 124 | + kernel->test_prefix_xor(state); |
| 125 | + else |
| 126 | + assert_true(1); |
| 127 | +} |
| 128 | + |
| 129 | +/*!cmocka */ |
| 130 | +void test_add_overflow(void **state) |
| 131 | +{ |
| 132 | + const struct kernel *kernel = select_kernel(); |
| 133 | + assert(kernel); |
| 134 | + if (kernel->test_add_overflow) |
| 135 | + kernel->test_add_overflow(state); |
| 136 | + else |
| 137 | + assert_true(1); |
| 138 | +} |
0 commit comments