Update contrib.
2 * Portions copyright (c) 2009 Nokia Corporation. All rights reserved.
6 #include "mrt2_glib2_test.h"
7 #endif /*__SYMBIAN32__*/
9 #if defined(__GNUC__) && (__GNUC__ >= 4)
10 # define TEST_BUILTINS 1
12 # define TEST_BUILTINS 0
17 builtin_bit_nth_lsf1 (gulong mask, gint nth_bit)
21 if (G_LIKELY (nth_bit < GLIB_SIZEOF_LONG * 8 - 1))
22 mask &= -(1UL<<(nth_bit+1));
26 return __builtin_ffsl(mask) - 1;
30 builtin_bit_nth_lsf2 (gulong mask, gint nth_bit)
34 if (G_LIKELY (nth_bit < GLIB_SIZEOF_LONG * 8 - 1))
35 mask &= -(1UL<<(nth_bit+1));
39 return mask ? __builtin_ctzl(mask) : -1;
43 builtin_bit_nth_msf (gulong mask, gint nth_bit)
45 if (nth_bit >= 0 && nth_bit < GLIB_SIZEOF_LONG * 8)
46 mask &= (1UL<<nth_bit)-1;
47 return mask ? GLIB_SIZEOF_LONG * 8 - 1 - __builtin_clzl(mask) : -1;
52 builtin_bit_storage (gulong number)
54 return number ? GLIB_SIZEOF_LONG * 8 - __builtin_clzl(number) : 1;
60 naive_bit_nth_lsf (gulong mask, gint nth_bit)
62 if (G_UNLIKELY (nth_bit < -1))
64 while (nth_bit < ((GLIB_SIZEOF_LONG * 8) - 1))
67 if (mask & (1UL << nth_bit))
74 naive_bit_nth_msf (gulong mask, gint nth_bit)
76 if (nth_bit < 0 || G_UNLIKELY (nth_bit > GLIB_SIZEOF_LONG * 8))
77 nth_bit = GLIB_SIZEOF_LONG * 8;
81 if (mask & (1UL << nth_bit))
88 naive_bit_storage (gulong number)
90 register guint n_bits = 0;
103 #define TEST(f1, f2, i) \
104 if (f1 (i) != f2 (i)) { \
105 g_error (G_STRINGIFY (f1) " (%lu) = %d; " \
106 G_STRINGIFY (f2) " (%lu) = %d; ", \
111 #define TEST2(f1, f2, i, n) \
112 if (f1 (i, n) != f2 (i, n)) { \
113 g_error (G_STRINGIFY (f1) " (%lu, %d) = %d; " \
114 G_STRINGIFY (f2) " (%lu, %d) = %d; ", \
126 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
127 g_set_print_handler(mrtPrintHandler);
128 #endif /*__SYMBIAN32__*/
131 /* we loop like this: 0, -1, 1, -2, 2, -3, 3, ... */
132 for (i = 0; (glong)i < 1500 ; i = -(i+((glong)i>=0))) {
135 TEST (naive_bit_storage, builtin_bit_storage, i);
137 TEST (naive_bit_storage, g_bit_storage, i);
139 for (nth_bit = -3; nth_bit <= 2 + GLIB_SIZEOF_LONG * 8; nth_bit++) {
142 TEST2 (naive_bit_nth_lsf, builtin_bit_nth_lsf1, i, nth_bit);
143 TEST2 (naive_bit_nth_lsf, builtin_bit_nth_lsf2, i, nth_bit);
145 TEST2 (naive_bit_nth_lsf, g_bit_nth_lsf, i, nth_bit);
148 TEST2 (naive_bit_nth_msf, builtin_bit_nth_msf, i, nth_bit);
150 TEST2 (naive_bit_nth_msf, g_bit_nth_msf, i, nth_bit);
155 testResultXml("bit-test");
156 #endif /* EMULATOR */