]> git.saurik.com Git - bison.git/blame - lib/bitset_stats.c
maint: gnulib: upgrade.
[bison.git] / lib / bitset_stats.c
CommitLineData
613f5e1a 1/* Bitset statistics.
7d424de1 2
34136e65 3 Copyright (C) 2002-2006, 2009-2012 Free Software Foundation, Inc.
7d424de1 4
613f5e1a
AD
5 Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
6
f16b0819 7 This program is free software: you can redistribute it and/or modify
613f5e1a 8 it under the terms of the GNU General Public License as published by
f16b0819 9 the Free Software Foundation, either version 3 of the License, or
613f5e1a
AD
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
f16b0819 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
613f5e1a
AD
19
20/* This file is a wrapper bitset implementation for the other bitset
21 implementations. It provides bitset compatibility checking and
22 statistics gathering without having to instrument the bitset
23 implementations. When statistics gathering is enabled, the bitset
24 operations get vectored through here and we then call the appropriate
02650b7f 25 routines. */
613f5e1a 26
231ed89a
PE
27#include <config.h>
28
29#include "bitset_stats.h"
613f5e1a
AD
30
31#include "bbitset.h"
32#include "abitset.h"
33#include "ebitset.h"
34#include "lbitset.h"
eaef5507 35#include "vbitset.h"
613f5e1a
AD
36#include <stdlib.h>
37#include <string.h>
38#include <stdio.h>
39
c131cbff
PE
40#include "gettext.h"
41#define _(Msgid) gettext (Msgid)
613f5e1a
AD
42
43/* Configuration macros. */
44#define BITSET_STATS_FILE "bitset.dat"
45#define BITSET_LOG_COUNT_BINS 10
46#define BITSET_LOG_SIZE_BINS 16
47#define BITSET_DENSITY_BINS 20
48
49
50/* Accessor macros. */
e9690142 51#define BITSET_STATS_ALLOCS_INC(TYPE) \
613f5e1a 52 bitset_stats_info->types[(TYPE)].allocs++
e9690142 53#define BITSET_STATS_FREES_INC(BSET) \
613f5e1a 54 bitset_stats_info->types[BITSET_TYPE_ (BSET)].frees++
e9690142 55#define BITSET_STATS_SETS_INC(BSET) \
613f5e1a 56 bitset_stats_info->types[BITSET_TYPE_ (BSET)].sets++
e9690142 57#define BITSET_STATS_CACHE_SETS_INC(BSET) \
613f5e1a 58 bitset_stats_info->types[BITSET_TYPE_ (BSET)].cache_sets++
e9690142 59#define BITSET_STATS_RESETS_INC(BSET) \
613f5e1a 60 bitset_stats_info->types[BITSET_TYPE_ (BSET)].resets++
e9690142 61#define BITSET_STATS_CACHE_RESETS_INC(BSET) \
613f5e1a 62 bitset_stats_info->types[BITSET_TYPE_ (BSET)].cache_resets++
e9690142 63#define BITSET_STATS_TESTS_INC(BSET) \
613f5e1a 64 bitset_stats_info->types[BITSET_TYPE_ (BSET)].tests++
e9690142 65#define BITSET_STATS_CACHE_TESTS_INC(BSET) \
613f5e1a 66 bitset_stats_info->types[BITSET_TYPE_ (BSET)].cache_tests++
e9690142 67#define BITSET_STATS_LISTS_INC(BSET) \
613f5e1a 68 bitset_stats_info->types[BITSET_TYPE_ (BSET)].lists++
e9690142 69#define BITSET_STATS_LIST_COUNTS_INC(BSET, I) \
613f5e1a 70 bitset_stats_info->types[BITSET_TYPE_ (BSET)].list_counts[(I)]++
e9690142 71#define BITSET_STATS_LIST_SIZES_INC(BSET, I) \
613f5e1a 72 bitset_stats_info->types[BITSET_TYPE_ (BSET)].list_sizes[(I)]++
e9690142 73#define BITSET_STATS_LIST_DENSITY_INC(BSET, I) \
613f5e1a
AD
74 bitset_stats_info->types[BITSET_TYPE_ (BSET)].list_density[(I)]++
75
76
613f5e1a
AD
77struct bitset_type_info_struct
78{
79 unsigned int allocs;
80 unsigned int frees;
81 unsigned int lists;
82 unsigned int sets;
83 unsigned int cache_sets;
84 unsigned int resets;
85 unsigned int cache_resets;
86 unsigned int tests;
87 unsigned int cache_tests;
88 unsigned int list_counts[BITSET_LOG_COUNT_BINS];
89 unsigned int list_sizes[BITSET_LOG_SIZE_BINS];
90 unsigned int list_density[BITSET_DENSITY_BINS];
91};
92
93struct bitset_stats_info_struct
94{
95 unsigned int runs;
96 struct bitset_type_info_struct types[BITSET_TYPE_NUM];
97};
98
99
100struct bitset_stats_info_struct bitset_stats_info_data;
101struct bitset_stats_info_struct *bitset_stats_info;
d0829076 102bool bitset_stats_enabled = false;
613f5e1a
AD
103
104
613f5e1a
AD
105/* Print a percentage histogram with message MSG to FILE. */
106static void
d65ec44e 107bitset_percent_histogram_print (FILE *file, const char *name, const char *msg,
e9690142 108 unsigned int n_bins, unsigned int *bins)
613f5e1a
AD
109{
110 unsigned int i;
111 unsigned int total;
112
113 total = 0;
114 for (i = 0; i < n_bins; i++)
115 total += bins[i];
116
117 if (!total)
118 return;
119
120 fprintf (file, "%s %s", name, msg);
121 for (i = 0; i < n_bins; i++)
2d382ea8 122 fprintf (file, "%.0f-%.0f%%\t%8u (%5.1f%%)\n",
e9690142
JD
123 i * 100.0 / n_bins,
124 (i + 1) * 100.0 / n_bins, bins[i],
125 (100.0 * bins[i]) / total);
613f5e1a
AD
126}
127
128
129/* Print a log histogram with message MSG to FILE. */
130static void
d65ec44e 131bitset_log_histogram_print (FILE *file, const char *name, const char *msg,
e9690142 132 unsigned int n_bins, unsigned int *bins)
613f5e1a
AD
133{
134 unsigned int i;
135 unsigned int total;
136 unsigned int max_width;
613f5e1a
AD
137
138 total = 0;
139 for (i = 0; i < n_bins; i++)
140 total += bins[i];
141
142 if (!total)
143 return;
144
6aa452a6 145 /* Determine number of useful bins. */
613f5e1a
AD
146 for (i = n_bins; i > 3 && ! bins[i - 1]; i--)
147 continue;
6aa452a6 148 n_bins = i;
613f5e1a
AD
149
150 /* 2 * ceil (log10 (2) * (N - 1)) + 1. */
151 max_width = 2 * (unsigned int) (0.30103 * (n_bins - 1) + 0.9999) + 1;
152
153 fprintf (file, "%s %s", name, msg);
154 for (i = 0; i < 2; i++)
2d382ea8 155 fprintf (file, "%*d\t%8u (%5.1f%%)\n",
e9690142 156 max_width, i, bins[i], 100.0 * bins[i] / total);
613f5e1a 157
6aa452a6 158 for (; i < n_bins; i++)
2d382ea8 159 fprintf (file, "%*lu-%lu\t%8u (%5.1f%%)\n",
e9690142
JD
160 max_width - ((unsigned int) (0.30103 * (i) + 0.9999) + 1),
161 1UL << (i - 1),
162 (1UL << i) - 1,
163 bins[i],
164 (100.0 * bins[i]) / total);
613f5e1a
AD
165}
166
167
168/* Print bitset statistics to FILE. */
169static void
d65ec44e 170bitset_stats_print_1 (FILE *file, const char *name,
e9690142 171 struct bitset_type_info_struct *stats)
613f5e1a
AD
172{
173 if (!stats)
174 return;
d65ec44e 175
613f5e1a 176 fprintf (file, "%s:\n", name);
2d382ea8 177 fprintf (file, _("%u bitset_allocs, %u freed (%.2f%%).\n"),
e9690142
JD
178 stats->allocs, stats->frees,
179 stats->allocs ? 100.0 * stats->frees / stats->allocs : 0);
2d382ea8 180 fprintf (file, _("%u bitset_sets, %u cached (%.2f%%)\n"),
e9690142
JD
181 stats->sets, stats->cache_sets,
182 stats->sets ? 100.0 * stats->cache_sets / stats->sets : 0);
2d382ea8 183 fprintf (file, _("%u bitset_resets, %u cached (%.2f%%)\n"),
e9690142
JD
184 stats->resets, stats->cache_resets,
185 stats->resets ? 100.0 * stats->cache_resets / stats->resets : 0);
2d382ea8 186 fprintf (file, _("%u bitset_tests, %u cached (%.2f%%)\n"),
e9690142
JD
187 stats->tests, stats->cache_tests,
188 stats->tests ? 100.0 * stats->cache_tests / stats->tests : 0);
613f5e1a 189
2d382ea8 190 fprintf (file, _("%u bitset_lists\n"), stats->lists);
613f5e1a 191
c131cbff 192 bitset_log_histogram_print (file, name, _("count log histogram\n"),
e9690142 193 BITSET_LOG_COUNT_BINS, stats->list_counts);
613f5e1a 194
c131cbff 195 bitset_log_histogram_print (file, name, _("size log histogram\n"),
e9690142 196 BITSET_LOG_SIZE_BINS, stats->list_sizes);
613f5e1a 197
c131cbff 198 bitset_percent_histogram_print (file, name, _("density histogram\n"),
e9690142 199 BITSET_DENSITY_BINS, stats->list_density);
613f5e1a
AD
200}
201
202
203/* Print all bitset statistics to FILE. */
204static void
d0829076 205bitset_stats_print (FILE *file, bool verbose ATTRIBUTE_UNUSED)
613f5e1a
AD
206{
207 int i;
613f5e1a
AD
208
209 if (!bitset_stats_info)
210 return;
211
c131cbff 212 fprintf (file, _("Bitset statistics:\n\n"));
613f5e1a
AD
213
214 if (bitset_stats_info->runs > 1)
2d382ea8 215 fprintf (file, _("Accumulated runs = %u\n"), bitset_stats_info->runs);
613f5e1a
AD
216
217 for (i = 0; i < BITSET_TYPE_NUM; i++)
d65ec44e 218 bitset_stats_print_1 (file, bitset_type_names[i],
e9690142 219 &bitset_stats_info->types[i]);
613f5e1a
AD
220}
221
222
223/* Initialise bitset statistics logging. */
224void
d65ec44e 225bitset_stats_enable (void)
613f5e1a
AD
226{
227 if (!bitset_stats_info)
228 bitset_stats_info = &bitset_stats_info_data;
d0829076 229 bitset_stats_enabled = true;
613f5e1a
AD
230}
231
232
233void
d65ec44e 234bitset_stats_disable (void)
613f5e1a 235{
d0829076 236 bitset_stats_enabled = false;
613f5e1a
AD
237}
238
239
240/* Read bitset statistics file. */
241void
48b16bbc 242bitset_stats_read (const char *file_name)
613f5e1a
AD
243{
244 FILE *file;
245
246 if (!bitset_stats_info)
247 return;
d65ec44e 248
48b16bbc
PE
249 if (!file_name)
250 file_name = BITSET_STATS_FILE;
613f5e1a 251
48b16bbc 252 file = fopen (file_name, "r");
613f5e1a
AD
253 if (file)
254 {
255 if (fread (&bitset_stats_info_data, sizeof (bitset_stats_info_data),
e9690142
JD
256 1, file) != 1)
257 {
258 if (ferror (file))
259 perror (_("Could not read stats file."));
260 else
261 fprintf (stderr, _("Bad stats file size.\n"));
262 }
11a71262 263 if (fclose (file) != 0)
e9690142 264 perror (_("Could not read stats file."));
613f5e1a
AD
265 }
266 bitset_stats_info_data.runs++;
267}
268
269
270/* Write bitset statistics file. */
271void
48b16bbc 272bitset_stats_write (const char *file_name)
613f5e1a
AD
273{
274 FILE *file;
275
276 if (!bitset_stats_info)
277 return;
278
48b16bbc
PE
279 if (!file_name)
280 file_name = BITSET_STATS_FILE;
613f5e1a 281
48b16bbc 282 file = fopen (file_name, "w");
613f5e1a
AD
283 if (file)
284 {
285 if (fwrite (&bitset_stats_info_data, sizeof (bitset_stats_info_data),
e9690142
JD
286 1, file) != 1)
287 perror (_("Could not write stats file."));
11a71262 288 if (fclose (file) != 0)
e9690142 289 perror (_("Could not write stats file."));
613f5e1a
AD
290 }
291 else
c131cbff 292 perror (_("Could not open stats file for writing."));
613f5e1a
AD
293}
294
295
296/* Dump bitset statistics to FILE. */
297void
d65ec44e 298bitset_stats_dump (FILE *file)
613f5e1a 299{
d0829076 300 bitset_stats_print (file, false);
613f5e1a
AD
301}
302
303
304/* Function to be called from debugger to print bitset stats. */
305void
306debug_bitset_stats (void)
307{
d0829076 308 bitset_stats_print (stderr, true);
613f5e1a
AD
309}
310
311
312static void
d65ec44e 313bitset_stats_set (bitset dst, bitset_bindex bitno)
613f5e1a
AD
314{
315 bitset bset = dst->s.bset;
c131cbff
PE
316 bitset_windex wordno = bitno / BITSET_WORD_BITS;
317 bitset_windex offset = wordno - bset->b.cindex;
d65ec44e 318
613f5e1a
AD
319 BITSET_STATS_SETS_INC (bset);
320
321 if (offset < bset->b.csize)
322 {
c131cbff 323 bset->b.cdata[offset] |= (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
613f5e1a
AD
324 BITSET_STATS_CACHE_SETS_INC (bset);
325 }
326 else
327 BITSET_SET_ (bset, bitno);
328}
329
330
331static void
d65ec44e 332bitset_stats_reset (bitset dst, bitset_bindex bitno)
613f5e1a
AD
333{
334 bitset bset = dst->s.bset;
c131cbff
PE
335 bitset_windex wordno = bitno / BITSET_WORD_BITS;
336 bitset_windex offset = wordno - bset->b.cindex;
d65ec44e 337
613f5e1a
AD
338 BITSET_STATS_RESETS_INC (bset);
339
340 if (offset < bset->b.csize)
341 {
c131cbff 342 bset->b.cdata[offset] &=
e9690142 343 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
613f5e1a
AD
344 BITSET_STATS_CACHE_RESETS_INC (bset);
345 }
346 else
347 BITSET_RESET_ (bset, bitno);
348}
349
350
d0829076 351static bool
d65ec44e 352bitset_stats_toggle (bitset src, bitset_bindex bitno)
6aa452a6
AD
353{
354 return BITSET_TOGGLE_ (src->s.bset, bitno);
355}
356
357
d0829076 358static bool
d65ec44e 359bitset_stats_test (bitset src, bitset_bindex bitno)
613f5e1a
AD
360{
361 bitset bset = src->s.bset;
c131cbff
PE
362 bitset_windex wordno = bitno / BITSET_WORD_BITS;
363 bitset_windex offset = wordno - bset->b.cindex;
613f5e1a
AD
364
365 BITSET_STATS_TESTS_INC (bset);
d65ec44e 366
613f5e1a
AD
367 if (offset < bset->b.csize)
368 {
369 BITSET_STATS_CACHE_TESTS_INC (bset);
370 return (bset->b.cdata[offset] >> (bitno % BITSET_WORD_BITS)) & 1;
371 }
372 else
373 return BITSET_TEST_ (bset, bitno);
374}
375
376
eaef5507
PE
377static bitset_bindex
378bitset_stats_resize (bitset src, bitset_bindex size)
379{
380 return BITSET_RESIZE_ (src->s.bset, size);
381}
382
383
2d382ea8 384static bitset_bindex
d65ec44e 385bitset_stats_size (bitset src)
613f5e1a
AD
386{
387 return BITSET_SIZE_ (src->s.bset);
388}
389
390
2d382ea8 391static bitset_bindex
d65ec44e 392bitset_stats_count (bitset src)
6aa452a6
AD
393{
394 return BITSET_COUNT_ (src->s.bset);
395}
396
397
d0829076 398static bool
d65ec44e 399bitset_stats_empty_p (bitset dst)
6aa452a6
AD
400{
401 return BITSET_EMPTY_P_ (dst->s.bset);
402}
403
404
405static void
d65ec44e 406bitset_stats_ones (bitset dst)
6aa452a6
AD
407{
408 BITSET_ONES_ (dst->s.bset);
409}
410
411
412static void
d65ec44e 413bitset_stats_zero (bitset dst)
6aa452a6
AD
414{
415 BITSET_ZERO_ (dst->s.bset);
416}
417
418
419static void
d65ec44e 420bitset_stats_copy (bitset dst, bitset src)
6aa452a6
AD
421{
422 BITSET_CHECK2_ (dst, src);
423 BITSET_COPY_ (dst->s.bset, src->s.bset);
424}
425
426
d0829076 427static bool
d65ec44e 428bitset_stats_disjoint_p (bitset dst, bitset src)
613f5e1a 429{
6aa452a6
AD
430 BITSET_CHECK2_ (dst, src);
431 return BITSET_DISJOINT_P_ (dst->s.bset, src->s.bset);
613f5e1a
AD
432}
433
434
d0829076 435static bool
d65ec44e 436bitset_stats_equal_p (bitset dst, bitset src)
613f5e1a
AD
437{
438 BITSET_CHECK2_ (dst, src);
6aa452a6
AD
439 return BITSET_EQUAL_P_ (dst->s.bset, src->s.bset);
440}
441
442
443static void
d65ec44e 444bitset_stats_not (bitset dst, bitset src)
6aa452a6
AD
445{
446 BITSET_CHECK2_ (dst, src);
447 BITSET_NOT_ (dst->s.bset, src->s.bset);
448}
449
450
d0829076 451static bool
d65ec44e 452bitset_stats_subset_p (bitset dst, bitset src)
6aa452a6
AD
453{
454 BITSET_CHECK2_ (dst, src);
455 return BITSET_SUBSET_P_ (dst->s.bset, src->s.bset);
456}
457
458
459static void
d65ec44e 460bitset_stats_and (bitset dst, bitset src1, bitset src2)
6aa452a6
AD
461{
462 BITSET_CHECK3_ (dst, src1, src2);
463 BITSET_AND_ (dst->s.bset, src1->s.bset, src2->s.bset);
464}
465
466
d0829076 467static bool
d65ec44e 468bitset_stats_and_cmp (bitset dst, bitset src1, bitset src2)
6aa452a6
AD
469{
470 BITSET_CHECK3_ (dst, src1, src2);
471 return BITSET_AND_CMP_ (dst->s.bset, src1->s.bset, src2->s.bset);
472}
473
474
475static void
d65ec44e 476bitset_stats_andn (bitset dst, bitset src1, bitset src2)
6aa452a6
AD
477{
478 BITSET_CHECK3_ (dst, src1, src2);
479 BITSET_ANDN_ (dst->s.bset, src1->s.bset, src2->s.bset);
480}
481
482
d0829076 483static bool
d65ec44e 484bitset_stats_andn_cmp (bitset dst, bitset src1, bitset src2)
6aa452a6
AD
485{
486 BITSET_CHECK3_ (dst, src1, src2);
487 return BITSET_ANDN_CMP_ (dst->s.bset, src1->s.bset, src2->s.bset);
488}
489
490
491static void
d65ec44e 492bitset_stats_or (bitset dst, bitset src1, bitset src2)
6aa452a6
AD
493{
494 BITSET_CHECK3_ (dst, src1, src2);
495 BITSET_OR_ (dst->s.bset, src1->s.bset, src2->s.bset);
496}
497
498
d0829076 499static bool
d65ec44e 500bitset_stats_or_cmp (bitset dst, bitset src1, bitset src2)
6aa452a6
AD
501{
502 BITSET_CHECK3_ (dst, src1, src2);
503 return BITSET_OR_CMP_ (dst->s.bset, src1->s.bset, src2->s.bset);
504}
505
506
507static void
d65ec44e 508bitset_stats_xor (bitset dst, bitset src1, bitset src2)
6aa452a6
AD
509{
510 BITSET_CHECK3_ (dst, src1, src2);
511 BITSET_XOR_ (dst->s.bset, src1->s.bset, src2->s.bset);
613f5e1a
AD
512}
513
514
d0829076 515static bool
d65ec44e 516bitset_stats_xor_cmp (bitset dst, bitset src1, bitset src2)
613f5e1a
AD
517{
518 BITSET_CHECK3_ (dst, src1, src2);
6aa452a6
AD
519 return BITSET_XOR_CMP_ (dst->s.bset, src1->s.bset, src2->s.bset);
520}
521
522
523static void
d65ec44e 524bitset_stats_and_or (bitset dst, bitset src1, bitset src2, bitset src3)
6aa452a6
AD
525{
526 BITSET_CHECK4_ (dst, src1, src2, src3);
6aa452a6 527 BITSET_AND_OR_ (dst->s.bset, src1->s.bset, src2->s.bset, src3->s.bset);
613f5e1a
AD
528}
529
530
d0829076 531static bool
d65ec44e 532bitset_stats_and_or_cmp (bitset dst, bitset src1, bitset src2, bitset src3)
613f5e1a
AD
533{
534 BITSET_CHECK4_ (dst, src1, src2, src3);
6aa452a6
AD
535 return BITSET_AND_OR_CMP_ (dst->s.bset, src1->s.bset, src2->s.bset, src3->s.bset);
536}
537
538
539static void
d65ec44e 540bitset_stats_andn_or (bitset dst, bitset src1, bitset src2, bitset src3)
6aa452a6
AD
541{
542 BITSET_CHECK4_ (dst, src1, src2, src3);
6aa452a6
AD
543 BITSET_ANDN_OR_ (dst->s.bset, src1->s.bset, src2->s.bset, src3->s.bset);
544}
545
546
d0829076 547static bool
d65ec44e 548bitset_stats_andn_or_cmp (bitset dst, bitset src1, bitset src2, bitset src3)
6aa452a6
AD
549{
550 BITSET_CHECK4_ (dst, src1, src2, src3);
6aa452a6
AD
551 return BITSET_ANDN_OR_CMP_ (dst->s.bset, src1->s.bset, src2->s.bset, src3->s.bset);
552}
553
554
555static void
d65ec44e 556bitset_stats_or_and (bitset dst, bitset src1, bitset src2, bitset src3)
6aa452a6
AD
557{
558 BITSET_CHECK4_ (dst, src1, src2, src3);
6aa452a6
AD
559 BITSET_OR_AND_ (dst->s.bset, src1->s.bset, src2->s.bset, src3->s.bset);
560}
561
562
d0829076 563static bool
d65ec44e 564bitset_stats_or_and_cmp (bitset dst, bitset src1, bitset src2, bitset src3)
6aa452a6
AD
565{
566 BITSET_CHECK4_ (dst, src1, src2, src3);
6aa452a6 567 return BITSET_OR_AND_CMP_ (dst->s.bset, src1->s.bset, src2->s.bset, src3->s.bset);
613f5e1a
AD
568}
569
570
2d382ea8 571static bitset_bindex
d65ec44e 572bitset_stats_list (bitset bset, bitset_bindex *list,
e9690142 573 bitset_bindex num, bitset_bindex *next)
613f5e1a
AD
574{
575 bitset_bindex count;
576 bitset_bindex tmp;
577 bitset_bindex size;
578 bitset_bindex i;
613f5e1a
AD
579
580 count = BITSET_LIST_ (bset->s.bset, list, num, next);
d65ec44e 581
613f5e1a 582 BITSET_STATS_LISTS_INC (bset->s.bset);
d65ec44e 583
613f5e1a
AD
584 /* Log histogram of number of set bits. */
585 for (i = 0, tmp = count; tmp; tmp >>= 1, i++)
586 continue;
587 if (i >= BITSET_LOG_COUNT_BINS)
588 i = BITSET_LOG_COUNT_BINS - 1;
589 BITSET_STATS_LIST_COUNTS_INC (bset->s.bset, i);
d65ec44e 590
613f5e1a
AD
591 /* Log histogram of number of bits in set. */
592 size = BITSET_SIZE_ (bset->s.bset);
593 for (i = 0, tmp = size; tmp; tmp >>= 1, i++)
594 continue;
595 if (i >= BITSET_LOG_SIZE_BINS)
596 i = BITSET_LOG_SIZE_BINS - 1;
597 BITSET_STATS_LIST_SIZES_INC (bset->s.bset, i);
d65ec44e 598
613f5e1a
AD
599 /* Histogram of fraction of bits set. */
600 i = size ? (count * BITSET_DENSITY_BINS) / size : 0;
601 if (i >= BITSET_DENSITY_BINS)
602 i = BITSET_DENSITY_BINS - 1;
603 BITSET_STATS_LIST_DENSITY_INC (bset->s.bset, i);
604 return count;
605}
606
607
2d382ea8 608static bitset_bindex
d65ec44e 609bitset_stats_list_reverse (bitset bset, bitset_bindex *list,
e9690142 610 bitset_bindex num, bitset_bindex *next)
613f5e1a 611{
6aa452a6 612 return BITSET_LIST_REVERSE_ (bset->s.bset, list, num, next);
613f5e1a
AD
613}
614
615
616static void
d65ec44e 617bitset_stats_free (bitset bset)
613f5e1a
AD
618{
619 BITSET_STATS_FREES_INC (bset->s.bset);
620 BITSET_FREE_ (bset->s.bset);
621}
622
623
6aa452a6 624struct bitset_vtable bitset_stats_vtable = {
613f5e1a
AD
625 bitset_stats_set,
626 bitset_stats_reset,
6aa452a6 627 bitset_stats_toggle,
613f5e1a 628 bitset_stats_test,
eaef5507 629 bitset_stats_resize,
613f5e1a 630 bitset_stats_size,
6aa452a6
AD
631 bitset_stats_count,
632 bitset_stats_empty_p,
633 bitset_stats_ones,
634 bitset_stats_zero,
635 bitset_stats_copy,
636 bitset_stats_disjoint_p,
637 bitset_stats_equal_p,
638 bitset_stats_not,
639 bitset_stats_subset_p,
640 bitset_stats_and,
641 bitset_stats_and_cmp,
642 bitset_stats_andn,
643 bitset_stats_andn_cmp,
644 bitset_stats_or,
645 bitset_stats_or_cmp,
646 bitset_stats_xor,
647 bitset_stats_xor_cmp,
648 bitset_stats_and_or,
649 bitset_stats_and_or_cmp,
650 bitset_stats_andn_or,
651 bitset_stats_andn_or_cmp,
652 bitset_stats_or_and,
653 bitset_stats_or_and_cmp,
613f5e1a 654 bitset_stats_list,
6aa452a6 655 bitset_stats_list_reverse,
613f5e1a
AD
656 bitset_stats_free,
657 BITSET_STATS
658};
659
660
661/* Return enclosed bitset type. */
662enum bitset_type
d65ec44e 663bitset_stats_type_get (bitset bset)
613f5e1a
AD
664{
665 return BITSET_TYPE_ (bset->s.bset);
666}
667
668
2d382ea8
PE
669size_t
670bitset_stats_bytes (void)
613f5e1a 671{
55e728eb 672 return sizeof (struct bitset_stats_struct);
613f5e1a
AD
673}
674
675
676bitset
d65ec44e 677bitset_stats_init (bitset bset, bitset_bindex n_bits, enum bitset_type type)
613f5e1a 678{
2d382ea8 679 size_t bytes;
613f5e1a
AD
680 bitset sbset;
681
6aa452a6 682 bset->b.vtable = &bitset_stats_vtable;
613f5e1a
AD
683
684 /* Disable cache. */
685 bset->b.cindex = 0;
686 bset->b.csize = 0;
687 bset->b.cdata = 0;
688
eaef5507
PE
689 BITSET_NBITS_ (bset) = n_bits;
690
613f5e1a
AD
691 /* Set up the actual bitset implementation that
692 we are a wrapper over. */
693 switch (type)
694 {
68cae94e
PE
695 default:
696 abort ();
697
613f5e1a
AD
698 case BITSET_ARRAY:
699 bytes = abitset_bytes (n_bits);
89519adf 700 sbset = xcalloc (1, bytes);
613f5e1a
AD
701 abitset_init (sbset, n_bits);
702 break;
703
704 case BITSET_LIST:
705 bytes = lbitset_bytes (n_bits);
89519adf 706 sbset = xcalloc (1, bytes);
613f5e1a
AD
707 lbitset_init (sbset, n_bits);
708 break;
709
710 case BITSET_TABLE:
711 bytes = ebitset_bytes (n_bits);
89519adf 712 sbset = xcalloc (1, bytes);
613f5e1a
AD
713 ebitset_init (sbset, n_bits);
714 break;
715
eaef5507
PE
716 case BITSET_VARRAY:
717 bytes = vbitset_bytes (n_bits);
89519adf 718 sbset = xcalloc (1, bytes);
eaef5507
PE
719 vbitset_init (sbset, n_bits);
720 break;
613f5e1a
AD
721 }
722
723 bset->s.bset = sbset;
724
725 BITSET_STATS_ALLOCS_INC (type);
d65ec44e 726
613f5e1a
AD
727 return bset;
728}