Fixed initialization of option tables
[libfirm] / ir / be / belive.h
index 5ec205e..1021f3c 100644 (file)
 
 #include <stdio.h>
 
+#include "firm_types.h"
 #include "pset.h"
-#include "irnode.h"
-#include "irgraph.h"
 
+#include "irlivechk.h"
 #include "bearch.h"
+#include "irnodeset.h"
 
 typedef enum {
        be_lv_state_in  = 1,
@@ -153,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.
@@ -163,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,
@@ -187,4 +192,25 @@ 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);
 
+/**
+ * Make sure the live sets are computed.
+ * @param lv The liveness infirmation.
+ */
+void be_liveness_assure_sets(be_lv_t *lv);
+
+/**
+ * Make sure all information needed for liveness checks is available.
+ * @param lv The liveness information.
+ */
+void be_liveness_assure_chk(be_lv_t *lv);
+
+/**
+ * Invalidate the liveness information.
+ * You must call this if you modify the program and do not
+ * update the liveness with the be_liveness_{update,remove,introduce}
+ * functions.
+ * @param lv The liveness info.
+ */
+void be_liveness_invalidate(be_lv_t *lv);
+
 #endif /* FIRM_BE_BELIVE_H */