X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firbitset.h;h=28884ac3800776d3d8d9d0c067d67082d5c78498;hb=202b43933e0cc0b71cc7fbe2b092b94efb7fd30e;hp=eb232ab0a03221effe615019070e9522776fed8b;hpb=f07639ae20bea9b49c375dc3567529fd9f14d5fa;p=libfirm diff --git a/ir/ir/irbitset.h b/ir/ir/irbitset.h index eb232ab0a..28884ac38 100644 --- a/ir/ir/irbitset.h +++ b/ir/ir/irbitset.h @@ -1,23 +1,44 @@ -/** - * Some convenience macros for node bitmaps. - * @author Sebastian Hack - * @date 10.05.2006 +/* + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * This file may be distributed and/or modified under the terms of the + * GNU General Public License version 2 as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL included in the + * packaging of this file. + * + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. + * + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -#ifndef __FIRM_IRBITSET_H -#define __FIRM_IRBITSET_H +/** + * @file + * @brief Some convenience macros for node bitmaps. + * @author Sebastian Hack + * @date 10.05.2006 + * @version $Id$ + */ +#ifndef FIRM_IR_IRBITSET_H +#define FIRM_IR_IRBITSET_H #include "bitset.h" #define bitset_irg_malloc(irg) bitset_malloc(get_irg_last_idx(irg)) -#define bitset_irg_obstack_alloc(obst, irg) bitset_obstac_alloc(obst, get_irg_last_idx(irg)) +#define bitset_irg_alloca(irg) bitset_alloca(get_irg_last_idx(irg)) +#define bitset_irg_obstack_alloc(obst, irg) bitset_obstack_alloc(obst, get_irg_last_idx(irg)) #define bitset_add_irn(bs, irn) bitset_set((bs), get_irn_idx(irn)) #define bitset_remv_irn(bs, irn) bitset_clear((bs), get_irn_idx(irn)) #define bitset_contains_irn(bs, irn) bitset_is_set((bs), get_irn_idx(irn)) /* Internal use. */ -#define _bsfe_get_irn(irg, elm) (elm == -1 ? NULL : get_idx_irn((irg), (unsigned) elm)) +#define _bsfe_get_irn(irg, elm) (elm == (bitset_pos_t) -1 ? NULL : get_idx_irn((irg), (unsigned) elm)) /** * Iterate over a bitset containing node indexes. @@ -27,7 +48,7 @@ * @param irn An ir_node * which is set to the current node. */ #define bitset_foreach_irn(irg, bs, elm, irn) \ - for(elm = bitset_next_set(bs, 0), irn = _bsfe_get_irn(irg, elm); elm != -1; elm = bitset_next_set(bs, elm + 1), irn = _bsfe_get_irn(irg, elm)) + for(elm = bitset_next_set(bs, 0), irn = _bsfe_get_irn(irg, elm); elm != (bitset_pos_t) -1; elm = bitset_next_set(bs, elm + 1), irn = _bsfe_get_irn(irg, elm)) -#endif /* __FIRM_IRBITSET_H */ +#endif