4 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
5 * See the COPYING.LIB file in the top-level directory.
9 #include "qemu/osdep.h"
10 #include "qemu/bitops.h"
26 static const S32Test test_s32_data
[] = {
27 { 0x38463983, 4, 4, -8 },
28 { 0x38463983, 12, 8, 0x63 },
29 { 0x38463983, 0, 32, 0x38463983 },
32 static const S64Test test_s64_data
[] = {
33 { 0x8459826734967223ULL
, 60, 4, -8 },
34 { 0x8459826734967223ULL
, 0, 64, 0x8459826734967223LL
},
37 static void test_sextract32(void)
41 for (i
= 0; i
< ARRAY_SIZE(test_s32_data
); i
++) {
42 const S32Test
*test
= &test_s32_data
[i
];
43 int32_t r
= sextract32(test
->value
, test
->start
, test
->length
);
45 g_assert_cmpint(r
, ==, test
->result
);
49 static void test_sextract64(void)
53 for (i
= 0; i
< ARRAY_SIZE(test_s32_data
); i
++) {
54 const S32Test
*test
= &test_s32_data
[i
];
55 int64_t r
= sextract64(test
->value
, test
->start
, test
->length
);
57 g_assert_cmpint(r
, ==, test
->result
);
60 for (i
= 0; i
< ARRAY_SIZE(test_s64_data
); i
++) {
61 const S64Test
*test
= &test_s64_data
[i
];
62 int64_t r
= sextract64(test
->value
, test
->start
, test
->length
);
64 g_assert_cmpint(r
, ==, test
->result
);
78 static const Shuffle32Test test_shuffle32_data
[] = {
79 { 0x0000FFFF, 0x55555555 },
80 { 0x000081C5, 0x40015011 },
83 static const Shuffle64Test test_shuffle64_data
[] = {
84 { 0x00000000FFFFFFFFULL
, 0x5555555555555555ULL
},
85 { 0x00000000493AB02CULL
, 0x1041054445000450ULL
},
88 static void test_half_shuffle32(void)
92 for (i
= 0; i
< ARRAY_SIZE(test_shuffle32_data
); i
++) {
93 const Shuffle32Test
*test
= &test_shuffle32_data
[i
];
94 uint32_t r
= half_shuffle32(test
->unshuffled
);
96 g_assert_cmpint(r
, ==, test
->shuffled
);
100 static void test_half_shuffle64(void)
104 for (i
= 0; i
< ARRAY_SIZE(test_shuffle64_data
); i
++) {
105 const Shuffle64Test
*test
= &test_shuffle64_data
[i
];
106 uint64_t r
= half_shuffle64(test
->unshuffled
);
108 g_assert_cmpint(r
, ==, test
->shuffled
);
112 static void test_half_unshuffle32(void)
116 for (i
= 0; i
< ARRAY_SIZE(test_shuffle32_data
); i
++) {
117 const Shuffle32Test
*test
= &test_shuffle32_data
[i
];
118 uint32_t r
= half_unshuffle32(test
->shuffled
);
120 g_assert_cmpint(r
, ==, test
->unshuffled
);
124 static void test_half_unshuffle64(void)
128 for (i
= 0; i
< ARRAY_SIZE(test_shuffle64_data
); i
++) {
129 const Shuffle64Test
*test
= &test_shuffle64_data
[i
];
130 uint64_t r
= half_unshuffle64(test
->shuffled
);
132 g_assert_cmpint(r
, ==, test
->unshuffled
);
136 int main(int argc
, char **argv
)
138 g_test_init(&argc
, &argv
, NULL
);
139 g_test_add_func("/bitops/sextract32", test_sextract32
);
140 g_test_add_func("/bitops/sextract64", test_sextract64
);
141 g_test_add_func("/bitops/half_shuffle32", test_half_shuffle32
);
142 g_test_add_func("/bitops/half_shuffle64", test_half_shuffle64
);
143 g_test_add_func("/bitops/half_unshuffle32", test_half_unshuffle32
);
144 g_test_add_func("/bitops/half_unshuffle64", test_half_unshuffle64
);