Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | /*********************************************************** |
Guido van Rossum | b9f8d6e | 1995-01-04 19:08:09 +0000 | [diff] [blame] | 2 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, |
| 3 | The Netherlands. |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 4 | |
| 5 | All Rights Reserved |
| 6 | |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 7 | Permission to use, copy, modify, and distribute this software and its |
| 8 | documentation for any purpose and without fee is hereby granted, |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 9 | provided that the above copyright notice appear in all copies and that |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 10 | both that copyright notice and this permission notice appear in |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 11 | supporting documentation, and that the names of Stichting Mathematisch |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 12 | Centrum or CWI or Corporation for National Research Initiatives or |
| 13 | CNRI not be used in advertising or publicity pertaining to |
| 14 | distribution of the software without specific, written prior |
| 15 | permission. |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 16 | |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 17 | While CWI is the initial source for this software, a modified version |
| 18 | is made available by the Corporation for National Research Initiatives |
| 19 | (CNRI) at the Internet address ftp://ftp.python.org. |
| 20 | |
| 21 | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH |
| 22 | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF |
| 23 | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH |
| 24 | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL |
| 25 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 26 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| 27 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 28 | PERFORMANCE OF THIS SOFTWARE. |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 29 | |
| 30 | ******************************************************************/ |
| 31 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 32 | /* Bitset primitives used by the parser generator */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 33 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 34 | #include "pgenheaders.h" |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 35 | #include "bitset.h" |
| 36 | |
| 37 | bitset |
| 38 | newbitset(nbits) |
| 39 | int nbits; |
| 40 | { |
| 41 | int nbytes = NBYTES(nbits); |
| 42 | bitset ss = NEW(BYTE, nbytes); |
| 43 | |
| 44 | if (ss == NULL) |
| 45 | fatal("no mem for bitset"); |
| 46 | |
| 47 | ss += nbytes; |
| 48 | while (--nbytes >= 0) |
| 49 | *--ss = 0; |
| 50 | return ss; |
| 51 | } |
| 52 | |
| 53 | void |
| 54 | delbitset(ss) |
| 55 | bitset ss; |
| 56 | { |
| 57 | DEL(ss); |
| 58 | } |
| 59 | |
| 60 | int |
| 61 | addbit(ss, ibit) |
| 62 | bitset ss; |
| 63 | int ibit; |
| 64 | { |
| 65 | int ibyte = BIT2BYTE(ibit); |
| 66 | BYTE mask = BIT2MASK(ibit); |
| 67 | |
| 68 | if (ss[ibyte] & mask) |
| 69 | return 0; /* Bit already set */ |
| 70 | ss[ibyte] |= mask; |
| 71 | return 1; |
| 72 | } |
| 73 | |
| 74 | #if 0 /* Now a macro */ |
| 75 | int |
| 76 | testbit(ss, ibit) |
| 77 | bitset ss; |
| 78 | int ibit; |
| 79 | { |
| 80 | return (ss[BIT2BYTE(ibit)] & BIT2MASK(ibit)) != 0; |
| 81 | } |
| 82 | #endif |
| 83 | |
| 84 | int |
| 85 | samebitset(ss1, ss2, nbits) |
| 86 | bitset ss1, ss2; |
| 87 | int nbits; |
| 88 | { |
| 89 | int i; |
| 90 | |
| 91 | for (i = NBYTES(nbits); --i >= 0; ) |
| 92 | if (*ss1++ != *ss2++) |
| 93 | return 0; |
| 94 | return 1; |
| 95 | } |
| 96 | |
| 97 | void |
| 98 | mergebitset(ss1, ss2, nbits) |
| 99 | bitset ss1, ss2; |
| 100 | int nbits; |
| 101 | { |
| 102 | int i; |
| 103 | |
| 104 | for (i = NBYTES(nbits); --i >= 0; ) |
| 105 | *ss1++ |= *ss2++; |
| 106 | } |