]>
git.saurik.com Git - bison.git/blob - lib/bitsetv.c
2 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
29 /* Create a vector of N_VECS bitsets, each of N_BITS, and of
32 bitsetv_alloc (n_vecs
, n_bits
, type
)
35 enum_bitset_type type
;
42 /* Determine number of bytes for each set. */
43 bytes
= bitset_bytes (type
, n_bits
);
45 /* If size calculation overflows, memory is exhausted. */
46 if (BITSET_SIZE_MAX
/ (sizeof (bitset
) + bytes
) <= n_vecs
)
49 /* Allocate vector table at head of bitset array. */
50 vector_bytes
= (n_vecs
+ 1) * sizeof (bitset
) + bytes
- 1;
51 vector_bytes
-= vector_bytes
% bytes
;
52 bsetv
= (bitset
*) xcalloc (1, vector_bytes
+ bytes
* n_vecs
);
54 for (i
= 0; i
< n_vecs
; i
++)
56 bsetv
[i
] = (bitset
) (void *) ((char *) bsetv
+ vector_bytes
+ i
* bytes
);
58 bitset_init (bsetv
[i
], n_bits
, type
);
61 /* Null terminate table. */
67 /* Create a vector of N_VECS bitsets, each of N_BITS, and with
68 attribute hints specified by ATTR. */
70 bitsetv_create (n_vecs
, n_bits
, attr
)
75 enum bitset_type type
;
77 type
= bitset_type_choose (n_bits
, attr
);
78 return bitsetv_alloc (n_vecs
, n_bits
, type
);
82 /* Free bitset vector BSETV. */
89 for (i
= 0; bsetv
[i
]; i
++)
90 BITSET_FREE_ (bsetv
[i
]);
95 /* Zero a vector of bitsets. */
102 for (i
= 0; bsetv
[i
]; i
++)
103 bitset_zero (bsetv
[i
]);
107 /* Set a vector of bitsets to ones. */
114 for (i
= 0; bsetv
[i
]; i
++)
115 bitset_ones (bsetv
[i
]);
119 /* Given a vector BSETV of N bitsets of size N, modify its contents to
120 be the transitive closure of what was given. */
122 bitsetv_transitive_closure (bsetv
)
128 for (i
= 0; bsetv
[i
]; i
++)
129 for (j
= 0; bsetv
[j
]; j
++)
130 if (bitset_test (bsetv
[j
], i
))
131 bitset_or (bsetv
[j
], bsetv
[j
], bsetv
[i
]);
135 /* Given a vector BSETV of N bitsets of size N, modify its contents to
136 be the reflexive transitive closure of what was given. This is
137 the same as transitive closure but with all bits on the diagonal
138 of the bit matrix set. */
140 bitsetv_reflexive_transitive_closure (bitsetv bsetv
)
144 bitsetv_transitive_closure (bsetv
);
145 for (i
= 0; bsetv
[i
]; i
++)
146 bitset_set (bsetv
[i
], i
);
150 /* Dump the contents of a bitset vector BSETV with N_VECS elements to
153 bitsetv_dump (file
, title
, subtitle
, bsetv
)
155 const char *title
, *subtitle
;
160 fprintf (file
, "%s\n", title
);
161 for (i
= 0; bsetv
[i
]; i
++)
163 fprintf (file
, "%s %lu\n", subtitle
, (unsigned long) i
);
164 bitset_dump (file
, bsetv
[i
]);
167 fprintf (file
, "\n");
172 debug_bitsetv (bsetv
)
177 for (i
= 0; bsetv
[i
]; i
++)
179 fprintf (stderr
, "%lu: ", (unsigned long) i
);
180 debug_bitset (bsetv
[i
]);
183 fprintf (stderr
, "\n");