cpython/Parser/bitset.c

67 lines
1.0 KiB
C
Raw Normal View History

1991-02-19 08:39:46 -04:00
1990-12-20 11:06:42 -04:00
/* Bitset primitives used by the parser generator */
1990-10-14 09:07:46 -03:00
1990-12-20 11:06:42 -04:00
#include "pgenheaders.h"
1990-10-14 09:07:46 -03:00
#include "bitset.h"
bitset
newbitset(int nbits)
1990-10-14 09:07:46 -03:00
{
int nbytes = NBYTES(nbits);
bitset ss = (char *)PyObject_MALLOC(sizeof(BYTE) * nbytes);
if (ss == NULL)
Py_FatalError("no mem for bitset");
ss += nbytes;
while (--nbytes >= 0)
*--ss = 0;
return ss;
1990-10-14 09:07:46 -03:00
}
void
delbitset(bitset ss)
1990-10-14 09:07:46 -03:00
{
PyObject_FREE(ss);
1990-10-14 09:07:46 -03:00
}
int
addbit(bitset ss, int ibit)
1990-10-14 09:07:46 -03:00
{
int ibyte = BIT2BYTE(ibit);
BYTE mask = BIT2MASK(ibit);
if (ss[ibyte] & mask)
return 0; /* Bit already set */
ss[ibyte] |= mask;
return 1;
1990-10-14 09:07:46 -03:00
}
#if 0 /* Now a macro */
int
testbit(bitset ss, int ibit)
1990-10-14 09:07:46 -03:00
{
return (ss[BIT2BYTE(ibit)] & BIT2MASK(ibit)) != 0;
1990-10-14 09:07:46 -03:00
}
#endif
int
samebitset(bitset ss1, bitset ss2, int nbits)
1990-10-14 09:07:46 -03:00
{
int i;
for (i = NBYTES(nbits); --i >= 0; )
if (*ss1++ != *ss2++)
return 0;
return 1;
1990-10-14 09:07:46 -03:00
}
void
mergebitset(bitset ss1, bitset ss2, int nbits)
1990-10-14 09:07:46 -03:00
{
int i;
for (i = NBYTES(nbits); --i >= 0; )
*ss1++ |= *ss2++;
1990-10-14 09:07:46 -03:00
}