X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbelive.h;h=1a3b4ac5d49f35fd1c11e5b01529dcc3e5f6d067;hb=75bdba692afeb0617e59ddc2ea08e0662c356e03;hp=ab07214ba29427f9558b143c44753208e502407c;hpb=4d5c3365a58cba59993045a9e08e686d8ae079a7;p=libfirm diff --git a/ir/be/belive.h b/ir/be/belive.h index ab07214ba..1a3b4ac5d 100644 --- a/ir/be/belive.h +++ b/ir/be/belive.h @@ -18,19 +18,23 @@ */ /** - * Interblock liveness analysis. - * @author Sebastian Hack - * @date 6.12.2004 - * @cvs-id $Id$ + * @file + * @brief Interblock liveness analysis. + * @author Sebastian Hack + * @date 06.12.2004 + * @version $Id$ */ -#ifndef FIRM_BELIVE_H -#define FIRM_BELIVE_H +#ifndef FIRM_BE_BELIVE_H +#define FIRM_BE_BELIVE_H + +#include #include "firm_types.h" #include "pset.h" -#include "bearch.h" -#include +#include "irlivechk.h" +#include "bearch.h" +#include "irnodeset.h" typedef enum { be_lv_state_in = 1, @@ -42,7 +46,6 @@ typedef struct _be_lv_t be_lv_t; typedef struct _be_lv_info_t be_lv_info_t; - /** * Compute the inter block liveness for a graph. * @param irg The graph. @@ -151,6 +154,8 @@ int be_check_dominance(ir_graph *irg); */ pset *be_liveness_transfer(const arch_env_t *arch_env, const arch_register_class_t *cls, ir_node *irn, pset *live); +void be_liveness_transfer_ir_nodeset(const arch_env_t *arch_env, const arch_register_class_t *cls, ir_node *node, ir_nodeset_t *nodeset); + /** * Put all node live at the end of a block into a set. * @param arch_env The architecture environment. @@ -161,6 +166,8 @@ pset *be_liveness_transfer(const arch_env_t *arch_env, const arch_register_class */ pset *be_liveness_end_of_block(const be_lv_t *lv, const arch_env_t *arch_env, const arch_register_class_t *cls, const ir_node *bl, pset *live); +void be_liveness_end_of_block_ir_nodeset(const be_lv_t *lv, const arch_env_t *arch_env, const arch_register_class_t *cls, const ir_node *bl, ir_nodeset_t *nodeset); + /** * Compute a set of nodes which are live at another node. * BEWARE: This is the liveness immediately after the node, @@ -186,9 +193,4 @@ pset *be_liveness_nodes_live_at(const be_lv_t *lv, const arch_env_t *arch_env, c pset *be_liveness_nodes_live_at_input(const be_lv_t *lv, const arch_env_t *arch_env, const arch_register_class_t *cls, const ir_node *pos, pset *live); -/** - * FIXME: Need comment - */ -void be_liveness_add_missing(be_lv_t *lv); - -#endif /* _BELIVE_H */ +#endif /* FIRM_BE_BELIVE_H */