]>
git.saurik.com Git - bison.git/blob - lib/bitsetv.c
3 Copyright (C) 2001-2002, 2004-2006, 2009-2013 Free Software
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 /* Create a vector of N_VECS bitsets, each of N_BITS, and of
29 bitsetv_alloc (bitset_bindex n_vecs
, bitset_bindex n_bits
,
30 enum bitset_type type
)
37 /* Determine number of bytes for each set. */
38 bytes
= bitset_bytes (type
, n_bits
);
40 /* If size calculation overflows, memory is exhausted. */
41 if (BITSET_SIZE_MAX
/ (sizeof (bitset
) + bytes
) <= n_vecs
)
44 /* Allocate vector table at head of bitset array. */
45 vector_bytes
= (n_vecs
+ 1) * sizeof (bitset
) + bytes
- 1;
46 vector_bytes
-= vector_bytes
% bytes
;
47 bsetv
= xcalloc (1, vector_bytes
+ bytes
* n_vecs
);
49 for (i
= 0; i
< n_vecs
; i
++)
51 bsetv
[i
] = (bitset
) (void *) ((char *) bsetv
+ vector_bytes
+ i
* bytes
);
53 bitset_init (bsetv
[i
], n_bits
, type
);
56 /* Null terminate table. */
62 /* Create a vector of N_VECS bitsets, each of N_BITS, and with
63 attribute hints specified by ATTR. */
65 bitsetv_create (bitset_bindex n_vecs
, bitset_bindex n_bits
, unsigned int attr
)
67 enum bitset_type type
;
69 type
= bitset_type_choose (n_bits
, attr
);
70 return bitsetv_alloc (n_vecs
, n_bits
, type
);
74 /* Free bitset vector BSETV. */
76 bitsetv_free (bitsetv bsetv
)
80 for (i
= 0; bsetv
[i
]; i
++)
81 BITSET_FREE_ (bsetv
[i
]);
86 /* Zero a vector of bitsets. */
88 bitsetv_zero (bitsetv bsetv
)
92 for (i
= 0; bsetv
[i
]; i
++)
93 bitset_zero (bsetv
[i
]);
97 /* Set a vector of bitsets to ones. */
99 bitsetv_ones (bitsetv bsetv
)
103 for (i
= 0; bsetv
[i
]; i
++)
104 bitset_ones (bsetv
[i
]);
108 /* Given a vector BSETV of N bitsets of size N, modify its contents to
109 be the transitive closure of what was given. */
111 bitsetv_transitive_closure (bitsetv bsetv
)
116 for (i
= 0; bsetv
[i
]; i
++)
117 for (j
= 0; bsetv
[j
]; j
++)
118 if (bitset_test (bsetv
[j
], i
))
119 bitset_or (bsetv
[j
], bsetv
[j
], bsetv
[i
]);
123 /* Given a vector BSETV of N bitsets of size N, modify its contents to
124 be the reflexive transitive closure of what was given. This is
125 the same as transitive closure but with all bits on the diagonal
126 of the bit matrix set. */
128 bitsetv_reflexive_transitive_closure (bitsetv bsetv
)
132 bitsetv_transitive_closure (bsetv
);
133 for (i
= 0; bsetv
[i
]; i
++)
134 bitset_set (bsetv
[i
], i
);
138 /* Dump the contents of a bitset vector BSETV with N_VECS elements to
141 bitsetv_dump (FILE *file
, char const *title
, char const *subtitle
,
146 fprintf (file
, "%s\n", title
);
147 for (i
= 0; bsetv
[i
]; i
++)
149 fprintf (file
, "%s %lu\n", subtitle
, (unsigned long int) i
);
150 bitset_dump (file
, bsetv
[i
]);
153 fprintf (file
, "\n");
158 debug_bitsetv (bitsetv bsetv
)
162 for (i
= 0; bsetv
[i
]; i
++)
164 fprintf (stderr
, "%lu: ", (unsigned long int) i
);
165 debug_bitset (bsetv
[i
]);
168 fprintf (stderr
, "\n");