X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbelive_t.h;h=ba6dc316d008a42220577e75f55ae24dcf98716e;hb=8974b94349462d835b33ad4f896d1821986458bd;hp=727e9d6842c9e288ffb91fa47f48b21acb13ad6f;hpb=4d5c3365a58cba59993045a9e08e686d8ae079a7;p=libfirm diff --git a/ir/be/belive_t.h b/ir/be/belive_t.h index 727e9d684..ba6dc316d 100644 --- a/ir/be/belive_t.h +++ b/ir/be/belive_t.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -18,32 +18,44 @@ */ /** - * Internal headers for liveness analysis. - * @author Sebastian Hack - * @date 6.12.2004 + * @file + * @brief Internal headers for liveness analysis. + * @author Sebastian Hack + * @date 06.12.2004 + * @version $Id$ */ - -#ifndef _BELIVE_T_H -#define _BELIVE_T_H +#ifndef FIRM_BE_BELIVE_T_H +#define FIRM_BE_BELIVE_T_H #include "irgraph_t.h" -#include "iredges_t.h" #include "irphase_t.h" #include "irhooks.h" +#include "dfs.h" +#include "statev.h" #include "pset.h" -#include "set.h" -#include "list.h" -#include "hashptr.h" #include "bitset.h" #include "belive.h" +#define USE_LIVE_CHK + +#ifdef USE_LIVE_CHK +#include "irlivechk.h" +#endif + +struct be_irg_t; + struct _be_lv_t { ir_phase ph; ir_graph *irg; + dfs_t *dfs; + const struct be_irg_t *birg; bitset_t *nodes; hook_entry_t hook_info; +#ifdef USE_LIVE_CHK + lv_chk_t *lvc; +#endif }; struct _be_lv_info_node_t { @@ -65,8 +77,9 @@ struct _be_lv_info_t { static INLINE int _be_lv_next_irn(const struct _be_lv_t *lv, const ir_node *bl, unsigned flags, int i) { - struct _be_lv_info_t *arr = phase_get_irn_data(&lv->ph, bl); - if(arr) { + struct _be_lv_info_t *arr = phase_get_irn_data(&lv->ph, bl); + + if (arr) { int n_members = (int) arr[0].u.head.n_members; while(i < n_members) { @@ -80,9 +93,9 @@ static INLINE int _be_lv_next_irn(const struct _be_lv_t *lv, const ir_node *bl, return -1; } -static INLINE ir_node * _be_lv_get_irn(const struct _be_lv_t *lv, const ir_node *bl, int i) +static INLINE ir_node *_be_lv_get_irn(const struct _be_lv_t *lv, const ir_node *bl, int i) { - struct _be_lv_info_t *arr = phase_get_irn_data(&lv->ph, bl); + struct _be_lv_info_t *arr = phase_get_irn_data(&lv->ph, bl); return get_idx_irn(lv->irg, arr[i + 1].u.node.idx); } @@ -90,12 +103,23 @@ struct _be_lv_info_node_t *be_lv_get(const struct _be_lv_t *li, const ir_node *b static INLINE int _be_is_live_xxx(const struct _be_lv_t *li, const ir_node *block, const ir_node *irn, unsigned flags) { - struct _be_lv_info_node_t *info = be_lv_get(li, block, irn); - return info ? (info->flags & flags) != 0 : 0; + int res; + + if (li->nodes) { + struct _be_lv_info_node_t *info = be_lv_get(li, block, irn); + res = info ? (info->flags & flags) != 0 : 0; + } + +#ifdef USE_LIVE_CHK + else + res = (lv_chk_bl_xxx(li->lvc, block, irn) & flags) != 0; +#endif /* USE_LIVE_CHK */ + + return res; } #define be_lv_foreach(lv, bl, flags, i) \ - for(i = _be_lv_next_irn(lv, bl, flags, 0); i >= 0; i = _be_lv_next_irn(lv, bl, flags, i + 1)) + for (i = _be_lv_next_irn(lv, bl, flags, 0); i >= 0; i = _be_lv_next_irn(lv, bl, flags, i + 1)) static INLINE pset *_be_lv_pset_put(const struct _be_lv_t *lv, const ir_node *block, int state, pset *s) @@ -117,4 +141,4 @@ static INLINE pset *_be_lv_pset_put(const struct _be_lv_t *lv, const ir_node *bl #define be_lv_has_info_about(lv, irn) bitset_is_set((lv)->nodes, get_irn_idx(irn)) -#endif +#endif /* FIRM_BE_BELIVE_T_H */