removed unused header
[libfirm] / ir / st / bs.h
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief      Provides a simple bit set.
23  * @author     Florian Liekweg
24  * @date       4.3.2002
25  * @version    $Id$
26  * @note       Not quite complete
27  */
28 #ifndef FIRM_ST_BS_H
29 #define FIRM_ST_BS_H
30
31 /**
32  * the type of a bit set
33  */
34 typedef long int bs_t;
35
36 /** set bit in a bit set */
37 # define bs_set(bs, i) (bs) |= (0x00000001 << i)
38
39 /** get bit in a bit set */
40 # define bs_get(bs, i) (bs) &  (0x00000001 << i)
41
42 /** logical AND of two bit sets */
43 # define bs_and(bsa, bsb) (bsa) &= (bsb)
44
45 /** logical OR of two bit sets */
46 # define bs_or(bsa, bsb)  (bsa) |= (bsb)
47
48 /** logical XOR of two bit sets */
49 # define bs_xor(bsa, bsb) (bsa) ^= (bsb)
50
51 /** returns TRUE if at least one bit is set */
52 # define bs_zro(bs) (0x00000000 != bs)
53
54 #endif